diff --git a/corpus/expr/subexpr.nu b/corpus/expr/subexpr.nu index 65be43a..2e7b94c 100644 --- a/corpus/expr/subexpr.nu +++ b/corpus/expr/subexpr.nu @@ -222,3 +222,110 @@ subexpr-009-closure (identifier)) (val_variable (identifier))))))))))))) + +===== +subexpr-010-newline-before-else +===== + +( +if $cond { echo 'foo' } +else { echo 'bar' } +) + +----- + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (ctrl_if + (val_variable + (identifier)) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string))))) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string)))))))))))) + +===== +subexpr-011-newline-before-else-if +===== + +( +if $cond { echo 'foo' } +else if $cond2 { echo 'bar' } +else { echo 'foo bar' } +) + +----- + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (ctrl_if + (val_variable + (identifier)) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string))))) + (ctrl_if + (val_variable + (identifier)) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string))))) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string))))))))))))) + +===== +subexpr-012-newline-before-catch +===== + +( +try { echo 'foo' } +catch { echo 'bar' } +) + +----- + +(nu_script + (pipeline + (pipe_element + (expr_parenthesized + (pipeline + (pipe_element + (ctrl_try + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string))))) + (block + (pipeline + (pipe_element + (command + (cmd_identifier) + (val_string)))))))))))) diff --git a/grammar.js b/grammar.js index 6d7fde1..f3ca569 100644 --- a/grammar.js +++ b/grammar.js @@ -17,6 +17,8 @@ module.exports = grammar({ [$.pipe_element_parenthesized, $.pipe_element_parenthesized_last], [$.command], [$.block, $.val_record], + [$.ctrl_if_parenthesized], + [$.ctrl_try_parenthesized], ], rules: { @@ -253,6 +255,17 @@ module.exports = grammar({ $.ctrl_return, ), + _ctrl_expression_parenthesized: ($) => + choice( + field("ctrl_break", KEYWORD().break), + field("ctrl_continue", KEYWORD().continue), + $.ctrl_do, + alias($.ctrl_if_parenthesized, $.ctrl_if), + alias($.ctrl_try_parenthesized, $.ctrl_try), + $.ctrl_match, + $.ctrl_return, + ), + // Standalone Controls ctrl_for: ($) => @@ -327,6 +340,23 @@ module.exports = grammar({ ), ), + ctrl_if_parenthesized: ($) => + seq( + KEYWORD().if, + field("condition", choice($._expression, $.identifier)), + field("then_branch", $.block), + optional( + seq( + optional("\n"), + KEYWORD().else, + choice( + field("else_block", $.block), + field("else_branch", alias($.ctrl_if_parenthesized, $.ctrl_if)), + ), + ), + ), + ), + ctrl_match: ($) => seq( KEYWORD().match, @@ -388,6 +418,19 @@ module.exports = grammar({ optional(seq(KEYWORD().catch, field("catch_branch", $._blosure))), ), + ctrl_try_parenthesized: ($) => + seq( + KEYWORD().try, + field("try_branch", $.block), + optional( + seq( + optional("\n"), + KEYWORD().catch, + field("catch_branch", $._blosure), + ), + ), + ), + ctrl_return: ($) => choice( prec( @@ -425,7 +468,7 @@ module.exports = grammar({ seq( choice( prec.right(69, $._expression), - $._ctrl_expression, + $._ctrl_expression_parenthesized, $.where_command, alias($._command_parenthesized_body, $.command), ), @@ -440,7 +483,7 @@ module.exports = grammar({ pipe_element_parenthesized_last: ($) => choice( $._expression, - $._ctrl_expression, + $._ctrl_expression_parenthesized, $.where_command, alias($._command_parenthesized_body, $.command), ), diff --git a/src/grammar.json b/src/grammar.json index cd7c7d1..55b7e52 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2470,6 +2470,57 @@ } ] }, + "_ctrl_expression_parenthesized": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "ctrl_break", + "content": { + "type": "STRING", + "value": "break" + } + }, + { + "type": "FIELD", + "name": "ctrl_continue", + "content": { + "type": "STRING", + "value": "continue" + } + }, + { + "type": "SYMBOL", + "name": "ctrl_do" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ctrl_if_parenthesized" + }, + "named": true, + "value": "ctrl_if" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ctrl_try_parenthesized" + }, + "named": true, + "value": "ctrl_try" + }, + { + "type": "SYMBOL", + "name": "ctrl_match" + }, + { + "type": "SYMBOL", + "name": "ctrl_return" + } + ] + }, "ctrl_for": { "type": "SEQ", "members": [ @@ -2884,6 +2935,95 @@ } ] }, + "ctrl_if_parenthesized": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + }, + { + "type": "FIELD", + "name": "then_branch", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\n" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "else_block", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "FIELD", + "name": "else_branch", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "ctrl_if_parenthesized" + }, + "named": true, + "value": "ctrl_if" + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, "ctrl_match": { "type": "SEQ", "members": [ @@ -3200,6 +3340,60 @@ } ] }, + "ctrl_try_parenthesized": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "FIELD", + "name": "try_branch", + "content": { + "type": "SYMBOL", + "name": "block" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\n" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "catch" + }, + { + "type": "FIELD", + "name": "catch_branch", + "content": { + "type": "SYMBOL", + "name": "_blosure" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, "ctrl_return": { "type": "CHOICE", "members": [ @@ -3329,7 +3523,7 @@ }, { "type": "SYMBOL", - "name": "_ctrl_expression" + "name": "_ctrl_expression_parenthesized" }, { "type": "SYMBOL", @@ -3414,7 +3608,7 @@ }, { "type": "SYMBOL", - "name": "_ctrl_expression" + "name": "_ctrl_expression_parenthesized" }, { "type": "SYMBOL", @@ -8118,6 +8312,12 @@ [ "block", "val_record" + ], + [ + "ctrl_if_parenthesized" + ], + [ + "ctrl_try_parenthesized" ] ], "precedences": [], diff --git a/src/parser.c b/src/parser.c index 4811555..7b37760 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3608 +#define STATE_COUNT 3629 #define LARGE_STATE_COUNT 731 -#define SYMBOL_COUNT 434 +#define SYMBOL_COUNT 437 #define ALIAS_COUNT 0 #define TOKEN_COUNT 269 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 68 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 167 +#define PRODUCTION_ID_COUNT 170 enum { sym_identifier = 1, @@ -362,102 +362,105 @@ enum { sym_param_short_flag = 335, sym__ctrl_statement = 336, sym__ctrl_expression = 337, - sym_ctrl_for = 338, - sym_ctrl_loop = 339, - sym_ctrl_error = 340, - sym_ctrl_while = 341, - sym_ctrl_do = 342, - sym_ctrl_if = 343, - sym_ctrl_match = 344, - sym_match_arm = 345, - sym_default_arm = 346, - sym__match_expression = 347, - sym_match_pattern = 348, - sym__match_or_pattern = 349, - sym_match_guard = 350, - sym__match_list_destructure_pattern = 351, - sym_ctrl_try = 352, - sym_ctrl_return = 353, - sym_pipe_element = 354, - sym_pipe_element_parenthesized = 355, - sym_pipe_element_last = 356, - sym_pipe_element_parenthesized_last = 357, - sym_stmt_source = 358, - sym_stmt_register = 359, - sym__stmt_hide = 360, - sym_hide_mod = 361, - sym_hide_env = 362, - sym__stmt_overlay = 363, - sym_overlay_list = 364, - sym_overlay_hide = 365, - sym_overlay_new = 366, - sym_overlay_use = 367, - sym_scope_pattern = 368, - sym_wild_card = 369, - sym_command_list = 370, - sym_assignment = 371, - sym_block = 372, - sym__blosure = 373, - sym_where_command = 374, - sym__where_predicate = 375, - sym__expression = 376, - sym_expr_unary = 377, - sym_expr_binary = 378, - sym_expr_parenthesized = 379, - sym__parenthesized_body = 380, - sym_val_range = 381, - sym__value = 382, - sym_val_bool = 383, - sym_val_variable = 384, - sym__var = 385, - sym_val_number = 386, - sym_val_duration = 387, - sym_val_filesize = 388, - sym_val_binary = 389, - sym_val_string = 390, - sym__str_double_quotes = 391, - sym_val_interpolated = 392, - sym__inter_single_quotes = 393, - sym__inter_double_quotes = 394, - sym_expr_interpolated = 395, - sym_val_list = 396, - sym_val_record = 397, - sym_record_entry = 398, - sym_val_table = 399, - sym_val_closure = 400, - sym_cell_path = 401, - sym_path = 402, - sym_command = 403, - sym__command_parenthesized_body = 404, - sym__cmd_arg = 405, - sym_redirection = 406, - sym__flag = 407, - sym_long_flag = 408, - sym_unquoted = 409, - sym_comment = 410, - aux_sym_pipeline_repeat1 = 411, - aux_sym_pipeline_parenthesized_repeat1 = 412, - aux_sym__block_body_repeat1 = 413, - aux_sym__block_body_repeat2 = 414, - aux_sym__multiple_types_repeat1 = 415, - aux_sym_parameter_parens_repeat1 = 416, - aux_sym_collection_type_repeat1 = 417, - aux_sym_ctrl_match_repeat1 = 418, - aux_sym__match_or_pattern_repeat1 = 419, - aux_sym_pipe_element_repeat1 = 420, - aux_sym_overlay_use_repeat1 = 421, - aux_sym_command_list_repeat1 = 422, - aux_sym__parenthesized_body_repeat1 = 423, - aux_sym_val_binary_repeat1 = 424, - aux_sym__str_double_quotes_repeat1 = 425, - aux_sym__inter_single_quotes_repeat1 = 426, - aux_sym__inter_double_quotes_repeat1 = 427, - aux_sym_val_list_repeat1 = 428, - aux_sym_val_record_repeat1 = 429, - aux_sym_val_table_repeat1 = 430, - aux_sym_cell_path_repeat1 = 431, - aux_sym_command_repeat1 = 432, - aux_sym__command_parenthesized_body_repeat1 = 433, + sym__ctrl_expression_parenthesized = 338, + sym_ctrl_for = 339, + sym_ctrl_loop = 340, + sym_ctrl_error = 341, + sym_ctrl_while = 342, + sym_ctrl_do = 343, + sym_ctrl_if = 344, + sym_ctrl_if_parenthesized = 345, + sym_ctrl_match = 346, + sym_match_arm = 347, + sym_default_arm = 348, + sym__match_expression = 349, + sym_match_pattern = 350, + sym__match_or_pattern = 351, + sym_match_guard = 352, + sym__match_list_destructure_pattern = 353, + sym_ctrl_try = 354, + sym_ctrl_try_parenthesized = 355, + sym_ctrl_return = 356, + sym_pipe_element = 357, + sym_pipe_element_parenthesized = 358, + sym_pipe_element_last = 359, + sym_pipe_element_parenthesized_last = 360, + sym_stmt_source = 361, + sym_stmt_register = 362, + sym__stmt_hide = 363, + sym_hide_mod = 364, + sym_hide_env = 365, + sym__stmt_overlay = 366, + sym_overlay_list = 367, + sym_overlay_hide = 368, + sym_overlay_new = 369, + sym_overlay_use = 370, + sym_scope_pattern = 371, + sym_wild_card = 372, + sym_command_list = 373, + sym_assignment = 374, + sym_block = 375, + sym__blosure = 376, + sym_where_command = 377, + sym__where_predicate = 378, + sym__expression = 379, + sym_expr_unary = 380, + sym_expr_binary = 381, + sym_expr_parenthesized = 382, + sym__parenthesized_body = 383, + sym_val_range = 384, + sym__value = 385, + sym_val_bool = 386, + sym_val_variable = 387, + sym__var = 388, + sym_val_number = 389, + sym_val_duration = 390, + sym_val_filesize = 391, + sym_val_binary = 392, + sym_val_string = 393, + sym__str_double_quotes = 394, + sym_val_interpolated = 395, + sym__inter_single_quotes = 396, + sym__inter_double_quotes = 397, + sym_expr_interpolated = 398, + sym_val_list = 399, + sym_val_record = 400, + sym_record_entry = 401, + sym_val_table = 402, + sym_val_closure = 403, + sym_cell_path = 404, + sym_path = 405, + sym_command = 406, + sym__command_parenthesized_body = 407, + sym__cmd_arg = 408, + sym_redirection = 409, + sym__flag = 410, + sym_long_flag = 411, + sym_unquoted = 412, + sym_comment = 413, + aux_sym_pipeline_repeat1 = 414, + aux_sym_pipeline_parenthesized_repeat1 = 415, + aux_sym__block_body_repeat1 = 416, + aux_sym__block_body_repeat2 = 417, + aux_sym__multiple_types_repeat1 = 418, + aux_sym_parameter_parens_repeat1 = 419, + aux_sym_collection_type_repeat1 = 420, + aux_sym_ctrl_match_repeat1 = 421, + aux_sym__match_or_pattern_repeat1 = 422, + aux_sym_pipe_element_repeat1 = 423, + aux_sym_overlay_use_repeat1 = 424, + aux_sym_command_list_repeat1 = 425, + aux_sym__parenthesized_body_repeat1 = 426, + aux_sym_val_binary_repeat1 = 427, + aux_sym__str_double_quotes_repeat1 = 428, + aux_sym__inter_single_quotes_repeat1 = 429, + aux_sym__inter_double_quotes_repeat1 = 430, + aux_sym_val_list_repeat1 = 431, + aux_sym_val_record_repeat1 = 432, + aux_sym_val_table_repeat1 = 433, + aux_sym_cell_path_repeat1 = 434, + aux_sym_command_repeat1 = 435, + aux_sym__command_parenthesized_body_repeat1 = 436, }; static const char * const ts_symbol_names[] = { @@ -799,12 +802,14 @@ static const char * const ts_symbol_names[] = { [sym_param_short_flag] = "param_short_flag", [sym__ctrl_statement] = "_ctrl_statement", [sym__ctrl_expression] = "_ctrl_expression", + [sym__ctrl_expression_parenthesized] = "_ctrl_expression_parenthesized", [sym_ctrl_for] = "ctrl_for", [sym_ctrl_loop] = "ctrl_loop", [sym_ctrl_error] = "ctrl_error", [sym_ctrl_while] = "ctrl_while", [sym_ctrl_do] = "ctrl_do", [sym_ctrl_if] = "ctrl_if", + [sym_ctrl_if_parenthesized] = "ctrl_if", [sym_ctrl_match] = "ctrl_match", [sym_match_arm] = "match_arm", [sym_default_arm] = "default_arm", @@ -814,6 +819,7 @@ static const char * const ts_symbol_names[] = { [sym_match_guard] = "match_guard", [sym__match_list_destructure_pattern] = "_match_list_destructure_pattern", [sym_ctrl_try] = "ctrl_try", + [sym_ctrl_try_parenthesized] = "ctrl_try", [sym_ctrl_return] = "ctrl_return", [sym_pipe_element] = "pipe_element", [sym_pipe_element_parenthesized] = "pipe_element", @@ -1236,12 +1242,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_param_short_flag] = sym_param_short_flag, [sym__ctrl_statement] = sym__ctrl_statement, [sym__ctrl_expression] = sym__ctrl_expression, + [sym__ctrl_expression_parenthesized] = sym__ctrl_expression_parenthesized, [sym_ctrl_for] = sym_ctrl_for, [sym_ctrl_loop] = sym_ctrl_loop, [sym_ctrl_error] = sym_ctrl_error, [sym_ctrl_while] = sym_ctrl_while, [sym_ctrl_do] = sym_ctrl_do, [sym_ctrl_if] = sym_ctrl_if, + [sym_ctrl_if_parenthesized] = sym_ctrl_if, [sym_ctrl_match] = sym_ctrl_match, [sym_match_arm] = sym_match_arm, [sym_default_arm] = sym_default_arm, @@ -1251,6 +1259,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_match_guard] = sym_match_guard, [sym__match_list_destructure_pattern] = sym__match_list_destructure_pattern, [sym_ctrl_try] = sym_ctrl_try, + [sym_ctrl_try_parenthesized] = sym_ctrl_try, [sym_ctrl_return] = sym_ctrl_return, [sym_pipe_element] = sym_pipe_element, [sym_pipe_element_parenthesized] = sym_pipe_element, @@ -2687,6 +2696,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__ctrl_expression_parenthesized] = { + .visible = false, + .named = true, + }, [sym_ctrl_for] = { .visible = true, .named = true, @@ -2711,6 +2724,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_ctrl_if_parenthesized] = { + .visible = true, + .named = true, + }, [sym_ctrl_match] = { .visible = true, .named = true, @@ -2747,6 +2764,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_ctrl_try_parenthesized] = { + .visible = true, + .named = true, + }, [sym_ctrl_return] = { .visible = true, .named = true, @@ -3355,33 +3376,36 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [137] = {.index = 283, .length = 1}, [138] = {.index = 284, .length = 3}, [139] = {.index = 287, .length = 1}, - [140] = {.index = 288, .length = 5}, - [141] = {.index = 293, .length = 5}, - [142] = {.index = 298, .length = 5}, - [143] = {.index = 303, .length = 2}, + [140] = {.index = 288, .length = 2}, + [141] = {.index = 290, .length = 5}, + [142] = {.index = 295, .length = 5}, + [143] = {.index = 300, .length = 5}, [144] = {.index = 305, .length = 2}, - [145] = {.index = 307, .length = 4}, - [146] = {.index = 311, .length = 4}, - [147] = {.index = 315, .length = 8}, - [148] = {.index = 323, .length = 5}, - [149] = {.index = 315, .length = 8}, - [150] = {.index = 323, .length = 5}, - [151] = {.index = 328, .length = 1}, - [152] = {.index = 329, .length = 2}, - [153] = {.index = 331, .length = 1}, - [154] = {.index = 332, .length = 2}, + [145] = {.index = 307, .length = 2}, + [146] = {.index = 309, .length = 4}, + [147] = {.index = 313, .length = 4}, + [148] = {.index = 317, .length = 8}, + [149] = {.index = 325, .length = 5}, + [150] = {.index = 317, .length = 8}, + [151] = {.index = 325, .length = 5}, + [152] = {.index = 330, .length = 1}, + [153] = {.index = 331, .length = 2}, + [154] = {.index = 333, .length = 1}, [155] = {.index = 334, .length = 2}, - [156] = {.index = 336, .length = 5}, - [157] = {.index = 341, .length = 5}, - [158] = {.index = 346, .length = 5}, - [159] = {.index = 351, .length = 5}, - [160] = {.index = 356, .length = 4}, - [161] = {.index = 360, .length = 5}, - [162] = {.index = 365, .length = 5}, - [163] = {.index = 370, .length = 5}, - [164] = {.index = 375, .length = 5}, - [165] = {.index = 380, .length = 6}, - [166] = {.index = 386, .length = 6}, + [156] = {.index = 336, .length = 2}, + [157] = {.index = 338, .length = 3}, + [158] = {.index = 341, .length = 3}, + [159] = {.index = 344, .length = 5}, + [160] = {.index = 349, .length = 5}, + [161] = {.index = 354, .length = 5}, + [162] = {.index = 359, .length = 5}, + [163] = {.index = 364, .length = 4}, + [164] = {.index = 368, .length = 5}, + [165] = {.index = 373, .length = 5}, + [166] = {.index = 378, .length = 5}, + [167] = {.index = 383, .length = 5}, + [168] = {.index = 388, .length = 6}, + [169] = {.index = 394, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3796,40 +3820,43 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [287] = {field_type, 0, .inherited = true}, [288] = + {field_catch_branch, 4}, + {field_try_branch, 1}, + [290] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 3}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [293] = + [295] = {field_body, 5}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [298] = + [300] = {field_body, 5}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [303] = + [305] = {field_default_pattern, 0}, {field_expression, 2}, - [305] = + [307] = {field_expression, 2}, {field_pattern, 0}, - [307] = + [309] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [311] = + [313] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [315] = + [317] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, @@ -3838,86 +3865,94 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_opr, 4, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [323] = + [325] = {field_lhs, 0}, {field_lhs, 1}, {field_lhs, 2}, {field_opr, 3}, {field_rhs, 4}, - [328] = + [330] = {field_key, 2, .inherited = true}, - [329] = + [331] = {field_key, 0, .inherited = true}, {field_key, 1, .inherited = true}, - [331] = + [333] = {field_inner, 2}, - [332] = + [334] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [334] = + [336] = {field_type, 0, .inherited = true}, {field_type, 2, .inherited = true}, - [336] = + [338] = + {field_condition, 1}, + {field_else_branch, 5}, + {field_then_branch, 2}, + [341] = + {field_condition, 1}, + {field_else_block, 5}, + {field_then_branch, 2}, + [344] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 4}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [341] = + [349] = {field_body, 6}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [346] = + [354] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 4}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [351] = + [359] = {field_body, 6}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [356] = + [364] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [360] = + [368] = {field_body, 7}, {field_dollar_name, 1, .inherited = true}, {field_iterable, 5}, {field_looping_var, 1}, {field_var_name, 1, .inherited = true}, - [365] = + [373] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 5}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [370] = + [378] = {field_body, 7}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [375] = + [383] = {field_body, 8}, {field_dollar_name, 2, .inherited = true}, {field_iterable, 6}, {field_looping_var, 2}, {field_var_name, 2, .inherited = true}, - [380] = + [388] = {field_head, 1}, {field_head, 2}, {field_tail, 3}, {field_tail, 4}, {field_tail, 5}, {field_tail, 6}, - [386] = + [394] = {field_head, 1}, {field_head, 2}, {field_tail, 4}, @@ -3982,10 +4017,10 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [137] = { [0] = sym_identifier, }, - [147] = { + [148] = { [0] = sym_val_string, }, - [148] = { + [149] = { [0] = sym_val_string, }, }; @@ -4007,13 +4042,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 3, [5] = 2, - [6] = 2, - [7] = 3, - [8] = 3, - [9] = 2, + [6] = 3, + [7] = 2, + [8] = 2, + [9] = 3, [10] = 2, - [11] = 3, - [12] = 2, + [11] = 2, + [12] = 3, [13] = 3, [14] = 14, [15] = 14, @@ -4028,86 +4063,86 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [24] = 24, [25] = 25, [26] = 25, - [27] = 27, + [27] = 25, [28] = 28, - [29] = 27, + [29] = 25, [30] = 28, - [31] = 25, - [32] = 27, + [31] = 31, + [32] = 31, [33] = 28, - [34] = 25, - [35] = 28, - [36] = 27, - [37] = 28, + [34] = 28, + [35] = 25, + [36] = 28, + [37] = 31, [38] = 25, - [39] = 27, - [40] = 28, + [39] = 28, + [40] = 31, [41] = 25, - [42] = 27, - [43] = 27, - [44] = 27, - [45] = 28, - [46] = 25, - [47] = 27, - [48] = 27, + [42] = 28, + [43] = 31, + [44] = 44, + [45] = 25, + [46] = 28, + [47] = 31, + [48] = 25, [49] = 28, - [50] = 25, - [51] = 27, + [50] = 31, + [51] = 25, [52] = 25, - [53] = 53, - [54] = 27, - [55] = 27, + [53] = 25, + [54] = 25, + [55] = 44, [56] = 28, - [57] = 25, - [58] = 28, - [59] = 53, - [60] = 28, - [61] = 27, - [62] = 27, + [57] = 31, + [58] = 31, + [59] = 25, + [60] = 25, + [61] = 25, + [62] = 25, [63] = 28, - [64] = 27, - [65] = 25, - [66] = 27, - [67] = 28, - [68] = 27, - [69] = 27, + [64] = 28, + [65] = 31, + [66] = 28, + [67] = 25, + [68] = 31, + [69] = 25, [70] = 28, - [71] = 25, - [72] = 27, + [71] = 31, + [72] = 25, [73] = 25, [74] = 28, - [75] = 27, - [76] = 27, - [77] = 25, - [78] = 28, + [75] = 25, + [76] = 25, + [77] = 28, + [78] = 31, [79] = 28, [80] = 28, - [81] = 27, - [82] = 27, + [81] = 31, + [82] = 25, [83] = 83, [84] = 84, - [85] = 83, - [86] = 3, - [87] = 2, - [88] = 2, - [89] = 3, - [90] = 2, - [91] = 3, + [85] = 84, + [86] = 2, + [87] = 3, + [88] = 3, + [89] = 2, + [90] = 3, + [91] = 2, [92] = 92, [93] = 92, - [94] = 2, + [94] = 3, [95] = 3, - [96] = 3, - [97] = 3, - [98] = 2, + [96] = 2, + [97] = 2, + [98] = 3, [99] = 3, - [100] = 3, - [101] = 2, + [100] = 2, + [101] = 3, [102] = 2, [103] = 3, [104] = 104, - [105] = 2, - [106] = 106, + [105] = 105, + [106] = 2, [107] = 2, [108] = 3, [109] = 2, @@ -4122,41 +4157,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [118] = 118, [119] = 119, [120] = 120, - [121] = 121, - [122] = 115, - [123] = 123, - [124] = 124, - [125] = 111, - [126] = 118, - [127] = 120, - [128] = 112, - [129] = 129, - [130] = 130, - [131] = 117, - [132] = 113, - [133] = 119, - [134] = 116, - [135] = 114, - [136] = 110, - [137] = 121, - [138] = 130, - [139] = 139, + [121] = 111, + [122] = 122, + [123] = 116, + [124] = 120, + [125] = 112, + [126] = 115, + [127] = 113, + [128] = 110, + [129] = 117, + [130] = 118, + [131] = 131, + [132] = 132, + [133] = 114, + [134] = 119, + [135] = 135, + [136] = 136, + [137] = 122, + [138] = 138, + [139] = 132, [140] = 140, - [141] = 123, - [142] = 124, - [143] = 129, - [144] = 144, + [141] = 141, + [142] = 135, + [143] = 131, + [144] = 136, [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, - [150] = 140, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, [154] = 154, - [155] = 139, + [155] = 155, [156] = 156, [157] = 157, [158] = 158, @@ -4165,7 +4200,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [161] = 161, [162] = 162, [163] = 163, - [164] = 144, + [164] = 164, [165] = 165, [166] = 166, [167] = 167, @@ -4174,15 +4209,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [170] = 170, [171] = 171, [172] = 172, - [173] = 173, + [173] = 138, [174] = 174, - [175] = 175, + [175] = 140, [176] = 176, [177] = 177, [178] = 178, [179] = 179, [180] = 180, - [181] = 181, + [181] = 3, [182] = 182, [183] = 183, [184] = 184, @@ -4197,347 +4232,347 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [193] = 193, [194] = 194, [195] = 195, - [196] = 196, + [196] = 141, [197] = 197, [198] = 198, [199] = 199, - [200] = 3, + [200] = 200, [201] = 201, [202] = 202, [203] = 203, [204] = 204, - [205] = 184, - [206] = 163, - [207] = 197, - [208] = 145, - [209] = 171, - [210] = 172, - [211] = 196, - [212] = 174, - [213] = 149, - [214] = 176, - [215] = 177, - [216] = 170, - [217] = 178, - [218] = 179, - [219] = 204, - [220] = 180, - [221] = 192, - [222] = 181, - [223] = 182, - [224] = 183, - [225] = 156, - [226] = 157, - [227] = 190, - [228] = 193, - [229] = 173, - [230] = 159, - [231] = 147, - [232] = 148, - [233] = 175, - [234] = 3, - [235] = 161, - [236] = 162, - [237] = 151, - [238] = 152, - [239] = 153, - [240] = 154, - [241] = 146, - [242] = 185, - [243] = 160, - [244] = 186, - [245] = 187, - [246] = 165, - [247] = 188, - [248] = 166, - [249] = 167, - [250] = 191, - [251] = 168, - [252] = 158, - [253] = 194, - [254] = 195, - [255] = 201, - [256] = 203, - [257] = 202, - [258] = 169, - [259] = 199, - [260] = 198, - [261] = 189, - [262] = 262, - [263] = 118, - [264] = 264, + [205] = 203, + [206] = 182, + [207] = 145, + [208] = 195, + [209] = 162, + [210] = 161, + [211] = 190, + [212] = 160, + [213] = 198, + [214] = 199, + [215] = 191, + [216] = 200, + [217] = 176, + [218] = 156, + [219] = 166, + [220] = 155, + [221] = 158, + [222] = 193, + [223] = 157, + [224] = 185, + [225] = 154, + [226] = 152, + [227] = 187, + [228] = 202, + [229] = 153, + [230] = 186, + [231] = 151, + [232] = 165, + [233] = 201, + [234] = 167, + [235] = 170, + [236] = 171, + [237] = 192, + [238] = 189, + [239] = 159, + [240] = 147, + [241] = 3, + [242] = 163, + [243] = 197, + [244] = 150, + [245] = 149, + [246] = 188, + [247] = 148, + [248] = 146, + [249] = 204, + [250] = 194, + [251] = 179, + [252] = 184, + [253] = 183, + [254] = 174, + [255] = 177, + [256] = 168, + [257] = 169, + [258] = 172, + [259] = 164, + [260] = 178, + [261] = 180, + [262] = 117, + [263] = 263, + [264] = 110, [265] = 265, - [266] = 111, - [267] = 264, - [268] = 268, + [266] = 266, + [267] = 267, + [268] = 120, [269] = 119, - [270] = 112, - [271] = 114, - [272] = 113, + [270] = 115, + [271] = 271, + [272] = 272, [273] = 273, [274] = 274, - [275] = 115, + [275] = 274, [276] = 265, - [277] = 116, - [278] = 117, - [279] = 110, - [280] = 280, - [281] = 280, - [282] = 120, - [283] = 262, - [284] = 284, - [285] = 285, + [277] = 267, + [278] = 266, + [279] = 118, + [280] = 112, + [281] = 113, + [282] = 114, + [283] = 116, + [284] = 111, + [285] = 132, [286] = 286, - [287] = 119, + [287] = 114, [288] = 118, [289] = 289, - [290] = 290, - [291] = 124, - [292] = 120, - [293] = 123, - [294] = 121, - [295] = 115, - [296] = 117, - [297] = 114, - [298] = 111, + [290] = 110, + [291] = 115, + [292] = 292, + [293] = 131, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 117, + [298] = 112, [299] = 116, - [300] = 300, + [300] = 122, [301] = 301, - [302] = 302, - [303] = 303, - [304] = 112, - [305] = 110, - [306] = 129, - [307] = 130, - [308] = 113, - [309] = 140, - [310] = 144, + [302] = 119, + [303] = 113, + [304] = 111, + [305] = 136, + [306] = 135, + [307] = 307, + [308] = 120, + [309] = 309, + [310] = 310, [311] = 311, - [312] = 312, - [313] = 121, - [314] = 123, - [315] = 315, - [316] = 316, - [317] = 139, - [318] = 130, - [319] = 129, - [320] = 124, - [321] = 321, - [322] = 322, + [312] = 309, + [313] = 131, + [314] = 135, + [315] = 132, + [316] = 140, + [317] = 317, + [318] = 318, + [319] = 122, + [320] = 141, + [321] = 136, + [322] = 138, [323] = 323, - [324] = 316, - [325] = 194, - [326] = 326, - [327] = 3, - [328] = 328, - [329] = 158, - [330] = 130, - [331] = 129, - [332] = 315, - [333] = 196, - [334] = 334, - [335] = 170, - [336] = 336, - [337] = 337, - [338] = 204, - [339] = 192, - [340] = 340, - [341] = 190, - [342] = 193, - [343] = 173, - [344] = 147, - [345] = 148, - [346] = 175, - [347] = 151, - [348] = 323, - [349] = 152, - [350] = 153, - [351] = 154, - [352] = 160, - [353] = 188, - [354] = 191, - [355] = 355, - [356] = 195, - [357] = 201, - [358] = 203, - [359] = 202, - [360] = 199, - [361] = 198, - [362] = 139, - [363] = 140, - [364] = 144, - [365] = 321, - [366] = 189, - [367] = 187, - [368] = 186, - [369] = 185, - [370] = 146, - [371] = 183, - [372] = 182, - [373] = 181, - [374] = 180, - [375] = 179, - [376] = 178, - [377] = 177, - [378] = 176, - [379] = 149, - [380] = 184, - [381] = 174, - [382] = 172, - [383] = 171, - [384] = 145, - [385] = 169, - [386] = 168, - [387] = 167, - [388] = 388, - [389] = 166, - [390] = 165, - [391] = 163, - [392] = 162, - [393] = 161, - [394] = 159, - [395] = 157, - [396] = 156, - [397] = 171, + [324] = 324, + [325] = 159, + [326] = 180, + [327] = 157, + [328] = 152, + [329] = 156, + [330] = 154, + [331] = 153, + [332] = 151, + [333] = 150, + [334] = 149, + [335] = 148, + [336] = 146, + [337] = 164, + [338] = 172, + [339] = 183, + [340] = 184, + [341] = 323, + [342] = 194, + [343] = 197, + [344] = 166, + [345] = 170, + [346] = 167, + [347] = 347, + [348] = 348, + [349] = 145, + [350] = 350, + [351] = 171, + [352] = 168, + [353] = 165, + [354] = 176, + [355] = 174, + [356] = 356, + [357] = 147, + [358] = 141, + [359] = 178, + [360] = 158, + [361] = 361, + [362] = 162, + [363] = 161, + [364] = 185, + [365] = 187, + [366] = 310, + [367] = 160, + [368] = 182, + [369] = 163, + [370] = 186, + [371] = 179, + [372] = 188, + [373] = 135, + [374] = 189, + [375] = 3, + [376] = 136, + [377] = 155, + [378] = 204, + [379] = 195, + [380] = 198, + [381] = 190, + [382] = 382, + [383] = 140, + [384] = 199, + [385] = 203, + [386] = 192, + [387] = 201, + [388] = 317, + [389] = 389, + [390] = 138, + [391] = 391, + [392] = 200, + [393] = 169, + [394] = 177, + [395] = 202, + [396] = 193, + [397] = 168, [398] = 188, - [399] = 196, - [400] = 326, - [401] = 190, - [402] = 199, - [403] = 355, - [404] = 198, - [405] = 3, - [406] = 336, - [407] = 174, - [408] = 189, - [409] = 337, - [410] = 187, - [411] = 186, - [412] = 185, - [413] = 146, - [414] = 183, - [415] = 193, - [416] = 173, - [417] = 147, - [418] = 204, - [419] = 148, - [420] = 175, - [421] = 151, - [422] = 182, - [423] = 181, - [424] = 152, - [425] = 153, - [426] = 130, - [427] = 154, - [428] = 192, - [429] = 160, - [430] = 158, - [431] = 191, - [432] = 194, - [433] = 180, - [434] = 340, - [435] = 179, - [436] = 195, - [437] = 388, - [438] = 172, - [439] = 178, - [440] = 177, - [441] = 170, - [442] = 129, - [443] = 201, - [444] = 176, - [445] = 149, - [446] = 156, - [447] = 157, - [448] = 203, - [449] = 202, - [450] = 159, - [451] = 184, - [452] = 161, - [453] = 162, - [454] = 163, - [455] = 165, - [456] = 166, - [457] = 167, - [458] = 168, - [459] = 169, - [460] = 145, + [399] = 147, + [400] = 184, + [401] = 197, + [402] = 198, + [403] = 176, + [404] = 185, + [405] = 203, + [406] = 187, + [407] = 195, + [408] = 3, + [409] = 204, + [410] = 152, + [411] = 145, + [412] = 183, + [413] = 136, + [414] = 155, + [415] = 201, + [416] = 199, + [417] = 156, + [418] = 172, + [419] = 160, + [420] = 164, + [421] = 161, + [422] = 163, + [423] = 162, + [424] = 146, + [425] = 149, + [426] = 361, + [427] = 150, + [428] = 151, + [429] = 356, + [430] = 179, + [431] = 153, + [432] = 186, + [433] = 182, + [434] = 200, + [435] = 166, + [436] = 154, + [437] = 157, + [438] = 194, + [439] = 169, + [440] = 158, + [441] = 177, + [442] = 389, + [443] = 165, + [444] = 180, + [445] = 178, + [446] = 348, + [447] = 193, + [448] = 350, + [449] = 190, + [450] = 171, + [451] = 159, + [452] = 135, + [453] = 170, + [454] = 174, + [455] = 148, + [456] = 167, + [457] = 192, + [458] = 189, + [459] = 202, + [460] = 391, [461] = 461, - [462] = 129, - [463] = 463, - [464] = 130, - [465] = 110, - [466] = 117, - [467] = 467, - [468] = 116, - [469] = 461, - [470] = 111, + [462] = 462, + [463] = 120, + [464] = 115, + [465] = 117, + [466] = 466, + [467] = 110, + [468] = 468, + [469] = 469, + [470] = 135, [471] = 471, - [472] = 120, + [472] = 112, [473] = 473, [474] = 474, [475] = 475, - [476] = 119, - [477] = 477, - [478] = 478, + [476] = 114, + [477] = 136, + [478] = 461, [479] = 479, - [480] = 117, + [480] = 480, [481] = 481, - [482] = 477, - [483] = 119, - [484] = 116, + [482] = 462, + [483] = 120, + [484] = 474, [485] = 485, - [486] = 467, - [487] = 463, - [488] = 488, - [489] = 120, - [490] = 490, - [491] = 130, - [492] = 111, - [493] = 479, - [494] = 471, - [495] = 495, - [496] = 110, - [497] = 475, - [498] = 498, - [499] = 129, - [500] = 478, - [501] = 121, - [502] = 123, - [503] = 474, - [504] = 473, - [505] = 505, - [506] = 506, - [507] = 121, + [486] = 486, + [487] = 114, + [488] = 473, + [489] = 117, + [490] = 135, + [491] = 136, + [492] = 471, + [493] = 469, + [494] = 466, + [495] = 475, + [496] = 468, + [497] = 132, + [498] = 131, + [499] = 499, + [500] = 110, + [501] = 501, + [502] = 479, + [503] = 115, + [504] = 112, + [505] = 190, + [506] = 132, + [507] = 507, [508] = 508, - [509] = 170, - [510] = 140, - [511] = 511, - [512] = 512, - [513] = 139, - [514] = 514, - [515] = 144, + [509] = 509, + [510] = 510, + [511] = 141, + [512] = 140, + [513] = 513, + [514] = 138, + [515] = 515, [516] = 516, - [517] = 517, + [517] = 204, [518] = 518, - [519] = 519, - [520] = 123, + [519] = 131, + [520] = 520, [521] = 521, [522] = 522, [523] = 523, - [524] = 190, + [524] = 524, [525] = 525, - [526] = 526, + [526] = 190, [527] = 527, - [528] = 505, - [529] = 514, + [528] = 528, + [529] = 529, [530] = 530, [531] = 531, [532] = 532, [533] = 533, [534] = 534, - [535] = 535, - [536] = 536, + [535] = 509, + [536] = 516, [537] = 537, [538] = 538, [539] = 539, @@ -4548,56 +4583,56 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [544] = 544, [545] = 545, [546] = 546, - [547] = 204, - [548] = 508, + [547] = 547, + [548] = 548, [549] = 549, [550] = 550, [551] = 551, - [552] = 552, + [552] = 204, [553] = 553, [554] = 554, - [555] = 517, + [555] = 555, [556] = 556, - [557] = 519, + [557] = 557, [558] = 558, - [559] = 512, + [559] = 559, [560] = 560, - [561] = 561, + [561] = 518, [562] = 562, [563] = 563, [564] = 564, - [565] = 565, + [565] = 200, [566] = 566, [567] = 567, [568] = 568, [569] = 569, - [570] = 190, + [570] = 570, [571] = 571, - [572] = 572, - [573] = 573, + [572] = 522, + [573] = 523, [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 522, - [579] = 516, + [578] = 578, + [579] = 579, [580] = 580, [581] = 581, - [582] = 139, + [582] = 582, [583] = 583, - [584] = 584, - [585] = 192, + [584] = 521, + [585] = 202, [586] = 586, [587] = 587, - [588] = 140, + [588] = 510, [589] = 589, - [590] = 590, + [590] = 166, [591] = 591, [592] = 592, - [593] = 593, - [594] = 525, - [595] = 521, - [596] = 596, + [593] = 515, + [594] = 513, + [595] = 138, + [596] = 141, [597] = 597, [598] = 598, [599] = 599, @@ -4606,397 +4641,397 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [602] = 602, [603] = 603, [604] = 604, - [605] = 605, + [605] = 140, [606] = 606, [607] = 607, - [608] = 170, + [608] = 608, [609] = 609, - [610] = 610, + [610] = 520, [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 158, + [615] = 615, [616] = 616, - [617] = 144, + [617] = 617, [618] = 618, - [619] = 571, - [620] = 584, - [621] = 591, - [622] = 609, - [623] = 610, - [624] = 613, - [625] = 592, - [626] = 573, - [627] = 593, - [628] = 628, - [629] = 527, - [630] = 130, - [631] = 607, - [632] = 606, - [633] = 158, - [634] = 129, - [635] = 577, - [636] = 572, - [637] = 562, - [638] = 561, - [639] = 590, - [640] = 545, - [641] = 641, - [642] = 550, - [643] = 530, - [644] = 605, - [645] = 531, - [646] = 532, - [647] = 533, - [648] = 581, - [649] = 604, - [650] = 650, - [651] = 538, - [652] = 652, - [653] = 653, - [654] = 534, - [655] = 535, - [656] = 601, - [657] = 536, - [658] = 575, - [659] = 574, - [660] = 569, - [661] = 563, - [662] = 611, - [663] = 589, - [664] = 614, - [665] = 544, - [666] = 600, - [667] = 586, - [668] = 603, - [669] = 564, - [670] = 618, - [671] = 602, - [672] = 612, - [673] = 526, - [674] = 542, - [675] = 616, - [676] = 537, - [677] = 192, - [678] = 599, - [679] = 552, - [680] = 556, - [681] = 580, - [682] = 567, - [683] = 598, - [684] = 597, - [685] = 596, - [686] = 549, - [687] = 540, - [688] = 568, - [689] = 543, - [690] = 551, - [691] = 546, - [692] = 587, + [619] = 577, + [620] = 620, + [621] = 562, + [622] = 622, + [623] = 623, + [624] = 532, + [625] = 528, + [626] = 527, + [627] = 548, + [628] = 615, + [629] = 545, + [630] = 544, + [631] = 529, + [632] = 556, + [633] = 543, + [634] = 634, + [635] = 534, + [636] = 533, + [637] = 542, + [638] = 136, + [639] = 530, + [640] = 569, + [641] = 560, + [642] = 566, + [643] = 616, + [644] = 568, + [645] = 567, + [646] = 592, + [647] = 591, + [648] = 618, + [649] = 564, + [650] = 563, + [651] = 614, + [652] = 609, + [653] = 608, + [654] = 607, + [655] = 200, + [656] = 578, + [657] = 598, + [658] = 555, + [659] = 553, + [660] = 579, + [661] = 551, + [662] = 549, + [663] = 550, + [664] = 557, + [665] = 606, + [666] = 604, + [667] = 580, + [668] = 602, + [669] = 581, + [670] = 586, + [671] = 576, + [672] = 558, + [673] = 582, + [674] = 547, + [675] = 587, + [676] = 611, + [677] = 135, + [678] = 583, + [679] = 559, + [680] = 546, + [681] = 575, + [682] = 589, + [683] = 612, + [684] = 537, + [685] = 166, + [686] = 570, + [687] = 597, + [688] = 599, + [689] = 202, + [690] = 571, + [691] = 601, + [692] = 613, [693] = 554, - [694] = 583, - [695] = 576, - [696] = 539, - [697] = 541, - [698] = 204, - [699] = 699, - [700] = 653, + [694] = 694, + [695] = 538, + [696] = 574, + [697] = 539, + [698] = 617, + [699] = 622, + [700] = 700, [701] = 701, [702] = 702, - [703] = 116, + [703] = 703, [704] = 704, [705] = 705, [706] = 706, [707] = 707, - [708] = 708, + [708] = 116, [709] = 709, - [710] = 710, - [711] = 117, - [712] = 712, + [710] = 120, + [711] = 711, + [712] = 115, [713] = 713, - [714] = 110, + [714] = 714, [715] = 715, - [716] = 716, + [716] = 118, [717] = 717, - [718] = 718, + [718] = 117, [719] = 719, [720] = 720, - [721] = 115, + [721] = 721, [722] = 722, [723] = 723, [724] = 724, [725] = 725, - [726] = 118, + [726] = 726, [727] = 727, [728] = 728, [729] = 729, [730] = 730, - [731] = 731, - [732] = 117, + [731] = 131, + [732] = 118, [733] = 113, - [734] = 119, - [735] = 111, - [736] = 112, - [737] = 111, - [738] = 116, - [739] = 739, - [740] = 121, - [741] = 123, - [742] = 115, - [743] = 114, - [744] = 744, - [745] = 118, - [746] = 120, - [747] = 110, - [748] = 112, - [749] = 119, - [750] = 114, - [751] = 120, - [752] = 113, + [734] = 110, + [735] = 116, + [736] = 111, + [737] = 737, + [738] = 115, + [739] = 132, + [740] = 740, + [741] = 111, + [742] = 110, + [743] = 113, + [744] = 114, + [745] = 114, + [746] = 746, + [747] = 112, + [748] = 120, + [749] = 112, + [750] = 117, + [751] = 119, + [752] = 119, [753] = 753, - [754] = 121, - [755] = 130, - [756] = 124, - [757] = 129, - [758] = 190, - [759] = 158, - [760] = 139, - [761] = 140, + [754] = 132, + [755] = 122, + [756] = 131, + [757] = 166, + [758] = 140, + [759] = 190, + [760] = 138, + [761] = 122, [762] = 762, - [763] = 124, - [764] = 123, - [765] = 140, - [766] = 766, - [767] = 175, + [763] = 136, + [764] = 135, + [765] = 765, + [766] = 141, + [767] = 767, [768] = 768, - [769] = 766, + [769] = 768, [770] = 770, - [771] = 766, - [772] = 139, - [773] = 766, - [774] = 766, - [775] = 766, - [776] = 144, - [777] = 766, - [778] = 778, + [771] = 771, + [772] = 772, + [773] = 768, + [774] = 768, + [775] = 768, + [776] = 768, + [777] = 768, + [778] = 768, [779] = 779, - [780] = 766, - [781] = 766, - [782] = 766, - [783] = 783, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 140, [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 766, - [789] = 766, + [785] = 768, + [786] = 768, + [787] = 768, + [788] = 768, + [789] = 141, [790] = 790, [791] = 791, - [792] = 766, - [793] = 766, + [792] = 792, + [793] = 162, [794] = 794, - [795] = 795, + [795] = 138, [796] = 796, - [797] = 144, - [798] = 766, - [799] = 799, + [797] = 797, + [798] = 798, + [799] = 178, [800] = 800, [801] = 801, [802] = 802, [803] = 803, [804] = 804, - [805] = 766, - [806] = 806, - [807] = 807, + [805] = 768, + [806] = 768, + [807] = 768, [808] = 808, - [809] = 809, - [810] = 160, + [809] = 768, + [810] = 810, [811] = 811, [812] = 812, - [813] = 151, - [814] = 162, - [815] = 199, - [816] = 198, - [817] = 189, - [818] = 818, - [819] = 202, - [820] = 203, - [821] = 804, - [822] = 170, - [823] = 157, - [824] = 156, - [825] = 803, - [826] = 802, - [827] = 811, - [828] = 193, - [829] = 201, - [830] = 173, - [831] = 195, - [832] = 194, - [833] = 191, - [834] = 188, - [835] = 160, - [836] = 154, - [837] = 806, - [838] = 153, - [839] = 152, - [840] = 147, - [841] = 809, - [842] = 787, - [843] = 812, - [844] = 807, - [845] = 796, - [846] = 795, - [847] = 204, - [848] = 801, - [849] = 800, - [850] = 799, - [851] = 187, - [852] = 186, - [853] = 185, - [854] = 146, - [855] = 808, - [856] = 183, - [857] = 196, - [858] = 182, - [859] = 181, - [860] = 180, - [861] = 148, - [862] = 175, - [863] = 179, - [864] = 148, - [865] = 147, - [866] = 178, - [867] = 177, - [868] = 176, - [869] = 149, - [870] = 184, - [871] = 151, - [872] = 173, - [873] = 189, - [874] = 174, - [875] = 172, - [876] = 171, - [877] = 145, - [878] = 169, - [879] = 168, - [880] = 187, - [881] = 186, - [882] = 185, - [883] = 146, - [884] = 183, - [885] = 182, - [886] = 181, - [887] = 180, - [888] = 179, - [889] = 178, - [890] = 177, - [891] = 176, - [892] = 149, - [893] = 184, - [894] = 174, - [895] = 172, - [896] = 171, - [897] = 145, - [898] = 169, - [899] = 168, + [813] = 182, + [814] = 195, + [815] = 152, + [816] = 151, + [817] = 150, + [818] = 149, + [819] = 170, + [820] = 157, + [821] = 158, + [822] = 159, + [823] = 168, + [824] = 154, + [825] = 193, + [826] = 194, + [827] = 145, + [828] = 195, + [829] = 198, + [830] = 199, + [831] = 203, + [832] = 188, + [833] = 189, + [834] = 186, + [835] = 151, + [836] = 150, + [837] = 149, + [838] = 148, + [839] = 146, + [840] = 164, + [841] = 172, + [842] = 811, + [843] = 183, + [844] = 184, + [845] = 801, + [846] = 169, + [847] = 177, + [848] = 812, + [849] = 197, + [850] = 850, + [851] = 163, + [852] = 792, + [853] = 147, + [854] = 850, + [855] = 203, + [856] = 791, + [857] = 152, + [858] = 174, + [859] = 200, + [860] = 179, + [861] = 780, + [862] = 767, + [863] = 770, + [864] = 771, + [865] = 772, + [866] = 204, + [867] = 810, + [868] = 199, + [869] = 808, + [870] = 765, + [871] = 201, + [872] = 180, + [873] = 800, + [874] = 779, + [875] = 3, + [876] = 798, + [877] = 790, + [878] = 784, + [879] = 198, + [880] = 782, + [881] = 781, + [882] = 153, + [883] = 155, + [884] = 156, + [885] = 154, + [886] = 145, + [887] = 171, + [888] = 160, + [889] = 161, + [890] = 155, + [891] = 194, + [892] = 187, + [893] = 160, + [894] = 794, + [895] = 161, + [896] = 162, + [897] = 165, + [898] = 156, + [899] = 185, [900] = 167, - [901] = 166, - [902] = 165, - [903] = 163, - [904] = 904, - [905] = 161, - [906] = 167, - [907] = 158, - [908] = 166, - [909] = 165, - [910] = 163, - [911] = 162, - [912] = 193, - [913] = 161, - [914] = 152, - [915] = 159, - [916] = 916, - [917] = 153, - [918] = 918, - [919] = 170, - [920] = 154, - [921] = 192, - [922] = 188, - [923] = 157, - [924] = 156, - [925] = 3, - [926] = 192, - [927] = 191, - [928] = 194, - [929] = 818, - [930] = 195, - [931] = 778, - [932] = 779, - [933] = 783, - [934] = 784, - [935] = 196, - [936] = 204, - [937] = 201, - [938] = 203, + [901] = 157, + [902] = 796, + [903] = 170, + [904] = 166, + [905] = 202, + [906] = 193, + [907] = 797, + [908] = 176, + [909] = 909, + [910] = 171, + [911] = 158, + [912] = 159, + [913] = 168, + [914] = 178, + [915] = 165, + [916] = 169, + [917] = 177, + [918] = 167, + [919] = 163, + [920] = 920, + [921] = 147, + [922] = 180, + [923] = 182, + [924] = 186, + [925] = 188, + [926] = 197, + [927] = 184, + [928] = 183, + [929] = 172, + [930] = 164, + [931] = 153, + [932] = 146, + [933] = 148, + [934] = 174, + [935] = 204, + [936] = 176, + [937] = 803, + [938] = 192, [939] = 202, - [940] = 904, - [941] = 791, - [942] = 790, - [943] = 190, - [944] = 770, - [945] = 768, - [946] = 159, - [947] = 198, - [948] = 199, - [949] = 785, - [950] = 786, + [940] = 804, + [941] = 201, + [942] = 200, + [943] = 943, + [944] = 179, + [945] = 189, + [946] = 192, + [947] = 920, + [948] = 187, + [949] = 185, + [950] = 190, [951] = 951, [952] = 952, - [953] = 952, - [954] = 954, + [953] = 953, + [954] = 953, [955] = 955, [956] = 956, - [957] = 955, - [958] = 956, - [959] = 954, + [957] = 956, + [958] = 955, + [959] = 952, [960] = 960, - [961] = 961, + [961] = 960, [962] = 960, - [963] = 960, - [964] = 964, - [965] = 964, + [963] = 963, + [964] = 963, + [965] = 963, [966] = 960, - [967] = 964, - [968] = 964, - [969] = 960, - [970] = 964, + [967] = 960, + [968] = 960, + [969] = 963, + [970] = 963, [971] = 960, - [972] = 964, - [973] = 960, - [974] = 964, + [972] = 972, + [973] = 963, + [974] = 974, [975] = 960, - [976] = 964, - [977] = 964, - [978] = 960, - [979] = 960, - [980] = 964, - [981] = 960, - [982] = 982, - [983] = 983, - [984] = 964, - [985] = 964, - [986] = 964, + [976] = 960, + [977] = 960, + [978] = 963, + [979] = 963, + [980] = 960, + [981] = 963, + [982] = 960, + [983] = 963, + [984] = 960, + [985] = 963, + [986] = 963, [987] = 960, [988] = 960, - [989] = 964, - [990] = 960, - [991] = 964, - [992] = 964, + [989] = 963, + [990] = 963, + [991] = 963, + [992] = 963, [993] = 960, - [994] = 960, - [995] = 964, + [994] = 994, + [995] = 960, [996] = 996, [997] = 997, [998] = 998, @@ -5005,7 +5040,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1001] = 1001, [1002] = 1002, [1003] = 1003, - [1004] = 996, + [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, @@ -5014,9 +5049,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1010] = 1010, [1011] = 1011, [1012] = 1012, - [1013] = 1013, + [1013] = 1011, [1014] = 1014, - [1015] = 1015, + [1015] = 996, [1016] = 1016, [1017] = 1017, [1018] = 1018, @@ -5028,1112 +5063,1112 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, + [1027] = 1001, + [1028] = 1014, + [1029] = 996, [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1033, - [1034] = 1034, - [1035] = 1035, + [1031] = 1016, + [1032] = 1017, + [1033] = 1019, + [1034] = 1021, + [1035] = 1023, [1036] = 1036, [1037] = 1037, [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 1037, - [1042] = 1036, + [1041] = 1041, + [1042] = 1042, [1043] = 1043, [1044] = 1044, - [1045] = 1035, - [1046] = 1029, - [1047] = 1028, - [1048] = 1025, - [1049] = 1024, + [1045] = 1045, + [1046] = 1046, + [1047] = 999, + [1048] = 1048, + [1049] = 1049, [1050] = 1050, - [1051] = 1023, - [1052] = 1016, - [1053] = 1029, - [1054] = 1028, - [1055] = 998, - [1056] = 1025, + [1051] = 1051, + [1052] = 1052, + [1053] = 1000, + [1054] = 1001, + [1055] = 1055, + [1056] = 1056, [1057] = 1057, - [1058] = 999, - [1059] = 996, - [1060] = 1014, + [1058] = 1058, + [1059] = 1009, + [1060] = 1060, [1061] = 1061, - [1062] = 1035, + [1062] = 1062, [1063] = 1063, - [1064] = 1064, + [1064] = 1011, [1065] = 1065, - [1066] = 1024, - [1067] = 1037, - [1068] = 1023, - [1069] = 1016, - [1070] = 1023, - [1071] = 1016, - [1072] = 998, - [1073] = 1029, - [1074] = 1028, - [1075] = 1025, - [1076] = 1076, - [1077] = 999, - [1078] = 1078, - [1079] = 996, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1024, - [1084] = 1014, - [1085] = 1085, + [1066] = 1066, + [1067] = 1067, + [1068] = 1068, + [1069] = 1069, + [1070] = 1070, + [1071] = 1071, + [1072] = 1072, + [1073] = 1012, + [1074] = 1014, + [1075] = 1075, + [1076] = 996, + [1077] = 1016, + [1078] = 1017, + [1079] = 1019, + [1080] = 1021, + [1081] = 1023, + [1082] = 999, + [1083] = 1000, + [1084] = 1001, + [1085] = 1009, [1086] = 1086, - [1087] = 1029, - [1088] = 1028, - [1089] = 1035, - [1090] = 1025, - [1091] = 1024, - [1092] = 1023, - [1093] = 1016, - [1094] = 998, - [1095] = 999, + [1087] = 1087, + [1088] = 1088, + [1089] = 1089, + [1090] = 1011, + [1091] = 1091, + [1092] = 1012, + [1093] = 1093, + [1094] = 1094, + [1095] = 1014, [1096] = 996, - [1097] = 1014, - [1098] = 1035, - [1099] = 1037, - [1100] = 1037, - [1101] = 1036, - [1102] = 1037, - [1103] = 1035, - [1104] = 1014, - [1105] = 996, - [1106] = 999, - [1107] = 998, - [1108] = 1016, - [1109] = 1023, - [1110] = 1024, - [1111] = 1025, - [1112] = 1028, - [1113] = 1029, - [1114] = 1036, - [1115] = 1115, - [1116] = 1036, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, + [1097] = 1097, + [1098] = 1098, + [1099] = 1016, + [1100] = 1017, + [1101] = 1019, + [1102] = 1021, + [1103] = 1023, + [1104] = 999, + [1105] = 1000, + [1106] = 1065, + [1107] = 1071, + [1108] = 1072, + [1109] = 1075, + [1110] = 1086, + [1111] = 1087, + [1112] = 1088, + [1113] = 1001, + [1114] = 1093, + [1115] = 1009, + [1116] = 1011, + [1117] = 1094, + [1118] = 1097, + [1119] = 1098, [1120] = 1120, - [1121] = 1023, - [1122] = 1036, - [1123] = 1123, - [1124] = 998, - [1125] = 1014, - [1126] = 1024, - [1127] = 999, - [1128] = 998, - [1129] = 996, - [1130] = 1014, - [1131] = 1035, - [1132] = 1025, - [1133] = 1028, - [1134] = 1029, - [1135] = 1037, - [1136] = 1023, - [1137] = 1036, - [1138] = 1016, - [1139] = 1024, - [1140] = 1036, - [1141] = 1029, - [1142] = 1028, - [1143] = 1025, - [1144] = 1025, - [1145] = 1024, - [1146] = 996, - [1147] = 1023, - [1148] = 1016, - [1149] = 998, - [1150] = 998, - [1151] = 999, - [1152] = 999, - [1153] = 1014, - [1154] = 996, - [1155] = 1035, - [1156] = 1000, - [1157] = 1001, - [1158] = 1002, - [1159] = 1003, - [1160] = 1037, - [1161] = 1005, - [1162] = 1006, - [1163] = 1007, - [1164] = 1008, - [1165] = 1009, - [1166] = 1010, - [1167] = 1011, - [1168] = 1012, - [1169] = 1013, - [1170] = 1025, - [1171] = 1015, - [1172] = 1017, - [1173] = 1018, - [1174] = 1019, - [1175] = 1020, - [1176] = 1021, - [1177] = 1022, - [1178] = 1026, - [1179] = 1027, - [1180] = 1030, - [1181] = 1031, - [1182] = 1032, - [1183] = 1034, - [1184] = 1028, - [1185] = 1029, - [1186] = 1036, - [1187] = 1014, - [1188] = 1188, - [1189] = 1037, - [1190] = 1190, - [1191] = 1035, - [1192] = 1029, - [1193] = 1036, - [1194] = 1014, - [1195] = 1028, - [1196] = 1016, - [1197] = 1035, - [1198] = 1023, - [1199] = 1199, - [1200] = 1200, - [1201] = 1200, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, + [1121] = 1121, + [1122] = 1023, + [1123] = 1021, + [1124] = 1019, + [1125] = 1017, + [1126] = 1016, + [1127] = 996, + [1128] = 1014, + [1129] = 1012, + [1130] = 1011, + [1131] = 1009, + [1132] = 1001, + [1133] = 1000, + [1134] = 999, + [1135] = 1120, + [1136] = 1012, + [1137] = 1014, + [1138] = 996, + [1139] = 1016, + [1140] = 1017, + [1141] = 1019, + [1142] = 1021, + [1143] = 1023, + [1144] = 1121, + [1145] = 999, + [1146] = 1023, + [1147] = 1147, + [1148] = 1021, + [1149] = 1019, + [1150] = 1017, + [1151] = 1016, + [1152] = 996, + [1153] = 1070, + [1154] = 1014, + [1155] = 1012, + [1156] = 1011, + [1157] = 1009, + [1158] = 1001, + [1159] = 1000, + [1160] = 999, + [1161] = 1000, + [1162] = 999, + [1163] = 1012, + [1164] = 1069, + [1165] = 1165, + [1166] = 1166, + [1167] = 1167, + [1168] = 1000, + [1169] = 1068, + [1170] = 1170, + [1171] = 1171, + [1172] = 1172, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 997, + [1177] = 1177, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1181, + [1182] = 1182, + [1183] = 1147, + [1184] = 1061, + [1185] = 1052, + [1186] = 1042, + [1187] = 1041, + [1188] = 1030, + [1189] = 1024, + [1190] = 1020, + [1191] = 1191, + [1192] = 1010, + [1193] = 1193, + [1194] = 998, + [1195] = 1002, + [1196] = 1003, + [1197] = 1004, + [1198] = 1005, + [1199] = 1006, + [1200] = 1007, + [1201] = 1008, + [1202] = 1022, + [1203] = 1025, + [1204] = 1026, [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1024, - [1214] = 1023, - [1215] = 996, - [1216] = 999, - [1217] = 998, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1222, - [1223] = 1037, - [1224] = 1224, - [1225] = 1225, - [1226] = 999, - [1227] = 999, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1224, - [1235] = 996, - [1236] = 1222, - [1237] = 998, - [1238] = 1221, - [1239] = 1220, - [1240] = 1219, - [1241] = 1036, - [1242] = 1218, - [1243] = 1016, - [1244] = 1233, - [1245] = 1232, - [1246] = 1231, - [1247] = 1230, - [1248] = 1229, - [1249] = 998, - [1250] = 1029, - [1251] = 1028, - [1252] = 1025, - [1253] = 1024, - [1254] = 1228, - [1255] = 1225, - [1256] = 1016, - [1257] = 1023, - [1258] = 1016, - [1259] = 998, - [1260] = 1025, - [1261] = 999, - [1262] = 996, - [1263] = 1037, - [1264] = 1024, - [1265] = 1212, + [1206] = 1001, + [1207] = 1009, + [1208] = 1011, + [1209] = 1012, + [1210] = 1014, + [1211] = 996, + [1212] = 1016, + [1213] = 1017, + [1214] = 1019, + [1215] = 1021, + [1216] = 1023, + [1217] = 999, + [1218] = 1000, + [1219] = 1009, + [1220] = 1011, + [1221] = 1012, + [1222] = 1014, + [1223] = 996, + [1224] = 1016, + [1225] = 1017, + [1226] = 1019, + [1227] = 1021, + [1228] = 1023, + [1229] = 999, + [1230] = 1067, + [1231] = 1000, + [1232] = 1001, + [1233] = 1009, + [1234] = 1011, + [1235] = 1012, + [1236] = 1014, + [1237] = 996, + [1238] = 1016, + [1239] = 1017, + [1240] = 1019, + [1241] = 1021, + [1242] = 1023, + [1243] = 1001, + [1244] = 1009, + [1245] = 1036, + [1246] = 1037, + [1247] = 1038, + [1248] = 1039, + [1249] = 1040, + [1250] = 1043, + [1251] = 1044, + [1252] = 1045, + [1253] = 1046, + [1254] = 1048, + [1255] = 1049, + [1256] = 1050, + [1257] = 1051, + [1258] = 999, + [1259] = 1000, + [1260] = 1001, + [1261] = 1009, + [1262] = 1011, + [1263] = 1012, + [1264] = 1014, + [1265] = 996, [1266] = 1016, - [1267] = 1023, - [1268] = 999, - [1269] = 1211, - [1270] = 1024, - [1271] = 1210, - [1272] = 1209, - [1273] = 1033, - [1274] = 1038, - [1275] = 1039, - [1276] = 1040, - [1277] = 1043, - [1278] = 1044, - [1279] = 1050, - [1280] = 1057, - [1281] = 1061, - [1282] = 1063, - [1283] = 1064, - [1284] = 1065, - [1285] = 1123, - [1286] = 1208, - [1287] = 1207, - [1288] = 1206, - [1289] = 996, - [1290] = 1028, - [1291] = 1014, - [1292] = 1014, - [1293] = 1205, - [1294] = 1035, - [1295] = 1029, - [1296] = 1204, - [1297] = 1203, - [1298] = 1202, - [1299] = 1014, - [1300] = 1035, - [1301] = 1035, - [1302] = 1025, - [1303] = 1120, - [1304] = 1037, - [1305] = 1036, - [1306] = 1037, - [1307] = 1035, - [1308] = 1014, - [1309] = 996, - [1310] = 1119, - [1311] = 999, - [1312] = 998, - [1313] = 1118, - [1314] = 1016, - [1315] = 1023, - [1316] = 1117, - [1317] = 1024, - [1318] = 1115, - [1319] = 1036, - [1320] = 1086, - [1321] = 1085, - [1322] = 997, - [1323] = 1029, - [1324] = 1025, - [1325] = 1028, - [1326] = 1029, - [1327] = 1028, - [1328] = 1199, - [1329] = 1036, - [1330] = 1037, - [1331] = 1076, - [1332] = 1078, - [1333] = 1080, - [1334] = 1081, - [1335] = 1082, + [1267] = 1011, + [1268] = 1017, + [1269] = 1019, + [1270] = 1012, + [1271] = 1021, + [1272] = 1023, + [1273] = 1023, + [1274] = 1021, + [1275] = 999, + [1276] = 1019, + [1277] = 1000, + [1278] = 1001, + [1279] = 1177, + [1280] = 1014, + [1281] = 1178, + [1282] = 1017, + [1283] = 1016, + [1284] = 996, + [1285] = 1014, + [1286] = 996, + [1287] = 1012, + [1288] = 1011, + [1289] = 1009, + [1290] = 1001, + [1291] = 1000, + [1292] = 999, + [1293] = 1023, + [1294] = 1205, + [1295] = 1191, + [1296] = 1181, + [1297] = 1193, + [1298] = 1175, + [1299] = 1174, + [1300] = 1173, + [1301] = 1172, + [1302] = 1171, + [1303] = 1170, + [1304] = 1167, + [1305] = 1166, + [1306] = 1165, + [1307] = 1179, + [1308] = 1180, + [1309] = 1009, + [1310] = 1182, + [1311] = 1055, + [1312] = 1016, + [1313] = 1056, + [1314] = 1057, + [1315] = 1058, + [1316] = 1018, + [1317] = 1021, + [1318] = 1019, + [1319] = 1060, + [1320] = 1062, + [1321] = 1017, + [1322] = 1063, + [1323] = 1066, + [1324] = 1017, + [1325] = 1016, + [1326] = 1014, + [1327] = 1012, + [1328] = 1011, + [1329] = 1009, + [1330] = 1001, + [1331] = 1000, + [1332] = 999, + [1333] = 1023, + [1334] = 1021, + [1335] = 1019, [1336] = 1336, - [1337] = 1336, + [1337] = 1337, [1338] = 1338, - [1339] = 1339, + [1339] = 1338, [1340] = 1340, [1341] = 1341, [1342] = 1342, [1343] = 1343, [1344] = 1344, - [1345] = 1345, - [1346] = 1344, - [1347] = 1345, - [1348] = 1348, - [1349] = 1341, + [1345] = 1343, + [1346] = 1346, + [1347] = 1347, + [1348] = 1346, + [1349] = 1349, [1350] = 1350, - [1351] = 1350, - [1352] = 1343, - [1353] = 1342, - [1354] = 1348, - [1355] = 1355, - [1356] = 124, - [1357] = 112, - [1358] = 124, - [1359] = 111, - [1360] = 117, - [1361] = 120, - [1362] = 118, + [1351] = 1349, + [1352] = 1352, + [1353] = 1352, + [1354] = 1341, + [1355] = 1342, + [1356] = 1347, + [1357] = 122, + [1358] = 111, + [1359] = 113, + [1360] = 122, + [1361] = 110, + [1362] = 115, [1363] = 116, - [1364] = 115, - [1365] = 119, - [1366] = 114, - [1367] = 110, - [1368] = 113, - [1369] = 124, - [1370] = 118, - [1371] = 116, - [1372] = 130, - [1373] = 124, - [1374] = 119, + [1364] = 117, + [1365] = 120, + [1366] = 119, + [1367] = 114, + [1368] = 112, + [1369] = 118, + [1370] = 136, + [1371] = 132, + [1372] = 122, + [1373] = 110, + [1374] = 120, [1375] = 113, - [1376] = 111, - [1377] = 129, - [1378] = 114, - [1379] = 120, - [1380] = 112, - [1381] = 124, - [1382] = 110, - [1383] = 121, - [1384] = 123, - [1385] = 115, - [1386] = 124, - [1387] = 117, - [1388] = 121, - [1389] = 124, - [1390] = 130, - [1391] = 123, - [1392] = 140, - [1393] = 139, - [1394] = 144, - [1395] = 129, - [1396] = 124, - [1397] = 461, - [1398] = 151, - [1399] = 173, - [1400] = 130, - [1401] = 139, - [1402] = 154, - [1403] = 110, - [1404] = 192, - [1405] = 461, - [1406] = 160, - [1407] = 188, - [1408] = 478, - [1409] = 191, - [1410] = 194, - [1411] = 195, - [1412] = 144, - [1413] = 170, - [1414] = 474, - [1415] = 140, - [1416] = 129, - [1417] = 175, - [1418] = 148, - [1419] = 204, - [1420] = 147, - [1421] = 113, + [1376] = 112, + [1377] = 117, + [1378] = 122, + [1379] = 118, + [1380] = 114, + [1381] = 115, + [1382] = 122, + [1383] = 111, + [1384] = 131, + [1385] = 122, + [1386] = 135, + [1387] = 116, + [1388] = 119, + [1389] = 461, + [1390] = 122, + [1391] = 140, + [1392] = 138, + [1393] = 131, + [1394] = 141, + [1395] = 136, + [1396] = 135, + [1397] = 122, + [1398] = 132, + [1399] = 178, + [1400] = 117, + [1401] = 155, + [1402] = 136, + [1403] = 147, + [1404] = 163, + [1405] = 152, + [1406] = 161, + [1407] = 156, + [1408] = 190, + [1409] = 122, + [1410] = 177, + [1411] = 169, + [1412] = 160, + [1413] = 141, + [1414] = 119, + [1415] = 1415, + [1416] = 204, + [1417] = 162, + [1418] = 202, + [1419] = 165, + [1420] = 120, + [1421] = 135, [1422] = 201, - [1423] = 203, - [1424] = 193, - [1425] = 1425, - [1426] = 202, - [1427] = 1427, - [1428] = 190, - [1429] = 199, - [1430] = 198, - [1431] = 1431, - [1432] = 116, - [1433] = 1433, + [1423] = 167, + [1424] = 170, + [1425] = 471, + [1426] = 115, + [1427] = 461, + [1428] = 171, + [1429] = 138, + [1430] = 1430, + [1431] = 180, + [1432] = 200, + [1433] = 182, [1434] = 1434, - [1435] = 1435, - [1436] = 117, - [1437] = 158, + [1435] = 186, + [1436] = 1436, + [1437] = 1437, [1438] = 1438, - [1439] = 124, - [1440] = 196, - [1441] = 152, - [1442] = 153, - [1443] = 3, - [1444] = 1444, - [1445] = 116, - [1446] = 121, - [1447] = 123, - [1448] = 201, - [1449] = 195, - [1450] = 194, - [1451] = 191, - [1452] = 129, - [1453] = 188, - [1454] = 474, - [1455] = 478, - [1456] = 124, - [1457] = 1457, - [1458] = 170, - [1459] = 1438, - [1460] = 193, - [1461] = 190, - [1462] = 1435, - [1463] = 1434, - [1464] = 130, - [1465] = 198, - [1466] = 1466, - [1467] = 199, - [1468] = 175, - [1469] = 173, - [1470] = 192, - [1471] = 129, - [1472] = 1472, - [1473] = 111, - [1474] = 148, - [1475] = 3, - [1476] = 1476, - [1477] = 151, - [1478] = 1433, - [1479] = 202, - [1480] = 203, - [1481] = 158, - [1482] = 147, - [1483] = 160, - [1484] = 1431, - [1485] = 1485, - [1486] = 1427, - [1487] = 154, - [1488] = 204, - [1489] = 1425, - [1490] = 110, - [1491] = 196, - [1492] = 1492, - [1493] = 1493, - [1494] = 117, - [1495] = 130, - [1496] = 152, - [1497] = 153, - [1498] = 116, - [1499] = 121, + [1439] = 188, + [1440] = 1440, + [1441] = 3, + [1442] = 140, + [1443] = 475, + [1444] = 166, + [1445] = 200, + [1446] = 201, + [1447] = 169, + [1448] = 177, + [1449] = 1430, + [1450] = 120, + [1451] = 1434, + [1452] = 180, + [1453] = 178, + [1454] = 135, + [1455] = 136, + [1456] = 163, + [1457] = 166, + [1458] = 1458, + [1459] = 147, + [1460] = 1436, + [1461] = 1437, + [1462] = 190, + [1463] = 135, + [1464] = 1438, + [1465] = 170, + [1466] = 122, + [1467] = 1440, + [1468] = 204, + [1469] = 471, + [1470] = 1470, + [1471] = 117, + [1472] = 1415, + [1473] = 152, + [1474] = 132, + [1475] = 131, + [1476] = 182, + [1477] = 155, + [1478] = 156, + [1479] = 160, + [1480] = 188, + [1481] = 161, + [1482] = 1482, + [1483] = 171, + [1484] = 1484, + [1485] = 115, + [1486] = 110, + [1487] = 162, + [1488] = 1488, + [1489] = 186, + [1490] = 1490, + [1491] = 1491, + [1492] = 3, + [1493] = 202, + [1494] = 136, + [1495] = 165, + [1496] = 1496, + [1497] = 167, + [1498] = 475, + [1499] = 120, [1500] = 1500, [1501] = 110, - [1502] = 123, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 117, - [1508] = 111, - [1509] = 116, - [1510] = 1510, - [1511] = 139, - [1512] = 110, - [1513] = 130, - [1514] = 129, - [1515] = 113, - [1516] = 1516, - [1517] = 140, + [1502] = 1502, + [1503] = 132, + [1504] = 120, + [1505] = 131, + [1506] = 117, + [1507] = 1507, + [1508] = 1508, + [1509] = 1509, + [1510] = 119, + [1511] = 1511, + [1512] = 136, + [1513] = 135, + [1514] = 1514, + [1515] = 138, + [1516] = 140, + [1517] = 115, [1518] = 1518, [1519] = 117, - [1520] = 123, - [1521] = 117, - [1522] = 110, - [1523] = 121, - [1524] = 117, - [1525] = 1525, - [1526] = 116, - [1527] = 112, - [1528] = 129, - [1529] = 157, - [1530] = 1530, - [1531] = 111, + [1520] = 115, + [1521] = 114, + [1522] = 135, + [1523] = 1523, + [1524] = 1524, + [1525] = 136, + [1526] = 119, + [1527] = 135, + [1528] = 1528, + [1529] = 185, + [1530] = 119, + [1531] = 138, [1532] = 120, - [1533] = 1533, - [1534] = 129, - [1535] = 1535, - [1536] = 1536, - [1537] = 130, + [1533] = 120, + [1534] = 115, + [1535] = 141, + [1536] = 131, + [1537] = 1537, [1538] = 1538, - [1539] = 119, - [1540] = 118, - [1541] = 115, - [1542] = 113, - [1543] = 148, - [1544] = 121, - [1545] = 123, - [1546] = 113, - [1547] = 139, - [1548] = 144, + [1539] = 117, + [1540] = 119, + [1541] = 1541, + [1542] = 140, + [1543] = 115, + [1544] = 131, + [1545] = 132, + [1546] = 117, + [1547] = 120, + [1548] = 1548, [1549] = 1549, - [1550] = 140, - [1551] = 110, - [1552] = 117, - [1553] = 1553, - [1554] = 110, - [1555] = 114, + [1550] = 112, + [1551] = 135, + [1552] = 1552, + [1553] = 117, + [1554] = 118, + [1555] = 116, [1556] = 113, - [1557] = 1557, - [1558] = 116, - [1559] = 130, - [1560] = 116, - [1561] = 116, - [1562] = 129, - [1563] = 1563, - [1564] = 113, - [1565] = 110, - [1566] = 117, - [1567] = 130, - [1568] = 130, - [1569] = 139, - [1570] = 123, - [1571] = 1571, - [1572] = 1572, - [1573] = 129, - [1574] = 144, - [1575] = 123, - [1576] = 117, - [1577] = 121, - [1578] = 117, - [1579] = 129, - [1580] = 111, - [1581] = 140, + [1557] = 180, + [1558] = 110, + [1559] = 1559, + [1560] = 136, + [1561] = 117, + [1562] = 132, + [1563] = 136, + [1564] = 111, + [1565] = 115, + [1566] = 120, + [1567] = 119, + [1568] = 115, + [1569] = 132, + [1570] = 131, + [1571] = 110, + [1572] = 132, + [1573] = 138, + [1574] = 120, + [1575] = 138, + [1576] = 120, + [1577] = 117, + [1578] = 140, + [1579] = 115, + [1580] = 131, + [1581] = 136, [1582] = 1582, - [1583] = 139, - [1584] = 121, - [1585] = 110, - [1586] = 116, - [1587] = 129, - [1588] = 116, - [1589] = 158, - [1590] = 123, - [1591] = 121, - [1592] = 130, - [1593] = 129, - [1594] = 110, - [1595] = 130, - [1596] = 123, - [1597] = 130, - [1598] = 121, - [1599] = 113, - [1600] = 140, - [1601] = 139, - [1602] = 144, - [1603] = 110, - [1604] = 139, - [1605] = 140, - [1606] = 117, - [1607] = 120, - [1608] = 110, - [1609] = 119, - [1610] = 1610, - [1611] = 1611, - [1612] = 116, - [1613] = 111, - [1614] = 148, - [1615] = 113, - [1616] = 121, - [1617] = 123, - [1618] = 158, - [1619] = 508, - [1620] = 130, - [1621] = 157, - [1622] = 123, - [1623] = 121, - [1624] = 112, - [1625] = 114, - [1626] = 115, - [1627] = 512, - [1628] = 139, - [1629] = 1610, - [1630] = 118, - [1631] = 130, - [1632] = 110, - [1633] = 129, - [1634] = 116, - [1635] = 113, - [1636] = 117, - [1637] = 117, + [1583] = 136, + [1584] = 135, + [1585] = 135, + [1586] = 117, + [1587] = 115, + [1588] = 132, + [1589] = 119, + [1590] = 166, + [1591] = 131, + [1592] = 131, + [1593] = 140, + [1594] = 141, + [1595] = 132, + [1596] = 136, + [1597] = 135, + [1598] = 136, + [1599] = 1599, + [1600] = 1600, + [1601] = 135, + [1602] = 112, + [1603] = 140, + [1604] = 120, + [1605] = 1605, + [1606] = 115, + [1607] = 138, + [1608] = 136, + [1609] = 132, + [1610] = 140, + [1611] = 135, + [1612] = 117, + [1613] = 115, + [1614] = 136, + [1615] = 138, + [1616] = 520, + [1617] = 119, + [1618] = 115, + [1619] = 180, + [1620] = 117, + [1621] = 120, + [1622] = 114, + [1623] = 518, + [1624] = 1624, + [1625] = 117, + [1626] = 138, + [1627] = 141, + [1628] = 119, + [1629] = 1599, + [1630] = 140, + [1631] = 135, + [1632] = 185, + [1633] = 1605, + [1634] = 110, + [1635] = 132, + [1636] = 131, + [1637] = 138, [1638] = 111, - [1639] = 140, - [1640] = 116, - [1641] = 1571, - [1642] = 140, - [1643] = 139, - [1644] = 129, - [1645] = 140, - [1646] = 1611, - [1647] = 118, - [1648] = 119, + [1639] = 113, + [1640] = 166, + [1641] = 131, + [1642] = 116, + [1643] = 110, + [1644] = 118, + [1645] = 1624, + [1646] = 120, + [1647] = 140, + [1648] = 114, [1649] = 112, - [1650] = 146, - [1651] = 112, - [1652] = 183, - [1653] = 182, - [1654] = 181, - [1655] = 180, - [1656] = 154, - [1657] = 179, - [1658] = 121, - [1659] = 123, - [1660] = 199, - [1661] = 1661, - [1662] = 148, - [1663] = 508, - [1664] = 153, - [1665] = 152, - [1666] = 151, - [1667] = 111, - [1668] = 129, - [1669] = 117, - [1670] = 188, - [1671] = 130, - [1672] = 1672, - [1673] = 194, - [1674] = 195, - [1675] = 158, - [1676] = 116, - [1677] = 1677, - [1678] = 145, - [1679] = 512, - [1680] = 148, - [1681] = 111, - [1682] = 114, - [1683] = 189, - [1684] = 114, - [1685] = 160, - [1686] = 1686, - [1687] = 117, - [1688] = 1688, - [1689] = 121, - [1690] = 175, - [1691] = 115, - [1692] = 1692, - [1693] = 169, - [1694] = 123, - [1695] = 121, - [1696] = 123, - [1697] = 1697, - [1698] = 110, - [1699] = 116, - [1700] = 177, + [1650] = 136, + [1651] = 1651, + [1652] = 118, + [1653] = 110, + [1654] = 203, + [1655] = 199, + [1656] = 198, + [1657] = 195, + [1658] = 145, + [1659] = 194, + [1660] = 193, + [1661] = 192, + [1662] = 189, + [1663] = 179, + [1664] = 174, + [1665] = 168, + [1666] = 159, + [1667] = 158, + [1668] = 157, + [1669] = 154, + [1670] = 153, + [1671] = 151, + [1672] = 150, + [1673] = 149, + [1674] = 148, + [1675] = 146, + [1676] = 164, + [1677] = 172, + [1678] = 183, + [1679] = 184, + [1680] = 197, + [1681] = 135, + [1682] = 176, + [1683] = 187, + [1684] = 138, + [1685] = 131, + [1686] = 140, + [1687] = 132, + [1688] = 113, + [1689] = 180, + [1690] = 111, + [1691] = 169, + [1692] = 177, + [1693] = 163, + [1694] = 1694, + [1695] = 147, + [1696] = 185, + [1697] = 152, + [1698] = 155, + [1699] = 156, + [1700] = 1700, [1701] = 120, - [1702] = 113, - [1703] = 116, - [1704] = 157, - [1705] = 157, - [1706] = 168, - [1707] = 167, - [1708] = 117, - [1709] = 166, - [1710] = 110, - [1711] = 165, - [1712] = 163, - [1713] = 162, - [1714] = 161, - [1715] = 198, - [1716] = 120, - [1717] = 119, - [1718] = 123, - [1719] = 113, - [1720] = 192, - [1721] = 170, - [1722] = 1722, - [1723] = 191, - [1724] = 144, - [1725] = 110, - [1726] = 201, - [1727] = 113, - [1728] = 159, - [1729] = 116, - [1730] = 117, - [1731] = 176, - [1732] = 1732, - [1733] = 111, - [1734] = 130, - [1735] = 156, - [1736] = 115, - [1737] = 193, - [1738] = 130, - [1739] = 119, - [1740] = 1740, - [1741] = 139, - [1742] = 129, - [1743] = 120, - [1744] = 147, - [1745] = 118, - [1746] = 140, - [1747] = 149, - [1748] = 1748, - [1749] = 185, - [1750] = 114, - [1751] = 148, - [1752] = 203, - [1753] = 202, - [1754] = 112, - [1755] = 110, - [1756] = 184, - [1757] = 174, - [1758] = 172, - [1759] = 118, - [1760] = 171, - [1761] = 139, - [1762] = 178, - [1763] = 157, - [1764] = 186, - [1765] = 1765, - [1766] = 173, - [1767] = 121, - [1768] = 196, - [1769] = 1769, + [1702] = 160, + [1703] = 161, + [1704] = 162, + [1705] = 141, + [1706] = 1706, + [1707] = 165, + [1708] = 167, + [1709] = 170, + [1710] = 171, + [1711] = 1711, + [1712] = 117, + [1713] = 178, + [1714] = 182, + [1715] = 115, + [1716] = 186, + [1717] = 188, + [1718] = 1718, + [1719] = 1719, + [1720] = 185, + [1721] = 114, + [1722] = 119, + [1723] = 112, + [1724] = 119, + [1725] = 204, + [1726] = 136, + [1727] = 119, + [1728] = 202, + [1729] = 135, + [1730] = 201, + [1731] = 200, + [1732] = 190, + [1733] = 140, + [1734] = 138, + [1735] = 131, + [1736] = 132, + [1737] = 112, + [1738] = 110, + [1739] = 166, + [1740] = 119, + [1741] = 114, + [1742] = 110, + [1743] = 136, + [1744] = 135, + [1745] = 111, + [1746] = 1746, + [1747] = 180, + [1748] = 113, + [1749] = 1749, + [1750] = 120, + [1751] = 520, + [1752] = 116, + [1753] = 131, + [1754] = 132, + [1755] = 117, + [1756] = 115, + [1757] = 518, + [1758] = 1758, + [1759] = 1759, + [1760] = 3, + [1761] = 116, + [1762] = 118, + [1763] = 120, + [1764] = 117, + [1765] = 115, + [1766] = 132, + [1767] = 131, + [1768] = 120, + [1769] = 117, [1770] = 115, - [1771] = 3, - [1772] = 204, - [1773] = 140, - [1774] = 187, - [1775] = 113, - [1776] = 461, - [1777] = 129, - [1778] = 190, - [1779] = 157, - [1780] = 113, - [1781] = 112, - [1782] = 144, - [1783] = 140, + [1771] = 1771, + [1772] = 461, + [1773] = 185, + [1774] = 111, + [1775] = 1775, + [1776] = 180, + [1777] = 113, + [1778] = 118, + [1779] = 116, + [1780] = 132, + [1781] = 141, + [1782] = 185, + [1783] = 1783, [1784] = 140, - [1785] = 129, - [1786] = 1686, - [1787] = 461, - [1788] = 140, - [1789] = 121, + [1785] = 1775, + [1786] = 113, + [1787] = 138, + [1788] = 180, + [1789] = 1789, [1790] = 110, - [1791] = 1748, - [1792] = 148, - [1793] = 123, - [1794] = 129, - [1795] = 123, - [1796] = 114, - [1797] = 478, - [1798] = 139, - [1799] = 1722, - [1800] = 1800, - [1801] = 130, - [1802] = 1802, - [1803] = 1803, - [1804] = 1804, - [1805] = 121, - [1806] = 144, - [1807] = 1661, - [1808] = 1697, - [1809] = 1740, - [1810] = 474, - [1811] = 130, - [1812] = 1672, - [1813] = 129, - [1814] = 118, - [1815] = 120, - [1816] = 116, - [1817] = 130, - [1818] = 1677, - [1819] = 119, - [1820] = 129, - [1821] = 115, - [1822] = 158, - [1823] = 121, - [1824] = 123, - [1825] = 130, - [1826] = 140, - [1827] = 139, - [1828] = 1828, - [1829] = 1800, - [1830] = 111, - [1831] = 1732, - [1832] = 121, - [1833] = 196, - [1834] = 123, - [1835] = 139, - [1836] = 1836, - [1837] = 1688, - [1838] = 139, - [1839] = 1765, - [1840] = 117, - [1841] = 478, - [1842] = 120, - [1843] = 152, - [1844] = 188, - [1845] = 191, - [1846] = 194, - [1847] = 195, - [1848] = 154, - [1849] = 201, - [1850] = 153, - [1851] = 151, - [1852] = 123, - [1853] = 121, - [1854] = 203, - [1855] = 202, - [1856] = 175, - [1857] = 3, - [1858] = 199, - [1859] = 198, - [1860] = 158, - [1861] = 147, - [1862] = 173, - [1863] = 193, - [1864] = 1803, - [1865] = 474, - [1866] = 190, - [1867] = 170, - [1868] = 160, - [1869] = 192, - [1870] = 189, - [1871] = 157, - [1872] = 187, - [1873] = 186, - [1874] = 110, - [1875] = 185, - [1876] = 146, - [1877] = 183, - [1878] = 182, - [1879] = 1804, - [1880] = 181, - [1881] = 180, + [1791] = 115, + [1792] = 117, + [1793] = 120, + [1794] = 1746, + [1795] = 1749, + [1796] = 111, + [1797] = 131, + [1798] = 132, + [1799] = 1771, + [1800] = 1711, + [1801] = 141, + [1802] = 166, + [1803] = 1706, + [1804] = 118, + [1805] = 1805, + [1806] = 114, + [1807] = 1700, + [1808] = 461, + [1809] = 1694, + [1810] = 1651, + [1811] = 201, + [1812] = 140, + [1813] = 138, + [1814] = 135, + [1815] = 119, + [1816] = 136, + [1817] = 136, + [1818] = 1818, + [1819] = 116, + [1820] = 1758, + [1821] = 112, + [1822] = 131, + [1823] = 1823, + [1824] = 1824, + [1825] = 140, + [1826] = 136, + [1827] = 135, + [1828] = 1759, + [1829] = 131, + [1830] = 132, + [1831] = 135, + [1832] = 138, + [1833] = 140, + [1834] = 131, + [1835] = 132, + [1836] = 136, + [1837] = 135, + [1838] = 138, + [1839] = 1805, + [1840] = 475, + [1841] = 471, + [1842] = 131, + [1843] = 190, + [1844] = 120, + [1845] = 176, + [1846] = 141, + [1847] = 116, + [1848] = 141, + [1849] = 197, + [1850] = 184, + [1851] = 183, + [1852] = 141, + [1853] = 187, + [1854] = 172, + [1855] = 164, + [1856] = 166, + [1857] = 146, + [1858] = 148, + [1859] = 149, + [1860] = 200, + [1861] = 201, + [1862] = 150, + [1863] = 151, + [1864] = 153, + [1865] = 185, + [1866] = 154, + [1867] = 202, + [1868] = 157, + [1869] = 158, + [1870] = 159, + [1871] = 168, + [1872] = 174, + [1873] = 179, + [1874] = 189, + [1875] = 192, + [1876] = 193, + [1877] = 475, + [1878] = 194, + [1879] = 145, + [1880] = 195, + [1881] = 140, [1882] = 117, - [1883] = 179, - [1884] = 178, - [1885] = 177, - [1886] = 113, - [1887] = 176, - [1888] = 149, - [1889] = 184, - [1890] = 174, - [1891] = 172, - [1892] = 171, - [1893] = 145, - [1894] = 169, - [1895] = 168, - [1896] = 167, - [1897] = 166, - [1898] = 165, - [1899] = 163, - [1900] = 162, - [1901] = 161, - [1902] = 196, - [1903] = 204, - [1904] = 1904, - [1905] = 159, - [1906] = 1906, - [1907] = 1907, - [1908] = 144, - [1909] = 156, - [1910] = 115, - [1911] = 140, - [1912] = 139, - [1913] = 158, - [1914] = 112, - [1915] = 144, - [1916] = 1836, - [1917] = 119, - [1918] = 144, - [1919] = 140, - [1920] = 139, - [1921] = 140, - [1922] = 139, - [1923] = 140, - [1924] = 139, - [1925] = 118, - [1926] = 148, - [1927] = 114, - [1928] = 196, - [1929] = 116, - [1930] = 111, - [1931] = 158, - [1932] = 201, - [1933] = 184, - [1934] = 174, - [1935] = 172, - [1936] = 171, - [1937] = 145, - [1938] = 169, - [1939] = 168, - [1940] = 167, - [1941] = 166, - [1942] = 165, - [1943] = 163, - [1944] = 162, - [1945] = 161, - [1946] = 130, - [1947] = 191, - [1948] = 175, - [1949] = 153, - [1950] = 152, - [1951] = 196, - [1952] = 204, - [1953] = 111, - [1954] = 147, - [1955] = 188, - [1956] = 194, - [1957] = 173, - [1958] = 160, - [1959] = 159, - [1960] = 1960, - [1961] = 110, - [1962] = 1962, - [1963] = 1963, - [1964] = 1964, - [1965] = 193, - [1966] = 140, - [1967] = 156, - [1968] = 157, - [1969] = 201, - [1970] = 151, - [1971] = 3, - [1972] = 156, - [1973] = 192, - [1974] = 1974, - [1975] = 139, - [1976] = 179, - [1977] = 196, - [1978] = 203, - [1979] = 202, - [1980] = 156, - [1981] = 144, - [1982] = 159, - [1983] = 144, - [1984] = 1984, - [1985] = 161, - [1986] = 162, - [1987] = 163, - [1988] = 165, - [1989] = 166, - [1990] = 167, - [1991] = 168, - [1992] = 169, - [1993] = 145, - [1994] = 116, - [1995] = 171, - [1996] = 117, - [1997] = 172, - [1998] = 174, - [1999] = 1999, - [2000] = 2000, - [2001] = 195, - [2002] = 185, - [2003] = 2003, - [2004] = 149, - [2005] = 2003, - [2006] = 176, - [2007] = 177, - [2008] = 184, - [2009] = 2009, - [2010] = 178, - [2011] = 149, - [2012] = 129, - [2013] = 180, - [2014] = 181, - [2015] = 198, - [2016] = 199, - [2017] = 189, - [2018] = 176, - [2019] = 3, - [2020] = 182, - [2021] = 187, - [2022] = 186, - [2023] = 202, - [2024] = 203, - [2025] = 177, - [2026] = 113, - [2027] = 170, - [2028] = 158, - [2029] = 146, - [2030] = 158, - [2031] = 178, - [2032] = 169, - [2033] = 2000, - [2034] = 195, - [2035] = 194, - [2036] = 1999, - [2037] = 1974, - [2038] = 190, - [2039] = 191, - [2040] = 188, - [2041] = 204, - [2042] = 160, - [2043] = 196, - [2044] = 192, - [2045] = 179, - [2046] = 183, - [2047] = 154, - [2048] = 180, - [2049] = 153, - [2050] = 152, - [2051] = 170, - [2052] = 181, - [2053] = 182, - [2054] = 182, - [2055] = 181, - [2056] = 183, - [2057] = 1964, - [2058] = 170, - [2059] = 1963, - [2060] = 146, - [2061] = 1962, - [2062] = 185, - [2063] = 120, - [2064] = 186, - [2065] = 119, - [2066] = 187, - [2067] = 193, - [2068] = 189, - [2069] = 173, - [2070] = 190, - [2071] = 147, - [2072] = 115, - [2073] = 175, - [2074] = 199, - [2075] = 151, - [2076] = 118, - [2077] = 151, - [2078] = 180, - [2079] = 204, - [2080] = 152, - [2081] = 198, - [2082] = 153, - [2083] = 175, - [2084] = 159, - [2085] = 154, - [2086] = 154, - [2087] = 160, - [2088] = 147, - [2089] = 168, - [2090] = 188, - [2091] = 173, - [2092] = 167, - [2093] = 193, - [2094] = 191, - [2095] = 166, - [2096] = 194, - [2097] = 190, - [2098] = 179, - [2099] = 165, - [2100] = 195, - [2101] = 163, - [2102] = 201, - [2103] = 162, + [1883] = 138, + [1884] = 198, + [1885] = 199, + [1886] = 1824, + [1887] = 204, + [1888] = 203, + [1889] = 471, + [1890] = 111, + [1891] = 140, + [1892] = 138, + [1893] = 166, + [1894] = 112, + [1895] = 1895, + [1896] = 1896, + [1897] = 1823, + [1898] = 138, + [1899] = 140, + [1900] = 1900, + [1901] = 138, + [1902] = 140, + [1903] = 169, + [1904] = 180, + [1905] = 177, + [1906] = 3, + [1907] = 119, + [1908] = 163, + [1909] = 147, + [1910] = 152, + [1911] = 155, + [1912] = 156, + [1913] = 114, + [1914] = 115, + [1915] = 160, + [1916] = 113, + [1917] = 161, + [1918] = 162, + [1919] = 165, + [1920] = 167, + [1921] = 170, + [1922] = 171, + [1923] = 132, + [1924] = 178, + [1925] = 1818, + [1926] = 186, + [1927] = 182, + [1928] = 201, + [1929] = 188, + [1930] = 118, + [1931] = 110, + [1932] = 184, + [1933] = 1933, + [1934] = 158, + [1935] = 159, + [1936] = 168, + [1937] = 174, + [1938] = 179, + [1939] = 189, + [1940] = 192, + [1941] = 193, + [1942] = 194, + [1943] = 145, + [1944] = 195, + [1945] = 198, + [1946] = 199, + [1947] = 150, + [1948] = 149, + [1949] = 148, + [1950] = 146, + [1951] = 164, + [1952] = 172, + [1953] = 183, + [1954] = 184, + [1955] = 203, + [1956] = 197, + [1957] = 178, + [1958] = 182, + [1959] = 203, + [1960] = 186, + [1961] = 188, + [1962] = 176, + [1963] = 141, + [1964] = 110, + [1965] = 1965, + [1966] = 132, + [1967] = 187, + [1968] = 1968, + [1969] = 114, + [1970] = 138, + [1971] = 1933, + [1972] = 189, + [1973] = 1973, + [1974] = 154, + [1975] = 1975, + [1976] = 140, + [1977] = 1977, + [1978] = 1978, + [1979] = 160, + [1980] = 1980, + [1981] = 189, + [1982] = 153, + [1983] = 131, + [1984] = 151, + [1985] = 150, + [1986] = 149, + [1987] = 148, + [1988] = 146, + [1989] = 164, + [1990] = 172, + [1991] = 183, + [1992] = 156, + [1993] = 197, + [1994] = 151, + [1995] = 153, + [1996] = 154, + [1997] = 112, + [1998] = 157, + [1999] = 158, + [2000] = 185, + [2001] = 159, + [2002] = 168, + [2003] = 174, + [2004] = 179, + [2005] = 169, + [2006] = 177, + [2007] = 201, + [2008] = 162, + [2009] = 192, + [2010] = 136, + [2011] = 174, + [2012] = 193, + [2013] = 194, + [2014] = 145, + [2015] = 195, + [2016] = 198, + [2017] = 199, + [2018] = 187, + [2019] = 168, + [2020] = 159, + [2021] = 158, + [2022] = 176, + [2023] = 204, + [2024] = 1965, + [2025] = 115, + [2026] = 157, + [2027] = 1975, + [2028] = 1968, + [2029] = 1977, + [2030] = 154, + [2031] = 1978, + [2032] = 202, + [2033] = 157, + [2034] = 201, + [2035] = 167, + [2036] = 169, + [2037] = 177, + [2038] = 200, + [2039] = 165, + [2040] = 192, + [2041] = 153, + [2042] = 190, + [2043] = 163, + [2044] = 163, + [2045] = 147, + [2046] = 147, + [2047] = 1980, + [2048] = 204, + [2049] = 151, + [2050] = 176, + [2051] = 204, + [2052] = 171, + [2053] = 152, + [2054] = 166, + [2055] = 155, + [2056] = 156, + [2057] = 198, + [2058] = 200, + [2059] = 203, + [2060] = 160, + [2061] = 161, + [2062] = 170, + [2063] = 162, + [2064] = 150, + [2065] = 149, + [2066] = 1973, + [2067] = 2067, + [2068] = 165, + [2069] = 148, + [2070] = 167, + [2071] = 170, + [2072] = 146, + [2073] = 164, + [2074] = 202, + [2075] = 166, + [2076] = 193, + [2077] = 187, + [2078] = 172, + [2079] = 118, + [2080] = 183, + [2081] = 3, + [2082] = 199, + [2083] = 184, + [2084] = 197, + [2085] = 170, + [2086] = 188, + [2087] = 162, + [2088] = 179, + [2089] = 186, + [2090] = 161, + [2091] = 145, + [2092] = 166, + [2093] = 182, + [2094] = 200, + [2095] = 201, + [2096] = 3, + [2097] = 167, + [2098] = 171, + [2099] = 195, + [2100] = 178, + [2101] = 194, + [2102] = 116, + [2103] = 190, [2104] = 178, - [2105] = 161, - [2106] = 177, - [2107] = 203, - [2108] = 202, - [2109] = 176, - [2110] = 149, - [2111] = 190, - [2112] = 184, - [2113] = 199, - [2114] = 183, - [2115] = 198, - [2116] = 146, - [2117] = 112, - [2118] = 185, - [2119] = 174, - [2120] = 186, - [2121] = 172, - [2122] = 187, - [2123] = 148, - [2124] = 192, - [2125] = 189, - [2126] = 114, - [2127] = 123, - [2128] = 1960, - [2129] = 121, - [2130] = 171, - [2131] = 145, - [2132] = 130, + [2105] = 165, + [2106] = 113, + [2107] = 171, + [2108] = 180, + [2109] = 182, + [2110] = 111, + [2111] = 169, + [2112] = 186, + [2113] = 177, + [2114] = 188, + [2115] = 190, + [2116] = 141, + [2117] = 163, + [2118] = 190, + [2119] = 147, + [2120] = 120, + [2121] = 152, + [2122] = 117, + [2123] = 119, + [2124] = 152, + [2125] = 202, + [2126] = 155, + [2127] = 135, + [2128] = 155, + [2129] = 2129, + [2130] = 156, + [2131] = 160, + [2132] = 161, [2133] = 2133, [2134] = 2134, [2135] = 2135, @@ -6142,573 +6177,573 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2138] = 2138, [2139] = 2139, [2140] = 2140, - [2141] = 2141, + [2141] = 161, [2142] = 2142, [2143] = 2143, - [2144] = 2144, + [2144] = 156, [2145] = 2145, [2146] = 2146, [2147] = 2147, - [2148] = 151, - [2149] = 140, - [2150] = 175, - [2151] = 2151, - [2152] = 204, - [2153] = 147, - [2154] = 139, - [2155] = 2155, - [2156] = 173, - [2157] = 2157, - [2158] = 739, + [2148] = 2148, + [2149] = 2129, + [2150] = 162, + [2151] = 187, + [2152] = 140, + [2153] = 176, + [2154] = 197, + [2155] = 184, + [2156] = 2156, + [2157] = 183, + [2158] = 172, [2159] = 2159, - [2160] = 2160, - [2161] = 2161, - [2162] = 1984, + [2160] = 164, + [2161] = 146, + [2162] = 202, [2163] = 2163, - [2164] = 193, + [2164] = 165, [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, + [2166] = 148, + [2167] = 149, + [2168] = 150, + [2169] = 136, [2170] = 2170, - [2171] = 2171, - [2172] = 152, + [2171] = 167, + [2172] = 135, [2173] = 2173, [2174] = 2174, - [2175] = 2175, + [2175] = 170, [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2179, - [2180] = 2180, - [2181] = 2181, - [2182] = 2182, + [2177] = 151, + [2178] = 153, + [2179] = 154, + [2180] = 157, + [2181] = 158, + [2182] = 159, [2183] = 2183, - [2184] = 2184, - [2185] = 2185, + [2184] = 168, + [2185] = 174, [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 155, [2189] = 2189, - [2190] = 2190, - [2191] = 2191, - [2192] = 2192, - [2193] = 2193, - [2194] = 2194, + [2190] = 179, + [2191] = 189, + [2192] = 171, + [2193] = 192, + [2194] = 193, [2195] = 2195, [2196] = 2196, [2197] = 2197, - [2198] = 2198, - [2199] = 196, - [2200] = 129, - [2201] = 146, + [2198] = 194, + [2199] = 145, + [2200] = 152, + [2201] = 178, [2202] = 2202, - [2203] = 156, - [2204] = 159, - [2205] = 161, - [2206] = 162, - [2207] = 163, - [2208] = 165, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 166, + [2211] = 2211, [2212] = 2212, - [2213] = 167, + [2213] = 2213, [2214] = 2214, - [2215] = 168, + [2215] = 2215, [2216] = 2216, - [2217] = 169, + [2217] = 2217, [2218] = 2218, - [2219] = 145, + [2219] = 2219, [2220] = 2220, - [2221] = 171, + [2221] = 2221, [2222] = 2222, - [2223] = 172, + [2223] = 198, [2224] = 2224, - [2225] = 174, + [2225] = 2225, [2226] = 2226, - [2227] = 184, - [2228] = 2228, + [2227] = 199, + [2228] = 147, [2229] = 2229, - [2230] = 2230, - [2231] = 149, - [2232] = 2232, - [2233] = 2233, + [2230] = 740, + [2231] = 2231, + [2232] = 163, + [2233] = 200, [2234] = 2234, - [2235] = 176, + [2235] = 2235, [2236] = 2236, - [2237] = 177, + [2237] = 2237, [2238] = 2238, - [2239] = 178, + [2239] = 2239, [2240] = 2240, [2241] = 2241, [2242] = 2242, - [2243] = 179, - [2244] = 180, + [2243] = 2243, + [2244] = 2244, [2245] = 2245, - [2246] = 181, - [2247] = 2247, - [2248] = 182, + [2246] = 2246, + [2247] = 201, + [2248] = 177, [2249] = 2249, - [2250] = 183, + [2250] = 2250, [2251] = 2251, - [2252] = 185, - [2253] = 186, - [2254] = 187, - [2255] = 189, - [2256] = 2256, - [2257] = 198, + [2252] = 2252, + [2253] = 169, + [2254] = 2254, + [2255] = 204, + [2256] = 182, + [2257] = 141, [2258] = 2258, - [2259] = 199, - [2260] = 202, - [2261] = 203, - [2262] = 201, + [2259] = 2259, + [2260] = 2260, + [2261] = 195, + [2262] = 138, [2263] = 2263, - [2264] = 195, + [2264] = 203, [2265] = 2265, - [2266] = 194, + [2266] = 160, [2267] = 2267, - [2268] = 191, - [2269] = 188, - [2270] = 160, - [2271] = 144, - [2272] = 192, - [2273] = 2273, - [2274] = 158, + [2268] = 188, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 186, + [2274] = 2274, [2275] = 2275, - [2276] = 170, - [2277] = 154, - [2278] = 153, - [2279] = 2234, - [2280] = 2141, - [2281] = 189, - [2282] = 194, - [2283] = 195, - [2284] = 170, - [2285] = 2184, - [2286] = 2185, - [2287] = 2174, - [2288] = 2187, - [2289] = 2176, - [2290] = 2189, - [2291] = 2168, - [2292] = 2151, - [2293] = 175, - [2294] = 167, - [2295] = 2191, - [2296] = 2182, - [2297] = 2193, - [2298] = 2298, - [2299] = 2183, - [2300] = 2166, - [2301] = 2195, - [2302] = 2165, - [2303] = 2155, - [2304] = 2197, - [2305] = 2133, - [2306] = 2134, - [2307] = 2135, - [2308] = 2136, - [2309] = 2137, - [2310] = 508, - [2311] = 2138, - [2312] = 2139, - [2313] = 2313, - [2314] = 2314, - [2315] = 203, - [2316] = 153, - [2317] = 202, - [2318] = 193, - [2319] = 156, - [2320] = 2140, + [2276] = 2276, + [2277] = 166, + [2278] = 2278, + [2279] = 2279, + [2280] = 2217, + [2281] = 2275, + [2282] = 2173, + [2283] = 2174, + [2284] = 2271, + [2285] = 2235, + [2286] = 2134, + [2287] = 2159, + [2288] = 2236, + [2289] = 165, + [2290] = 178, + [2291] = 2214, + [2292] = 176, + [2293] = 2207, + [2294] = 2176, + [2295] = 2206, + [2296] = 152, + [2297] = 2219, + [2298] = 2163, + [2299] = 2135, + [2300] = 2249, + [2301] = 2237, + [2302] = 2136, + [2303] = 2216, + [2304] = 2137, + [2305] = 167, + [2306] = 201, + [2307] = 2205, + [2308] = 170, + [2309] = 2226, + [2310] = 184, + [2311] = 2238, + [2312] = 2204, + [2313] = 2202, + [2314] = 183, + [2315] = 2244, + [2316] = 172, + [2317] = 2246, + [2318] = 2197, + [2319] = 164, + [2320] = 2225, [2321] = 169, - [2322] = 2170, - [2323] = 196, - [2324] = 204, - [2325] = 2275, - [2326] = 152, - [2327] = 2273, - [2328] = 2267, - [2329] = 191, - [2330] = 2265, - [2331] = 145, - [2332] = 2263, - [2333] = 2178, - [2334] = 171, - [2335] = 172, - [2336] = 174, - [2337] = 201, - [2338] = 2258, - [2339] = 184, - [2340] = 159, - [2341] = 149, - [2342] = 2251, - [2343] = 2233, - [2344] = 176, - [2345] = 177, - [2346] = 178, - [2347] = 179, - [2348] = 180, - [2349] = 181, - [2350] = 2249, - [2351] = 182, - [2352] = 2247, - [2353] = 2198, - [2354] = 2245, - [2355] = 2242, - [2356] = 183, - [2357] = 2229, - [2358] = 2240, - [2359] = 2238, - [2360] = 188, - [2361] = 2236, - [2362] = 161, - [2363] = 168, - [2364] = 162, - [2365] = 163, - [2366] = 165, - [2367] = 160, - [2368] = 2232, - [2369] = 166, - [2370] = 2230, - [2371] = 2228, - [2372] = 146, - [2373] = 185, - [2374] = 2226, - [2375] = 2224, - [2376] = 2222, - [2377] = 2142, - [2378] = 186, - [2379] = 2220, - [2380] = 2218, - [2381] = 2216, - [2382] = 2214, - [2383] = 2212, - [2384] = 2143, - [2385] = 187, - [2386] = 151, - [2387] = 154, - [2388] = 2210, - [2389] = 2209, - [2390] = 2144, - [2391] = 2145, - [2392] = 147, - [2393] = 2146, - [2394] = 2147, - [2395] = 173, - [2396] = 2157, - [2397] = 192, - [2398] = 2159, - [2399] = 2161, - [2400] = 2163, - [2401] = 2196, - [2402] = 2194, - [2403] = 2192, - [2404] = 190, - [2405] = 2190, - [2406] = 2241, - [2407] = 199, - [2408] = 198, - [2409] = 2167, - [2410] = 2188, - [2411] = 2186, - [2412] = 158, - [2413] = 2181, - [2414] = 2256, - [2415] = 2180, - [2416] = 2169, - [2417] = 2171, - [2418] = 2179, - [2419] = 2173, - [2420] = 2175, - [2421] = 2177, - [2422] = 2422, - [2423] = 156, - [2424] = 201, - [2425] = 161, - [2426] = 195, - [2427] = 194, - [2428] = 203, - [2429] = 162, - [2430] = 202, - [2431] = 191, - [2432] = 188, - [2433] = 160, - [2434] = 163, - [2435] = 2435, - [2436] = 199, - [2437] = 165, - [2438] = 154, - [2439] = 198, - [2440] = 153, - [2441] = 152, - [2442] = 166, - [2443] = 2443, - [2444] = 167, - [2445] = 158, - [2446] = 168, - [2447] = 169, - [2448] = 145, - [2449] = 171, - [2450] = 2450, - [2451] = 185, - [2452] = 204, - [2453] = 184, - [2454] = 149, - [2455] = 176, - [2456] = 177, - [2457] = 2457, - [2458] = 178, - [2459] = 179, - [2460] = 2460, - [2461] = 189, - [2462] = 172, - [2463] = 190, - [2464] = 180, - [2465] = 174, - [2466] = 196, - [2467] = 181, - [2468] = 151, - [2469] = 182, - [2470] = 183, - [2471] = 146, - [2472] = 175, - [2473] = 192, - [2474] = 159, - [2475] = 147, - [2476] = 187, - [2477] = 173, - [2478] = 193, - [2479] = 170, - [2480] = 186, - [2481] = 2481, - [2482] = 2481, + [2322] = 146, + [2323] = 2133, + [2324] = 2196, + [2325] = 2195, + [2326] = 177, + [2327] = 190, + [2328] = 2224, + [2329] = 187, + [2330] = 148, + [2331] = 163, + [2332] = 2221, + [2333] = 2208, + [2334] = 2250, + [2335] = 2203, + [2336] = 2189, + [2337] = 2187, + [2338] = 202, + [2339] = 200, + [2340] = 2251, + [2341] = 2239, + [2342] = 2170, + [2343] = 2259, + [2344] = 2139, + [2345] = 2263, + [2346] = 198, + [2347] = 2145, + [2348] = 2265, + [2349] = 2146, + [2350] = 2140, + [2351] = 2209, + [2352] = 2165, + [2353] = 2142, + [2354] = 518, + [2355] = 2269, + [2356] = 2211, + [2357] = 2240, + [2358] = 197, + [2359] = 2143, + [2360] = 149, + [2361] = 2147, + [2362] = 150, + [2363] = 2260, + [2364] = 2148, + [2365] = 155, + [2366] = 151, + [2367] = 156, + [2368] = 2186, + [2369] = 2369, + [2370] = 153, + [2371] = 147, + [2372] = 160, + [2373] = 2258, + [2374] = 2210, + [2375] = 2270, + [2376] = 2267, + [2377] = 2212, + [2378] = 154, + [2379] = 157, + [2380] = 158, + [2381] = 2215, + [2382] = 2382, + [2383] = 188, + [2384] = 2384, + [2385] = 2254, + [2386] = 161, + [2387] = 2156, + [2388] = 186, + [2389] = 2218, + [2390] = 2220, + [2391] = 171, + [2392] = 2222, + [2393] = 199, + [2394] = 2234, + [2395] = 2241, + [2396] = 162, + [2397] = 195, + [2398] = 203, + [2399] = 145, + [2400] = 2242, + [2401] = 194, + [2402] = 2213, + [2403] = 193, + [2404] = 2243, + [2405] = 192, + [2406] = 2231, + [2407] = 166, + [2408] = 189, + [2409] = 182, + [2410] = 179, + [2411] = 2279, + [2412] = 2278, + [2413] = 2272, + [2414] = 174, + [2415] = 2276, + [2416] = 2138, + [2417] = 2274, + [2418] = 168, + [2419] = 2245, + [2420] = 159, + [2421] = 204, + [2422] = 2252, + [2423] = 182, + [2424] = 154, + [2425] = 2425, + [2426] = 166, + [2427] = 202, + [2428] = 176, + [2429] = 169, + [2430] = 177, + [2431] = 187, + [2432] = 197, + [2433] = 184, + [2434] = 183, + [2435] = 172, + [2436] = 164, + [2437] = 163, + [2438] = 147, + [2439] = 146, + [2440] = 148, + [2441] = 2441, + [2442] = 149, + [2443] = 188, + [2444] = 190, + [2445] = 152, + [2446] = 150, + [2447] = 155, + [2448] = 156, + [2449] = 2449, + [2450] = 186, + [2451] = 151, + [2452] = 160, + [2453] = 161, + [2454] = 162, + [2455] = 2455, + [2456] = 200, + [2457] = 204, + [2458] = 153, + [2459] = 157, + [2460] = 158, + [2461] = 167, + [2462] = 170, + [2463] = 178, + [2464] = 2464, + [2465] = 159, + [2466] = 168, + [2467] = 201, + [2468] = 174, + [2469] = 203, + [2470] = 171, + [2471] = 165, + [2472] = 179, + [2473] = 189, + [2474] = 192, + [2475] = 2475, + [2476] = 193, + [2477] = 194, + [2478] = 145, + [2479] = 195, + [2480] = 199, + [2481] = 198, + [2482] = 2482, [2483] = 2483, - [2484] = 918, - [2485] = 461, + [2484] = 2484, + [2485] = 2484, [2486] = 2486, - [2487] = 2487, - [2488] = 2487, - [2489] = 478, + [2487] = 2483, + [2488] = 461, + [2489] = 943, [2490] = 2490, - [2491] = 474, - [2492] = 2490, - [2493] = 130, - [2494] = 190, - [2495] = 129, - [2496] = 2496, + [2491] = 475, + [2492] = 2492, + [2493] = 471, + [2494] = 2492, + [2495] = 136, + [2496] = 135, [2497] = 2497, [2498] = 2498, - [2499] = 2498, + [2499] = 190, [2500] = 2500, - [2501] = 2501, - [2502] = 2500, + [2501] = 2500, + [2502] = 2502, [2503] = 2503, [2504] = 2504, - [2505] = 2505, + [2505] = 2503, [2506] = 2503, - [2507] = 2507, - [2508] = 2503, - [2509] = 2509, - [2510] = 2504, + [2507] = 2502, + [2508] = 2508, + [2509] = 2504, + [2510] = 2510, [2511] = 2504, - [2512] = 2500, - [2513] = 2507, - [2514] = 2514, - [2515] = 2507, - [2516] = 2516, - [2517] = 1504, - [2518] = 1506, + [2512] = 2512, + [2513] = 2513, + [2514] = 2510, + [2515] = 2515, + [2516] = 2510, + [2517] = 2502, + [2518] = 2518, [2519] = 2519, [2520] = 2520, - [2521] = 2521, - [2522] = 2521, - [2523] = 2521, + [2521] = 1508, + [2522] = 1507, + [2523] = 2523, [2524] = 2524, - [2525] = 2525, - [2526] = 2526, + [2525] = 1524, + [2526] = 1523, [2527] = 2527, - [2528] = 1563, + [2528] = 2528, [2529] = 2527, - [2530] = 2521, - [2531] = 2531, + [2530] = 2530, + [2531] = 2524, [2532] = 2532, - [2533] = 2527, - [2534] = 2534, - [2535] = 2535, - [2536] = 2536, + [2533] = 2530, + [2534] = 2524, + [2535] = 2530, + [2536] = 1549, [2537] = 2537, - [2538] = 2531, + [2538] = 1789, [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 1828, - [2543] = 2531, - [2544] = 2521, - [2545] = 2521, + [2540] = 2527, + [2541] = 2524, + [2542] = 2530, + [2543] = 2528, + [2544] = 2527, + [2545] = 2545, [2546] = 2527, - [2547] = 2547, - [2548] = 2527, - [2549] = 2527, - [2550] = 2521, - [2551] = 2521, - [2552] = 2531, - [2553] = 2532, - [2554] = 2521, - [2555] = 2531, - [2556] = 2527, - [2557] = 1557, - [2558] = 2531, - [2559] = 2521, + [2547] = 2527, + [2548] = 2530, + [2549] = 2524, + [2550] = 2530, + [2551] = 2524, + [2552] = 2552, + [2553] = 2524, + [2554] = 2530, + [2555] = 2527, + [2556] = 2532, + [2557] = 2557, + [2558] = 2558, + [2559] = 2559, [2560] = 2527, - [2561] = 1533, - [2562] = 2527, - [2563] = 2563, + [2561] = 2530, + [2562] = 2552, + [2563] = 2524, [2564] = 2564, - [2565] = 2521, - [2566] = 2527, - [2567] = 2521, - [2568] = 2568, - [2569] = 2569, - [2570] = 2531, - [2571] = 2531, - [2572] = 2531, - [2573] = 2563, - [2574] = 2531, - [2575] = 2527, - [2576] = 2527, - [2577] = 2521, - [2578] = 2527, - [2579] = 2521, - [2580] = 2531, - [2581] = 2581, - [2582] = 2582, - [2583] = 2547, + [2565] = 2565, + [2566] = 2566, + [2567] = 2566, + [2568] = 2527, + [2569] = 2527, + [2570] = 2530, + [2571] = 2524, + [2572] = 2530, + [2573] = 2527, + [2574] = 2530, + [2575] = 2524, + [2576] = 1548, + [2577] = 2524, + [2578] = 2578, + [2579] = 1541, + [2580] = 2524, + [2581] = 2530, + [2582] = 2527, + [2583] = 2524, [2584] = 2527, - [2585] = 2527, - [2586] = 2531, - [2587] = 2531, - [2588] = 2531, - [2589] = 2531, - [2590] = 1530, - [2591] = 2524, - [2592] = 1525, - [2593] = 2531, - [2594] = 2527, + [2585] = 2530, + [2586] = 2524, + [2587] = 2527, + [2588] = 2588, + [2589] = 2527, + [2590] = 2527, + [2591] = 2530, + [2592] = 2524, + [2593] = 2593, + [2594] = 2594, [2595] = 2595, - [2596] = 1828, - [2597] = 2597, - [2598] = 522, + [2596] = 2524, + [2597] = 1789, + [2598] = 509, [2599] = 516, - [2600] = 516, - [2601] = 522, - [2602] = 2602, - [2603] = 2603, + [2600] = 2600, + [2601] = 2601, + [2602] = 509, + [2603] = 516, [2604] = 2604, [2605] = 2605, [2606] = 2606, [2607] = 2607, - [2608] = 2608, + [2608] = 2606, [2609] = 2609, [2610] = 2610, [2611] = 2611, - [2612] = 2612, + [2612] = 2606, [2613] = 2613, - [2614] = 2614, - [2615] = 2603, - [2616] = 2603, - [2617] = 2617, - [2618] = 2618, + [2614] = 2606, + [2615] = 2606, + [2616] = 2616, + [2617] = 2606, + [2618] = 2606, [2619] = 2619, [2620] = 2620, - [2621] = 2603, - [2622] = 2603, - [2623] = 2603, + [2621] = 2621, + [2622] = 2622, + [2623] = 2623, [2624] = 2624, - [2625] = 2608, + [2625] = 2625, [2626] = 2626, [2627] = 2627, [2628] = 2628, - [2629] = 2603, + [2629] = 2606, [2630] = 2630, - [2631] = 2603, - [2632] = 2603, - [2633] = 2603, - [2634] = 2603, + [2631] = 2631, + [2632] = 2606, + [2633] = 2606, + [2634] = 2634, [2635] = 2635, - [2636] = 2603, - [2637] = 2603, - [2638] = 2638, + [2636] = 2636, + [2637] = 2637, + [2638] = 2606, [2639] = 2639, [2640] = 2640, - [2641] = 2641, - [2642] = 2603, + [2641] = 2623, + [2642] = 2642, [2643] = 2643, - [2644] = 2644, + [2644] = 2606, [2645] = 2645, - [2646] = 2646, + [2646] = 2606, [2647] = 2647, - [2648] = 2603, - [2649] = 2630, + [2648] = 2648, + [2649] = 2606, [2650] = 2606, - [2651] = 2651, - [2652] = 2603, - [2653] = 2607, - [2654] = 2654, + [2651] = 2640, + [2652] = 2606, + [2653] = 2653, + [2654] = 2625, [2655] = 2655, - [2656] = 2656, + [2656] = 2606, [2657] = 2657, - [2658] = 2603, + [2658] = 2658, [2659] = 2659, - [2660] = 2603, - [2661] = 2661, + [2660] = 2642, + [2661] = 2606, [2662] = 2662, - [2663] = 2609, - [2664] = 2618, - [2665] = 2665, - [2666] = 2613, - [2667] = 2614, - [2668] = 2612, - [2669] = 2657, - [2670] = 2645, - [2671] = 2611, + [2663] = 2663, + [2664] = 2657, + [2665] = 2655, + [2666] = 2666, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2613, + [2671] = 2610, [2672] = 2672, - [2673] = 2673, - [2674] = 2610, - [2675] = 2675, - [2676] = 2602, + [2673] = 2666, + [2674] = 2634, + [2675] = 2609, + [2676] = 2653, [2677] = 2677, - [2678] = 2605, - [2679] = 2651, - [2680] = 2641, - [2681] = 2655, - [2682] = 2628, - [2683] = 2656, - [2684] = 2639, - [2685] = 2626, - [2686] = 2617, + [2678] = 2678, + [2679] = 2658, + [2680] = 2645, + [2681] = 2681, + [2682] = 2627, + [2683] = 2639, + [2684] = 2637, + [2685] = 2685, + [2686] = 2621, [2687] = 2687, - [2688] = 2688, - [2689] = 2647, - [2690] = 2690, + [2688] = 2672, + [2689] = 2605, + [2690] = 2616, [2691] = 2691, - [2692] = 2692, - [2693] = 2693, - [2694] = 2694, + [2692] = 2647, + [2693] = 2648, + [2694] = 2636, [2695] = 2620, - [2696] = 2696, - [2697] = 2604, - [2698] = 461, - [2699] = 2696, - [2700] = 2624, - [2701] = 2638, - [2702] = 2635, - [2703] = 2619, - [2704] = 2627, - [2705] = 2675, - [2706] = 2706, - [2707] = 2707, + [2696] = 2630, + [2697] = 2697, + [2698] = 2622, + [2699] = 2635, + [2700] = 2659, + [2701] = 2701, + [2702] = 2604, + [2703] = 2624, + [2704] = 2704, + [2705] = 2631, + [2706] = 461, + [2707] = 2628, [2708] = 2708, [2709] = 2709, [2710] = 2710, @@ -6722,893 +6757,914 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2718] = 2718, [2719] = 2719, [2720] = 2720, - [2721] = 2721, + [2721] = 471, [2722] = 2722, - [2723] = 2712, + [2723] = 461, [2724] = 2724, [2725] = 2725, [2726] = 2726, [2727] = 2727, - [2728] = 2715, - [2729] = 2729, - [2730] = 2711, - [2731] = 2707, - [2732] = 2732, + [2728] = 2728, + [2729] = 2726, + [2730] = 2730, + [2731] = 2714, + [2732] = 2715, [2733] = 2733, - [2734] = 461, - [2735] = 2735, + [2734] = 2717, + [2735] = 2711, [2736] = 2736, [2737] = 2737, - [2738] = 2717, + [2738] = 2738, [2739] = 2739, - [2740] = 2740, - [2741] = 474, - [2742] = 2716, - [2743] = 2732, - [2744] = 2744, - [2745] = 2745, - [2746] = 2746, - [2747] = 2747, - [2748] = 478, - [2749] = 2714, - [2750] = 2726, - [2751] = 117, - [2752] = 2744, - [2753] = 2745, + [2740] = 115, + [2741] = 2741, + [2742] = 2718, + [2743] = 2725, + [2744] = 2738, + [2745] = 2716, + [2746] = 2741, + [2747] = 2709, + [2748] = 2748, + [2749] = 2720, + [2750] = 117, + [2751] = 2751, + [2752] = 2708, + [2753] = 2728, [2754] = 2727, - [2755] = 2755, - [2756] = 110, - [2757] = 2735, - [2758] = 2737, + [2755] = 475, + [2756] = 2756, + [2757] = 2757, + [2758] = 2751, [2759] = 2759, - [2760] = 2760, - [2761] = 2761, - [2762] = 116, - [2763] = 2761, - [2764] = 2764, + [2760] = 2756, + [2761] = 2730, + [2762] = 2762, + [2763] = 2763, + [2764] = 2759, [2765] = 2765, - [2766] = 2713, - [2767] = 2746, - [2768] = 2710, - [2769] = 2747, - [2770] = 2764, - [2771] = 2755, - [2772] = 2759, - [2773] = 2708, - [2774] = 2709, - [2775] = 2775, - [2776] = 2776, - [2777] = 461, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 120, + [2771] = 2771, + [2772] = 2710, + [2773] = 2748, + [2774] = 2771, + [2775] = 2737, + [2776] = 2736, + [2777] = 190, [2778] = 2778, - [2779] = 130, - [2780] = 2780, + [2779] = 2779, + [2780] = 2779, [2781] = 2778, [2782] = 2782, - [2783] = 129, + [2783] = 2778, [2784] = 2784, [2785] = 2785, - [2786] = 2786, - [2787] = 2778, + [2786] = 136, + [2787] = 2779, [2788] = 2788, - [2789] = 2775, - [2790] = 2790, + [2789] = 135, + [2790] = 461, [2791] = 2778, - [2792] = 2778, - [2793] = 2775, - [2794] = 2775, - [2795] = 2778, + [2792] = 2792, + [2793] = 2779, + [2794] = 2794, + [2795] = 2795, [2796] = 2778, - [2797] = 2775, - [2798] = 2798, - [2799] = 388, - [2800] = 2778, - [2801] = 2798, - [2802] = 2775, + [2797] = 2797, + [2798] = 2778, + [2799] = 2779, + [2800] = 2800, + [2801] = 2801, + [2802] = 2779, [2803] = 2803, - [2804] = 2775, + [2804] = 2804, [2805] = 2778, - [2806] = 2778, - [2807] = 2807, + [2806] = 2806, + [2807] = 461, [2808] = 2808, - [2809] = 2778, - [2810] = 2775, + [2809] = 389, + [2810] = 2810, [2811] = 2811, [2812] = 2812, - [2813] = 190, + [2813] = 2779, [2814] = 2814, - [2815] = 474, - [2816] = 2778, - [2817] = 2775, - [2818] = 2818, - [2819] = 2819, - [2820] = 2775, - [2821] = 2775, - [2822] = 478, - [2823] = 461, - [2824] = 2819, - [2825] = 2825, + [2815] = 2779, + [2816] = 2779, + [2817] = 2800, + [2818] = 2778, + [2819] = 2778, + [2820] = 2820, + [2821] = 2779, + [2822] = 2779, + [2823] = 2823, + [2824] = 475, + [2825] = 2778, [2826] = 2778, - [2827] = 2827, - [2828] = 2775, - [2829] = 2775, - [2830] = 2775, - [2831] = 2775, - [2832] = 2778, - [2833] = 2778, - [2834] = 2778, - [2835] = 2835, - [2836] = 2836, - [2837] = 2837, - [2838] = 2838, + [2827] = 2779, + [2828] = 2778, + [2829] = 2779, + [2830] = 471, + [2831] = 2778, + [2832] = 2832, + [2833] = 2833, + [2834] = 2834, + [2835] = 2778, + [2836] = 2779, + [2837] = 2823, + [2838] = 2779, [2839] = 2839, - [2840] = 2808, - [2841] = 2775, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2786, + [2840] = 2778, + [2841] = 2778, + [2842] = 2820, + [2843] = 2779, + [2844] = 475, + [2845] = 2845, [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2847, - [2850] = 2846, - [2851] = 2848, - [2852] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, [2853] = 2853, - [2854] = 2784, + [2854] = 2854, [2855] = 2855, [2856] = 2856, - [2857] = 2846, + [2857] = 2857, [2858] = 2858, - [2859] = 2847, - [2860] = 2843, - [2861] = 2848, - [2862] = 2847, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, [2863] = 2863, - [2864] = 2843, + [2864] = 2864, [2865] = 2865, - [2866] = 2848, + [2866] = 2866, [2867] = 2867, [2868] = 2868, [2869] = 2869, - [2870] = 2788, - [2871] = 2846, - [2872] = 2843, - [2873] = 2843, + [2870] = 2870, + [2871] = 2858, + [2872] = 2872, + [2873] = 2873, [2874] = 2874, - [2875] = 2875, - [2876] = 2876, - [2877] = 2848, - [2878] = 2847, - [2879] = 2879, - [2880] = 2846, + [2875] = 2803, + [2876] = 2862, + [2877] = 2863, + [2878] = 2878, + [2879] = 2864, + [2880] = 2795, [2881] = 2881, [2882] = 2882, - [2883] = 2883, - [2884] = 2843, - [2885] = 2885, - [2886] = 2846, + [2883] = 2792, + [2884] = 2884, + [2885] = 2872, + [2886] = 2886, [2887] = 2887, - [2888] = 2848, + [2888] = 2888, [2889] = 2889, - [2890] = 2847, - [2891] = 2847, - [2892] = 2847, - [2893] = 2846, - [2894] = 2843, - [2895] = 2847, - [2896] = 2896, - [2897] = 2848, - [2898] = 2847, - [2899] = 2848, - [2900] = 2846, - [2901] = 2901, - [2902] = 2843, - [2903] = 2903, - [2904] = 2848, - [2905] = 2843, - [2906] = 2847, - [2907] = 2846, - [2908] = 2908, - [2909] = 2847, - [2910] = 2846, - [2911] = 2846, - [2912] = 2847, - [2913] = 2913, - [2914] = 2846, - [2915] = 2915, - [2916] = 2847, - [2917] = 2846, - [2918] = 2847, + [2890] = 616, + [2891] = 2891, + [2892] = 618, + [2893] = 2893, + [2894] = 2891, + [2895] = 2891, + [2896] = 2891, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2891, + [2902] = 2891, + [2903] = 2891, + [2904] = 2891, + [2905] = 2891, + [2906] = 2891, + [2907] = 2858, + [2908] = 2891, + [2909] = 2909, + [2910] = 2858, + [2911] = 2911, + [2912] = 2891, + [2913] = 2891, + [2914] = 2858, + [2915] = 2891, + [2916] = 2858, + [2917] = 2891, + [2918] = 461, [2919] = 2919, - [2920] = 2920, - [2921] = 2846, - [2922] = 2847, + [2920] = 2858, + [2921] = 2891, + [2922] = 2858, [2923] = 2923, - [2924] = 2847, - [2925] = 2846, - [2926] = 2848, - [2927] = 2927, - [2928] = 2847, - [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 2847, - [2933] = 2843, - [2934] = 2847, - [2935] = 2935, - [2936] = 2847, - [2937] = 2937, - [2938] = 2847, - [2939] = 2939, - [2940] = 2847, - [2941] = 2941, - [2942] = 2847, + [2924] = 2891, + [2925] = 2909, + [2926] = 2872, + [2927] = 2858, + [2928] = 2928, + [2929] = 2891, + [2930] = 2909, + [2931] = 2872, + [2932] = 481, + [2933] = 2858, + [2934] = 2891, + [2935] = 2909, + [2936] = 2872, + [2937] = 2858, + [2938] = 2938, + [2939] = 2891, + [2940] = 2909, + [2941] = 2872, + [2942] = 2858, [2943] = 2943, - [2944] = 2846, + [2944] = 2944, [2945] = 2945, [2946] = 2946, - [2947] = 2947, - [2948] = 2847, + [2947] = 2857, + [2948] = 2846, [2949] = 2949, - [2950] = 2856, + [2950] = 2950, [2951] = 2951, - [2952] = 2790, - [2953] = 602, - [2954] = 2847, + [2952] = 2952, + [2953] = 2953, + [2954] = 2891, [2955] = 2955, [2956] = 2956, - [2957] = 603, + [2957] = 2957, [2958] = 2958, - [2959] = 2959, - [2960] = 2960, - [2961] = 2961, - [2962] = 2867, + [2959] = 2909, + [2960] = 2872, + [2961] = 2858, + [2962] = 2962, [2963] = 2963, [2964] = 2964, - [2965] = 2847, + [2965] = 2810, [2966] = 2966, [2967] = 2967, - [2968] = 2848, + [2968] = 2891, [2969] = 2969, [2970] = 2970, - [2971] = 115, - [2972] = 118, - [2973] = 2973, - [2974] = 2846, + [2971] = 2971, + [2972] = 2909, + [2973] = 2872, + [2974] = 2858, [2975] = 2975, [2976] = 2976, - [2977] = 2977, + [2977] = 2909, [2978] = 2978, - [2979] = 2843, + [2979] = 2891, [2980] = 2980, - [2981] = 2981, - [2982] = 2843, + [2981] = 2909, + [2982] = 2784, [2983] = 2983, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2846, - [2988] = 2848, - [2989] = 2989, - [2990] = 2847, - [2991] = 2782, - [2992] = 2776, - [2993] = 2811, - [2994] = 2994, - [2995] = 2995, - [2996] = 2843, + [2984] = 2872, + [2985] = 2858, + [2986] = 2891, + [2987] = 2797, + [2988] = 2891, + [2989] = 2909, + [2990] = 2872, + [2991] = 2858, + [2992] = 118, + [2993] = 116, + [2994] = 471, + [2995] = 2858, + [2996] = 2996, [2997] = 2997, [2998] = 2998, [2999] = 2999, - [3000] = 3000, + [3000] = 2872, [3001] = 3001, - [3002] = 2858, - [3003] = 3003, - [3004] = 2855, + [3002] = 2891, + [3003] = 2804, + [3004] = 2909, [3005] = 3005, - [3006] = 3006, - [3007] = 3007, - [3008] = 2846, - [3009] = 2803, + [3006] = 110, + [3007] = 2872, + [3008] = 2858, + [3009] = 2909, [3010] = 3010, - [3011] = 3011, - [3012] = 2847, + [3011] = 2891, + [3012] = 3012, [3013] = 3013, [3014] = 3014, - [3015] = 2846, + [3015] = 3015, [3016] = 3016, [3017] = 3017, - [3018] = 3018, + [3018] = 2855, [3019] = 3019, - [3020] = 2843, - [3021] = 3021, - [3022] = 3022, - [3023] = 3023, - [3024] = 2848, - [3025] = 2945, + [3020] = 3020, + [3021] = 2801, + [3022] = 2891, + [3023] = 2909, + [3024] = 3024, + [3025] = 3025, [3026] = 3026, [3027] = 3027, [3028] = 3028, - [3029] = 2848, + [3029] = 3029, [3030] = 3030, - [3031] = 2847, + [3031] = 3031, [3032] = 3032, [3033] = 3033, [3034] = 3034, [3035] = 3035, - [3036] = 3036, + [3036] = 2858, [3037] = 3037, - [3038] = 111, - [3039] = 474, - [3040] = 3040, - [3041] = 3041, + [3038] = 3038, + [3039] = 2872, + [3040] = 2858, + [3041] = 2872, [3042] = 3042, [3043] = 3043, [3044] = 3044, [3045] = 3045, [3046] = 3046, - [3047] = 461, + [3047] = 3047, [3048] = 3048, - [3049] = 478, - [3050] = 3050, - [3051] = 3051, - [3052] = 2846, - [3053] = 3053, - [3054] = 3054, - [3055] = 490, + [3049] = 2891, + [3050] = 2909, + [3051] = 2909, + [3052] = 2891, + [3053] = 2872, + [3054] = 2858, + [3055] = 3055, [3056] = 3056, - [3057] = 2843, - [3058] = 3058, - [3059] = 3059, + [3057] = 3057, + [3058] = 2872, + [3059] = 2891, [3060] = 3060, - [3061] = 2868, + [3061] = 3061, [3062] = 3062, [3063] = 3063, - [3064] = 2848, + [3064] = 3064, [3065] = 3065, - [3066] = 2847, - [3067] = 2843, + [3066] = 3066, + [3067] = 3067, [3068] = 3068, - [3069] = 2846, + [3069] = 3069, [3070] = 3070, [3071] = 3071, [3072] = 3072, - [3073] = 3073, + [3073] = 2858, [3074] = 3074, [3075] = 3075, - [3076] = 3076, + [3076] = 2909, [3077] = 3077, - [3078] = 3078, + [3078] = 3056, [3079] = 3079, - [3080] = 3080, - [3081] = 3074, - [3082] = 3082, - [3083] = 3083, - [3084] = 3073, - [3085] = 2869, - [3086] = 3076, - [3087] = 2889, - [3088] = 2896, - [3089] = 3089, - [3090] = 3080, + [3080] = 2866, + [3081] = 3031, + [3082] = 2887, + [3083] = 2919, + [3084] = 2874, + [3085] = 2884, + [3086] = 3077, + [3087] = 2848, + [3088] = 3035, + [3089] = 2849, + [3090] = 3032, [3091] = 3091, [3092] = 3092, - [3093] = 3074, - [3094] = 3094, - [3095] = 3095, - [3096] = 3074, + [3093] = 3093, + [3094] = 3044, + [3095] = 3033, + [3096] = 2976, [3097] = 3097, - [3098] = 3073, - [3099] = 2937, - [3100] = 3006, - [3101] = 3074, - [3102] = 3076, - [3103] = 3007, - [3104] = 2935, - [3105] = 2923, - [3106] = 3080, - [3107] = 2844, - [3108] = 2882, + [3098] = 3029, + [3099] = 3099, + [3100] = 3025, + [3101] = 3028, + [3102] = 3027, + [3103] = 3062, + [3104] = 3061, + [3105] = 2868, + [3106] = 3026, + [3107] = 3107, + [3108] = 2967, [3109] = 3109, - [3110] = 2853, - [3111] = 3111, - [3112] = 3112, - [3113] = 3080, - [3114] = 3074, - [3115] = 3115, - [3116] = 2865, - [3117] = 2879, - [3118] = 3010, - [3119] = 3036, - [3120] = 3076, - [3121] = 3121, - [3122] = 3073, - [3123] = 2943, - [3124] = 2901, - [3125] = 3074, - [3126] = 2881, - [3127] = 2908, - [3128] = 2913, - [3129] = 2920, - [3130] = 2927, - [3131] = 2929, - [3132] = 3073, - [3133] = 2930, - [3134] = 2931, - [3135] = 3135, - [3136] = 3076, - [3137] = 3137, - [3138] = 2939, - [3139] = 2967, - [3140] = 3080, - [3141] = 3141, - [3142] = 2941, - [3143] = 3080, - [3144] = 2963, - [3145] = 2947, - [3146] = 2949, - [3147] = 2946, - [3148] = 3135, - [3149] = 2951, - [3150] = 2955, - [3151] = 2956, - [3152] = 2958, - [3153] = 2960, - [3154] = 2961, - [3155] = 2999, - [3156] = 3073, - [3157] = 3074, - [3158] = 3073, - [3159] = 3074, - [3160] = 3074, - [3161] = 3073, - [3162] = 3074, - [3163] = 3073, - [3164] = 3074, - [3165] = 3073, - [3166] = 3074, - [3167] = 3073, - [3168] = 3074, - [3169] = 3169, - [3170] = 3076, - [3171] = 2964, - [3172] = 3073, - [3173] = 3074, - [3174] = 3080, - [3175] = 2966, - [3176] = 3080, - [3177] = 3073, - [3178] = 3074, - [3179] = 2983, - [3180] = 3073, - [3181] = 3074, - [3182] = 2969, - [3183] = 3073, - [3184] = 3074, - [3185] = 3112, - [3186] = 3111, - [3187] = 3073, - [3188] = 3076, - [3189] = 3074, - [3190] = 3115, - [3191] = 3073, - [3192] = 3074, - [3193] = 3074, - [3194] = 3073, - [3195] = 3074, - [3196] = 3076, - [3197] = 3073, - [3198] = 3074, - [3199] = 3073, - [3200] = 3073, + [3110] = 2850, + [3111] = 2851, + [3112] = 3077, + [3113] = 3093, + [3114] = 2852, + [3115] = 2853, + [3116] = 3024, + [3117] = 3020, + [3118] = 3118, + [3119] = 3091, + [3120] = 3077, + [3121] = 3019, + [3122] = 3122, + [3123] = 3093, + [3124] = 3124, + [3125] = 3109, + [3126] = 3038, + [3127] = 3097, + [3128] = 3091, + [3129] = 3010, + [3130] = 3077, + [3131] = 2867, + [3132] = 2856, + [3133] = 3133, + [3134] = 2893, + [3135] = 2859, + [3136] = 3013, + [3137] = 2860, + [3138] = 3138, + [3139] = 3012, + [3140] = 3140, + [3141] = 3005, + [3142] = 2869, + [3143] = 2978, + [3144] = 2870, + [3145] = 2949, + [3146] = 3077, + [3147] = 3077, + [3148] = 2881, + [3149] = 2873, + [3150] = 2847, + [3151] = 3097, + [3152] = 3152, + [3153] = 3091, + [3154] = 2845, + [3155] = 2898, + [3156] = 3156, + [3157] = 3093, + [3158] = 3152, + [3159] = 2971, + [3160] = 3160, + [3161] = 3097, + [3162] = 3068, + [3163] = 3156, + [3164] = 2970, + [3165] = 3097, + [3166] = 3063, + [3167] = 2969, + [3168] = 3064, + [3169] = 2899, + [3170] = 3170, + [3171] = 3043, + [3172] = 2958, + [3173] = 3066, + [3174] = 3093, + [3175] = 3091, + [3176] = 3077, + [3177] = 3091, + [3178] = 3077, + [3179] = 3091, + [3180] = 3077, + [3181] = 3091, + [3182] = 3077, + [3183] = 3091, + [3184] = 3077, + [3185] = 2962, + [3186] = 3091, + [3187] = 3091, + [3188] = 3077, + [3189] = 3091, + [3190] = 3077, + [3191] = 3093, + [3192] = 3091, + [3193] = 3077, + [3194] = 3091, + [3195] = 3097, + [3196] = 3077, + [3197] = 3091, + [3198] = 3077, + [3199] = 3199, + [3200] = 3091, [3201] = 3201, - [3202] = 3202, - [3203] = 3074, - [3204] = 3076, - [3205] = 2959, - [3206] = 3073, - [3207] = 3073, - [3208] = 3080, - [3209] = 3074, - [3210] = 3073, - [3211] = 3074, - [3212] = 3073, - [3213] = 3201, - [3214] = 3202, - [3215] = 3215, - [3216] = 3074, - [3217] = 3073, - [3218] = 3074, - [3219] = 3215, - [3220] = 3141, - [3221] = 2975, - [3222] = 2976, - [3223] = 3073, - [3224] = 3073, - [3225] = 2977, - [3226] = 3074, - [3227] = 3074, - [3228] = 2978, - [3229] = 3080, - [3230] = 3137, - [3231] = 3076, - [3232] = 2842, - [3233] = 2980, - [3234] = 3073, - [3235] = 2981, - [3236] = 3073, - [3237] = 3074, - [3238] = 3076, - [3239] = 3023, - [3240] = 2984, - [3241] = 2985, - [3242] = 3080, - [3243] = 3048, - [3244] = 3109, - [3245] = 3074, - [3246] = 2986, - [3247] = 2989, - [3248] = 2903, - [3249] = 3080, - [3250] = 3076, - [3251] = 3251, - [3252] = 2998, - [3253] = 3253, - [3254] = 3169, - [3255] = 3040, - [3256] = 3070, - [3257] = 3000, - [3258] = 3073, - [3259] = 3001, - [3260] = 2997, - [3261] = 3074, - [3262] = 3005, - [3263] = 3011, - [3264] = 3074, - [3265] = 3013, - [3266] = 3014, - [3267] = 3016, - [3268] = 3073, - [3269] = 3071, - [3270] = 3072, - [3271] = 3003, - [3272] = 3076, - [3273] = 3080, - [3274] = 3076, - [3275] = 3017, - [3276] = 3080, - [3277] = 3073, - [3278] = 3018, - [3279] = 3065, - [3280] = 3019, - [3281] = 3063, - [3282] = 3062, - [3283] = 3059, - [3284] = 3043, - [3285] = 3058, - [3286] = 3056, - [3287] = 3054, - [3288] = 3053, - [3289] = 3041, - [3290] = 3051, - [3291] = 3050, - [3292] = 3046, - [3293] = 3045, - [3294] = 3044, - [3295] = 3074, - [3296] = 3042, - [3297] = 3068, - [3298] = 3037, - [3299] = 3073, - [3300] = 3035, - [3301] = 3074, - [3302] = 3073, - [3303] = 3034, - [3304] = 3033, - [3305] = 3032, - [3306] = 3076, - [3307] = 3021, - [3308] = 3022, - [3309] = 3080, - [3310] = 3080, - [3311] = 3030, - [3312] = 3028, - [3313] = 3027, - [3314] = 3076, - [3315] = 3026, - [3316] = 3073, - [3317] = 3317, - [3318] = 3318, - [3319] = 3082, - [3320] = 3083, - [3321] = 3318, + [3202] = 3077, + [3203] = 3093, + [3204] = 2878, + [3205] = 3077, + [3206] = 3206, + [3207] = 2882, + [3208] = 3208, + [3209] = 3209, + [3210] = 3210, + [3211] = 3091, + [3212] = 3077, + [3213] = 2923, + [3214] = 3077, + [3215] = 2886, + [3216] = 3091, + [3217] = 3217, + [3218] = 3077, + [3219] = 3091, + [3220] = 3077, + [3221] = 3091, + [3222] = 2938, + [3223] = 3091, + [3224] = 3077, + [3225] = 3093, + [3226] = 3091, + [3227] = 3077, + [3228] = 3091, + [3229] = 3097, + [3230] = 3230, + [3231] = 2966, + [3232] = 3091, + [3233] = 3077, + [3234] = 3234, + [3235] = 3160, + [3236] = 3234, + [3237] = 3091, + [3238] = 3077, + [3239] = 2944, + [3240] = 3091, + [3241] = 3077, + [3242] = 3242, + [3243] = 3091, + [3244] = 3244, + [3245] = 3245, + [3246] = 3217, + [3247] = 3209, + [3248] = 3077, + [3249] = 3091, + [3250] = 3067, + [3251] = 2943, + [3252] = 3252, + [3253] = 3077, + [3254] = 3093, + [3255] = 3091, + [3256] = 3097, + [3257] = 3257, + [3258] = 3093, + [3259] = 3093, + [3260] = 3260, + [3261] = 3057, + [3262] = 3091, + [3263] = 3097, + [3264] = 3069, + [3265] = 3074, + [3266] = 3266, + [3267] = 3077, + [3268] = 3268, + [3269] = 3072, + [3270] = 3071, + [3271] = 3271, + [3272] = 3097, + [3273] = 3091, + [3274] = 3093, + [3275] = 3075, + [3276] = 3107, + [3277] = 3277, + [3278] = 3091, + [3279] = 3279, + [3280] = 3280, + [3281] = 3070, + [3282] = 3077, + [3283] = 3244, + [3284] = 3077, + [3285] = 3030, + [3286] = 3055, + [3287] = 3047, + [3288] = 3097, + [3289] = 3091, + [3290] = 3093, + [3291] = 3242, + [3292] = 2897, + [3293] = 3093, + [3294] = 3091, + [3295] = 3048, + [3296] = 3065, + [3297] = 3097, + [3298] = 2854, + [3299] = 3077, + [3300] = 2952, + [3301] = 2975, + [3302] = 3046, + [3303] = 3045, + [3304] = 2953, + [3305] = 2956, + [3306] = 2865, + [3307] = 3042, + [3308] = 3308, + [3309] = 3034, + [3310] = 3097, + [3311] = 2945, + [3312] = 2980, + [3313] = 2957, + [3314] = 3314, + [3315] = 3093, + [3316] = 3077, + [3317] = 2911, + [3318] = 3037, + [3319] = 3091, + [3320] = 2889, + [3321] = 3097, [3322] = 3322, - [3323] = 3323, - [3324] = 3075, - [3325] = 3325, - [3326] = 3326, - [3327] = 3077, - [3328] = 553, - [3329] = 3318, - [3330] = 3318, - [3331] = 3325, - [3332] = 3325, - [3333] = 3318, - [3334] = 3334, - [3335] = 3325, + [3323] = 3091, + [3324] = 3077, + [3325] = 2888, + [3326] = 3014, + [3327] = 3093, + [3328] = 2999, + [3329] = 2998, + [3330] = 3097, + [3331] = 3097, + [3332] = 3332, + [3333] = 2997, + [3334] = 3208, + [3335] = 3335, [3336] = 3336, [3337] = 3337, - [3338] = 3338, - [3339] = 3339, + [3338] = 541, + [3339] = 3335, [3340] = 3340, - [3341] = 467, - [3342] = 3318, - [3343] = 3318, - [3344] = 3097, + [3341] = 3340, + [3342] = 3342, + [3343] = 3340, + [3344] = 468, [3345] = 3345, - [3346] = 3346, - [3347] = 3095, - [3348] = 3318, - [3349] = 3325, - [3350] = 3079, - [3351] = 3351, - [3352] = 3078, - [3353] = 3325, - [3354] = 2516, - [3355] = 3325, - [3356] = 3325, - [3357] = 3325, - [3358] = 3094, - [3359] = 3325, + [3346] = 3340, + [3347] = 3347, + [3348] = 3348, + [3349] = 3349, + [3350] = 3335, + [3351] = 3335, + [3352] = 3271, + [3353] = 3079, + [3354] = 3122, + [3355] = 3133, + [3356] = 3335, + [3357] = 3340, + [3358] = 3335, + [3359] = 3359, [3360] = 3360, - [3361] = 3318, - [3362] = 3362, - [3363] = 3091, - [3364] = 3318, - [3365] = 3089, - [3366] = 3366, - [3367] = 3318, - [3368] = 3325, - [3369] = 3325, - [3370] = 3318, + [3361] = 3361, + [3362] = 3201, + [3363] = 3360, + [3364] = 3340, + [3365] = 3335, + [3366] = 3206, + [3367] = 3210, + [3368] = 3368, + [3369] = 3369, + [3370] = 3340, [3371] = 3371, [3372] = 3372, - [3373] = 3373, + [3373] = 3340, [3374] = 3374, [3375] = 3375, - [3376] = 3325, - [3377] = 3377, + [3376] = 3340, + [3377] = 3335, [3378] = 3378, [3379] = 3379, [3380] = 3380, - [3381] = 3318, + [3381] = 3199, [3382] = 3382, - [3383] = 3318, - [3384] = 3384, - [3385] = 3385, - [3386] = 3325, + [3383] = 3335, + [3384] = 3335, + [3385] = 3340, + [3386] = 3335, [3387] = 3387, [3388] = 3388, - [3389] = 3389, - [3390] = 3121, - [3391] = 3318, - [3392] = 3392, + [3389] = 3340, + [3390] = 3390, + [3391] = 3391, + [3392] = 3340, [3393] = 3393, [3394] = 3394, - [3395] = 3325, - [3396] = 3318, - [3397] = 3362, - [3398] = 3325, - [3399] = 3399, - [3400] = 461, - [3401] = 3401, - [3402] = 575, - [3403] = 574, - [3404] = 3404, + [3395] = 3395, + [3396] = 3245, + [3397] = 3335, + [3398] = 3308, + [3399] = 3335, + [3400] = 3335, + [3401] = 3340, + [3402] = 3402, + [3403] = 3335, + [3404] = 3340, [3405] = 3405, - [3406] = 3406, - [3407] = 3407, + [3406] = 3340, + [3407] = 3322, [3408] = 3408, - [3409] = 3409, - [3410] = 3406, - [3411] = 3409, + [3409] = 3260, + [3410] = 3410, + [3411] = 3411, [3412] = 3412, - [3413] = 3408, - [3414] = 3414, - [3415] = 3415, - [3416] = 3416, + [3413] = 3340, + [3414] = 2519, + [3415] = 3335, + [3416] = 591, [3417] = 3417, [3418] = 3418, [3419] = 3419, - [3420] = 584, - [3421] = 583, + [3420] = 3420, + [3421] = 3421, [3422] = 3422, [3423] = 3423, [3424] = 3424, - [3425] = 3417, - [3426] = 3415, - [3427] = 3401, - [3428] = 3424, - [3429] = 3429, - [3430] = 3416, - [3431] = 3414, - [3432] = 3405, - [3433] = 3404, + [3425] = 3425, + [3426] = 3426, + [3427] = 3427, + [3428] = 3428, + [3429] = 592, + [3430] = 3423, + [3431] = 3425, + [3432] = 3432, + [3433] = 3427, [3434] = 3434, - [3435] = 3435, - [3436] = 3412, + [3435] = 3419, + [3436] = 3420, [3437] = 3437, - [3438] = 3423, - [3439] = 3422, - [3440] = 3418, - [3441] = 3437, - [3442] = 3435, + [3438] = 3437, + [3439] = 3439, + [3440] = 3440, + [3441] = 3441, + [3442] = 3442, [3443] = 3443, - [3444] = 3419, - [3445] = 3443, - [3446] = 3446, - [3447] = 3447, - [3448] = 3448, + [3444] = 3444, + [3445] = 3440, + [3446] = 3442, + [3447] = 549, + [3448] = 3418, [3449] = 3449, - [3450] = 3449, - [3451] = 3451, + [3450] = 3428, + [3451] = 3426, [3452] = 3452, [3453] = 3449, - [3454] = 3454, - [3455] = 3447, - [3456] = 3456, - [3457] = 3449, - [3458] = 3456, - [3459] = 3459, - [3460] = 3449, - [3461] = 3448, - [3462] = 3449, - [3463] = 3449, - [3464] = 3456, + [3454] = 3443, + [3455] = 3439, + [3456] = 3422, + [3457] = 3421, + [3458] = 3458, + [3459] = 3434, + [3460] = 3460, + [3461] = 461, + [3462] = 553, + [3463] = 3452, + [3464] = 3441, [3465] = 3465, - [3466] = 3447, - [3467] = 3447, + [3466] = 3466, + [3467] = 3467, [3468] = 3468, [3469] = 3469, [3470] = 3470, - [3471] = 3471, + [3471] = 3466, [3472] = 3472, - [3473] = 3473, + [3473] = 3466, [3474] = 3474, - [3475] = 3449, - [3476] = 3476, - [3477] = 3449, - [3478] = 3447, - [3479] = 3448, - [3480] = 3472, + [3475] = 3474, + [3476] = 3466, + [3477] = 3470, + [3478] = 3478, + [3479] = 3469, + [3480] = 3466, [3481] = 3481, - [3482] = 3449, - [3483] = 3456, + [3482] = 3482, + [3483] = 3466, [3484] = 3484, - [3485] = 3485, + [3485] = 3466, [3486] = 3486, - [3487] = 3487, - [3488] = 3488, + [3487] = 3466, + [3488] = 3469, [3489] = 3489, - [3490] = 3490, - [3491] = 3491, + [3490] = 471, + [3491] = 475, [3492] = 3492, [3493] = 3493, - [3494] = 3494, + [3494] = 3466, [3495] = 3495, [3496] = 3496, - [3497] = 3497, - [3498] = 3456, - [3499] = 3447, - [3500] = 3456, - [3501] = 3447, - [3502] = 3447, - [3503] = 3503, - [3504] = 3504, - [3505] = 3456, - [3506] = 3492, - [3507] = 3449, - [3508] = 3449, - [3509] = 3509, - [3510] = 3468, - [3511] = 3492, - [3512] = 3449, - [3513] = 3449, - [3514] = 3485, + [3497] = 3466, + [3498] = 3469, + [3499] = 3481, + [3500] = 3466, + [3501] = 3466, + [3502] = 3502, + [3503] = 3469, + [3504] = 3466, + [3505] = 3481, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3481, + [3510] = 3469, + [3511] = 3511, + [3512] = 3512, + [3513] = 3513, + [3514] = 3481, [3515] = 3515, - [3516] = 3492, - [3517] = 3449, + [3516] = 3481, + [3517] = 3517, [3518] = 3518, - [3519] = 3486, - [3520] = 474, - [3521] = 3492, - [3522] = 3447, - [3523] = 3523, - [3524] = 3456, + [3519] = 3469, + [3520] = 3466, + [3521] = 3469, + [3522] = 3481, + [3523] = 3469, + [3524] = 3466, [3525] = 3525, - [3526] = 3492, - [3527] = 3527, - [3528] = 3528, - [3529] = 3448, - [3530] = 3456, - [3531] = 3492, - [3532] = 3532, - [3533] = 3533, - [3534] = 3449, + [3526] = 3526, + [3527] = 3515, + [3528] = 3469, + [3529] = 3481, + [3530] = 3530, + [3531] = 3531, + [3532] = 3515, + [3533] = 3466, + [3534] = 3534, [3535] = 3535, - [3536] = 3492, - [3537] = 3537, - [3538] = 3447, + [3536] = 3536, + [3537] = 3515, + [3538] = 3538, [3539] = 3539, - [3540] = 3503, - [3541] = 3492, - [3542] = 3542, + [3540] = 3540, + [3541] = 3541, + [3542] = 3515, [3543] = 3543, - [3544] = 3447, - [3545] = 3447, - [3546] = 3492, - [3547] = 3492, + [3544] = 3531, + [3545] = 3545, + [3546] = 3546, + [3547] = 3515, [3548] = 3548, [3549] = 3549, - [3550] = 3456, - [3551] = 3492, - [3552] = 3552, + [3550] = 3469, + [3551] = 3469, + [3552] = 3515, [3553] = 3553, - [3554] = 3515, + [3554] = 3554, [3555] = 3555, - [3556] = 3492, - [3557] = 3557, - [3558] = 3558, - [3559] = 3504, - [3560] = 3447, - [3561] = 3492, - [3562] = 3562, - [3563] = 3449, - [3564] = 3449, - [3565] = 3449, - [3566] = 3492, - [3567] = 3447, - [3568] = 3456, + [3556] = 3466, + [3557] = 3515, + [3558] = 3466, + [3559] = 3469, + [3560] = 3560, + [3561] = 3548, + [3562] = 3515, + [3563] = 3481, + [3564] = 3508, + [3565] = 3565, + [3566] = 3466, + [3567] = 3515, + [3568] = 3515, [3569] = 3569, - [3570] = 3492, - [3571] = 3490, - [3572] = 3449, - [3573] = 3484, - [3574] = 3574, - [3575] = 3449, - [3576] = 3447, - [3577] = 3577, - [3578] = 3470, - [3579] = 3449, - [3580] = 3447, - [3581] = 3456, - [3582] = 3449, - [3583] = 3448, - [3584] = 3569, - [3585] = 3585, - [3586] = 3456, - [3587] = 3449, - [3588] = 3487, + [3570] = 3466, + [3571] = 3571, + [3572] = 3515, + [3573] = 3569, + [3574] = 3466, + [3575] = 3575, + [3576] = 3576, + [3577] = 3515, + [3578] = 3469, + [3579] = 3579, + [3580] = 3481, + [3581] = 3481, + [3582] = 3515, + [3583] = 3481, + [3584] = 3469, + [3585] = 3469, + [3586] = 3586, + [3587] = 3515, + [3588] = 3469, [3589] = 3589, - [3590] = 3446, - [3591] = 3447, - [3592] = 3456, - [3593] = 478, - [3594] = 3569, - [3595] = 3569, - [3596] = 3569, - [3597] = 3569, - [3598] = 3569, - [3599] = 3569, - [3600] = 3569, - [3601] = 3569, - [3602] = 3569, - [3603] = 3569, - [3604] = 3569, - [3605] = 3569, - [3606] = 3447, + [3590] = 3590, + [3591] = 3515, + [3592] = 3513, + [3593] = 3593, + [3594] = 3508, + [3595] = 3549, + [3596] = 3526, + [3597] = 3466, + [3598] = 3466, + [3599] = 3599, + [3600] = 3508, + [3601] = 3601, + [3602] = 3481, + [3603] = 3469, + [3604] = 3481, + [3605] = 3590, + [3606] = 3606, [3607] = 3607, + [3608] = 3608, + [3609] = 3517, + [3610] = 3508, + [3611] = 3545, + [3612] = 3484, + [3613] = 3466, + [3614] = 3614, + [3615] = 3590, + [3616] = 3590, + [3617] = 3590, + [3618] = 3590, + [3619] = 3590, + [3620] = 3590, + [3621] = 3590, + [3622] = 3590, + [3623] = 3590, + [3624] = 3590, + [3625] = 3590, + [3626] = 3590, + [3627] = 3502, + [3628] = 3628, }; static inline bool sym_cmd_identifier_character_set_1(int32_t c) { @@ -9216,6 +9272,806 @@ 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 + ? (c < 2036 + ? (c < 1015 + ? (c < 750 + ? (c < 216 + ? (c < 170 + ? (c < 'c' + ? (c >= 'A' && c <= 'Y') + : c <= 'y') + : (c <= 170 || (c < 192 + ? c == 186 + : c <= 214))) + : (c <= 246 || (c < 736 + ? (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721) + : (c <= 740 || c == 748)))) + : (c <= 750 || (c < 902 + ? (c < 891 + ? (c < 886 + ? (c >= 880 && c <= 884) + : c <= 887) + : (c <= 893 || c == 895)) + : (c <= 902 || (c < 910 + ? (c < 908 + ? (c >= 904 && c <= 906) + : c <= 908) + : (c <= 929 || (c >= 931 && c <= 1013))))))) + : (c <= 1153 || (c < 1749 + ? (c < 1488 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c >= 1376 && c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2602 + ? (c < 2544 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c >= 2527 && c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3253 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3114 + ? (c < 2990 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c >= 2984 && c <= 2986))) + : (c <= 3001 || (c < 3086 + ? (c < 3077 + ? c == 3024 + : c <= 3084) + : (c <= 3088 || (c >= 3090 && c <= 3112))))) + : (c <= 3129 || (c < 3200 + ? (c < 3165 + ? (c < 3160 + ? c == 3133 + : c <= 3162) + : (c <= 3165 || (c >= 3168 && c <= 3169))) + : (c <= 3200 || (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) + : (c <= 3257 || (c < 3713 + ? (c < 3423 + ? (c < 3342 + ? (c < 3296 + ? (c < 3293 + ? c == 3261 + : c <= 3294) + : (c <= 3297 || (c < 3332 + ? (c >= 3313 && c <= 3314) + : c <= 3340))) + : (c <= 3344 || (c < 3406 + ? (c < 3389 + ? (c >= 3346 && c <= 3386) + : c <= 3389) + : (c <= 3406 || (c >= 3412 && c <= 3414))))) + : (c <= 3425 || (c < 3517 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3450 && c <= 3455) + : c <= 3478) + : (c <= 3505 || (c >= 3507 && c <= 3515))) + : (c <= 3517 || (c < 3634 + ? (c < 3585 + ? (c >= 3520 && c <= 3526) + : c <= 3632) + : (c <= 3634 || (c >= 3648 && c <= 3654))))))) + : (c <= 3714 || (c < 3804 + ? (c < 3751 + ? (c < 3724 + ? (c < 3718 + ? c == 3716 + : c <= 3722) + : (c <= 3747 || c == 3749)) + : (c <= 3760 || (c < 3776 + ? (c < 3773 + ? c == 3762 + : c <= 3773) + : (c <= 3780 || c == 3782)))) + : (c <= 3807 || (c < 4096 + ? (c < 3913 + ? (c < 3904 + ? c == 3840 + : c <= 3911) + : (c <= 3948 || (c >= 3976 && c <= 3980))) + : (c <= 4138 || (c < 4186 + ? (c < 4176 + ? c == 4159 + : c <= 4181) + : (c <= 4189 || c == 4193)))))))))))) + : (c <= 4198 || (c < 8144 + ? (c < 6272 + ? (c < 4824 + ? (c < 4696 + ? (c < 4301 + ? (c < 4238 + ? (c < 4213 + ? (c >= 4206 && c <= 4208) + : c <= 4225) + : (c <= 4238 || (c < 4295 + ? (c >= 4256 && c <= 4293) + : c <= 4295))) + : (c <= 4301 || (c < 4682 + ? (c < 4348 + ? (c >= 4304 && c <= 4346) + : c <= 4680) + : (c <= 4685 || (c >= 4688 && c <= 4694))))) + : (c <= 4696 || (c < 4786 + ? (c < 4746 + ? (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744) + : (c <= 4749 || (c >= 4752 && c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c >= 4808 && c <= 4822))))))) + : (c <= 4880 || (c < 5870 + ? (c < 5112 + ? (c < 4992 + ? (c < 4888 + ? (c >= 4882 && c <= 4885) + : c <= 4954) + : (c <= 5007 || (c >= 5024 && c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c >= 5792 && c <= 5866))))) + : (c <= 5880 || (c < 5998 + ? (c < 5952 + ? (c < 5919 + ? (c >= 5888 && c <= 5905) + : c <= 5937) + : (c <= 5969 || (c >= 5984 && c <= 5996))) + : (c <= 6000 || (c < 6108 + ? (c < 6103 + ? (c >= 6016 && c <= 6067) + : c <= 6103) + : (c <= 6108 || (c >= 6176 && c <= 6264))))))))) + : (c <= 6312 || (c < 7357 + ? (c < 6917 + ? (c < 6528 + ? (c < 6400 + ? (c < 6320 + ? c == 6314 + : c <= 6389) + : (c <= 6430 || (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516))) + : (c <= 6571 || (c < 6688 + ? (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678) + : (c <= 6740 || c == 6823)))) + : (c <= 6963 || (c < 7168 + ? (c < 7086 + ? (c < 7043 + ? (c >= 6981 && c <= 6988) + : c <= 7072) + : (c <= 7087 || (c >= 7098 && c <= 7141))) + : (c <= 7203 || (c < 7296 + ? (c < 7258 + ? (c >= 7245 && c <= 7247) + : c <= 7293) + : (c <= 7304 || (c >= 7312 && c <= 7354))))))) + : (c <= 7359 || (c < 8016 + ? (c < 7424 + ? (c < 7413 + ? (c < 7406 + ? (c >= 7401 && c <= 7404) + : c <= 7411) + : (c <= 7414 || c == 7418)) + : (c <= 7615 || (c < 7968 + ? (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c >= 8008 && c <= 8013))))) + : (c <= 8023 || (c < 8064 + ? (c < 8029 + ? (c < 8027 + ? c == 8025 + : c <= 8027) + : (c <= 8029 || (c >= 8031 && c <= 8061))) + : (c <= 8116 || (c < 8130 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : c <= 8126) + : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) + : (c <= 8147 || (c < 12344 + ? (c < 11264 + ? (c < 8469 + ? (c < 8319 + ? (c < 8178 + ? (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172) + : (c <= 8180 || (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305))) + : (c <= 8319 || (c < 8455 + ? (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450) + : (c <= 8455 || (c >= 8458 && c <= 8467))))) + : (c <= 8469 || (c < 8490 + ? (c < 8486 + ? (c < 8484 + ? (c >= 8472 && c <= 8477) + : c <= 8484) + : (c <= 8486 || c == 8488)) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c >= 8544 && c <= 8584))))))) + : (c <= 11492 || (c < 11688 + ? (c < 11565 + ? (c < 11520 + ? (c < 11506 + ? (c >= 11499 && c <= 11502) + : c <= 11507) + : (c <= 11557 || c == 11559)) + : (c <= 11565 || (c < 11648 + ? (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631) + : (c <= 11670 || (c >= 11680 && c <= 11686))))) + : (c <= 11694 || (c < 11728 + ? (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))) + : (c <= 11734 || (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) + : (c <= 12348 || (c < 42960 + ? (c < 42192 + ? (c < 12593 + ? (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591))) + : (c <= 12686 || (c < 13312 + ? (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799) + : (c <= 19903 || (c >= 19968 && c <= 42124))))) + : (c <= 42237 || (c < 42623 + ? (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))) + : (c <= 42653 || (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))))))) + : (c <= 42961 || (c < 43259 + ? (c < 43015 + ? (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))) + : (c <= 43018 || (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))))) + : (c <= 43259 || (c < 43396 + ? (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))) + : (c <= 43442 || (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))))))))))))))) + : (c <= 43560 || (c < 70751 + ? (c < 66964 + ? (c < 65008 + ? (c < 43888 + ? (c < 43739 + ? (c < 43697 + ? (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || (c < 43646 + ? c == 43642 + : c <= 43695))) + : (c <= 43697 || (c < 43712 + ? (c < 43705 + ? (c >= 43701 && c <= 43702) + : c <= 43709) + : (c <= 43712 || c == 43714)))) + : (c <= 43741 || (c < 43793 + ? (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))) + : (c <= 43798 || (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))))))) + : (c <= 44002 || (c < 64298 + ? (c < 64112 + ? (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))) + : (c <= 64217 || (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c >= 64287 && c <= 64296))))) + : (c <= 64310 || (c < 64326 + ? (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))) + : (c <= 64433 || (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))))))))) + : (c <= 65017 || (c < 65616 + ? (c < 65440 + ? (c < 65149 + ? (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))) + : (c <= 65149 || (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c >= 65382 && c <= 65437))))) + : (c <= 65470 || (c < 65536 + ? (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))))))) + : (c <= 65629 || (c < 66504 + ? (c < 66304 + ? (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c >= 66464 && c <= 66499))))) + : (c <= 66511 || (c < 66816 + ? (c < 66736 + ? (c < 66560 + ? (c >= 66513 && c <= 66517) + : c <= 66717) + : (c <= 66771 || (c >= 66776 && c <= 66811))) + : (c <= 66855 || (c < 66940 + ? (c < 66928 + ? (c >= 66864 && c <= 66915) + : c <= 66938) + : (c <= 66954 || (c >= 66956 && c <= 66962))))))))))) + : (c <= 66965 || (c < 69248 + ? (c < 67840 + ? (c < 67584 + ? (c < 67392 + ? (c < 66995 + ? (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993) + : (c <= 67001 || (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382))) + : (c <= 67413 || (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c >= 67506 && c <= 67514))))) + : (c <= 67589 || (c < 67647 + ? (c < 67639 + ? (c < 67594 + ? c == 67592 + : c <= 67637) + : (c <= 67640 || c == 67644)) + : (c <= 67669 || (c < 67808 + ? (c < 67712 + ? (c >= 67680 && c <= 67702) + : c <= 67742) + : (c <= 67826 || (c >= 67828 && c <= 67829))))))) + : (c <= 67861 || (c < 68288 + ? (c < 68112 + ? (c < 68030 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : c <= 68023) + : (c <= 68031 || c == 68096)) + : (c <= 68115 || (c < 68192 + ? (c < 68121 + ? (c >= 68117 && c <= 68119) + : c <= 68149) + : (c <= 68220 || (c >= 68224 && c <= 68252))))) + : (c <= 68295 || (c < 68480 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405) + : (c <= 68437 || (c >= 68448 && c <= 68466))) + : (c <= 68497 || (c < 68800 + ? (c < 68736 + ? (c >= 68608 && c <= 68680) + : c <= 68786) + : (c <= 68850 || (c >= 68864 && c <= 68899))))))))) + : (c <= 69289 || (c < 70108 + ? (c < 69763 + ? (c < 69552 + ? (c < 69415 + ? (c < 69376 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505))) + : (c <= 69572 || (c < 69745 + ? (c < 69635 + ? (c >= 69600 && c <= 69622) + : c <= 69687) + : (c <= 69746 || c == 69749)))) + : (c <= 69807 || (c < 69968 + ? (c < 69956 + ? (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926) + : (c <= 69956 || c == 69959)) + : (c <= 70002 || (c < 70081 + ? (c < 70019 + ? c == 70006 + : c <= 70066) + : (c <= 70084 || c == 70106)))))) + : (c <= 70108 || (c < 70415 + ? (c < 70282 + ? (c < 70272 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70187) + : (c <= 70278 || c == 70280)) + : (c <= 70285 || (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70366 || (c >= 70405 && c <= 70412))))) + : (c <= 70416 || (c < 70461 + ? (c < 70450 + ? (c < 70442 + ? (c >= 70419 && c <= 70440) + : c <= 70448) + : (c <= 70451 || (c >= 70453 && c <= 70457))) + : (c <= 70461 || (c < 70656 + ? (c < 70493 + ? c == 70480 + : c <= 70497) + : (c <= 70708 || (c >= 70727 && c <= 70730))))))))))))) + : (c <= 70753 || (c < 119966 + ? (c < 73063 + ? (c < 72096 + ? (c < 71488 + ? (c < 71168 + ? (c < 70855 + ? (c < 70852 + ? (c >= 70784 && c <= 70831) + : c <= 70853) + : (c <= 70855 || (c < 71128 + ? (c >= 71040 && c <= 71086) + : c <= 71131))) + : (c <= 71215 || (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c >= 71424 && c <= 71450))))) + : (c <= 71494 || (c < 71948 + ? (c < 71935 + ? (c < 71840 + ? (c >= 71680 && c <= 71723) + : c <= 71903) + : (c <= 71942 || c == 71945)) + : (c <= 71955 || (c < 71999 + ? (c < 71960 + ? (c >= 71957 && c <= 71958) + : c <= 71983) + : (c <= 71999 || c == 72001)))))) + : (c <= 72103 || (c < 72368 + ? (c < 72203 + ? (c < 72163 + ? (c < 72161 + ? (c >= 72106 && c <= 72144) + : c <= 72161) + : (c <= 72163 || c == 72192)) + : (c <= 72242 || (c < 72284 + ? (c < 72272 + ? c == 72250 + : c <= 72272) + : (c <= 72329 || c == 72349)))) + : (c <= 72440 || (c < 72960 + ? (c < 72768 + ? (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750) + : (c <= 72768 || (c >= 72818 && c <= 72847))) + : (c <= 72966 || (c < 73030 + ? (c < 72971 + ? (c >= 72968 && c <= 72969) + : c <= 73008) + : (c <= 73030 || (c >= 73056 && c <= 73061))))))))) + : (c <= 73064 || (c < 94032 + ? (c < 92160 + ? (c < 74752 + ? (c < 73440 + ? (c < 73112 + ? (c >= 73066 && c <= 73097) + : c <= 73112) + : (c <= 73458 || (c < 73728 + ? c == 73648 + : c <= 74649))) + : (c <= 74862 || (c < 77824 + ? (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808) + : (c <= 78894 || (c >= 82944 && c <= 83526))))) + : (c <= 92728 || (c < 92992 + ? (c < 92880 + ? (c < 92784 + ? (c >= 92736 && c <= 92766) + : c <= 92862) + : (c <= 92909 || (c >= 92928 && c <= 92975))) + : (c <= 92995 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c >= 93952 && c <= 94026))))))) + : (c <= 94032 || (c < 110592 + ? (c < 100352 + ? (c < 94179 + ? (c < 94176 + ? (c >= 94099 && c <= 94111) + : c <= 94177) + : (c <= 94179 || (c >= 94208 && c <= 100343))) + : (c <= 101589 || (c < 110581 + ? (c < 110576 + ? (c >= 101632 && c <= 101640) + : c <= 110579) + : (c <= 110587 || (c >= 110589 && c <= 110590))))) + : (c <= 110882 || (c < 113776 + ? (c < 110960 + ? (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951) + : (c <= 111355 || (c >= 113664 && c <= 113770))) + : (c <= 113788 || (c < 119808 + ? (c < 113808 + ? (c >= 113792 && c <= 113800) + : c <= 113817) + : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) + : (c <= 119967 || (c < 126464 + ? (c < 120598 + ? (c < 120094 + ? (c < 119997 + ? (c < 119977 + ? (c < 119973 + ? c == 119970 + : c <= 119974) + : (c <= 119980 || (c < 119995 + ? (c >= 119982 && c <= 119993) + : c <= 119995))) + : (c <= 120003 || (c < 120077 + ? (c < 120071 + ? (c >= 120005 && c <= 120069) + : c <= 120074) + : (c <= 120084 || (c >= 120086 && c <= 120092))))) + : (c <= 120121 || (c < 120146 + ? (c < 120134 + ? (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132) + : (c <= 120134 || (c >= 120138 && c <= 120144))) + : (c <= 120485 || (c < 120540 + ? (c < 120514 + ? (c >= 120488 && c <= 120512) + : c <= 120538) + : (c <= 120570 || (c >= 120572 && c <= 120596))))))) + : (c <= 120628 || (c < 123214 + ? (c < 120746 + ? (c < 120688 + ? (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686) + : (c <= 120712 || (c >= 120714 && c <= 120744))) + : (c <= 120770 || (c < 123136 + ? (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654) + : (c <= 123180 || (c >= 123191 && c <= 123197))))) + : (c <= 123214 || (c < 124909 + ? (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123565) + : c <= 123627) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (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_4(int32_t c) { return (c < 43514 ? (c < 4193 ? (c < 2707 @@ -10017,806 +10873,6 @@ static inline bool sym_cmd_identifier_character_set_3(int32_t c) { : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); } -static inline bool sym_cmd_identifier_character_set_4(int32_t c) { - return (c < 43520 - ? (c < 4197 - ? (c < 2730 - ? (c < 2036 - ? (c < 1015 - ? (c < 750 - ? (c < 216 - ? (c < 170 - ? (c < 'j' - ? (c >= 'A' && c <= 'Y') - : c <= 'y') - : (c <= 170 || (c < 192 - ? c == 186 - : c <= 214))) - : (c <= 246 || (c < 736 - ? (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721) - : (c <= 740 || c == 748)))) - : (c <= 750 || (c < 902 - ? (c < 891 - ? (c < 886 - ? (c >= 880 && c <= 884) - : c <= 887) - : (c <= 893 || c == 895)) - : (c <= 902 || (c < 910 - ? (c < 908 - ? (c >= 904 && c <= 906) - : c <= 908) - : (c <= 929 || (c >= 931 && c <= 1013))))))) - : (c <= 1153 || (c < 1749 - ? (c < 1488 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c >= 1376 && c <= 1416))) - : (c <= 1514 || (c < 1646 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : c <= 1610) - : (c <= 1647 || (c >= 1649 && c <= 1747))))) - : (c <= 1749 || (c < 1808 - ? (c < 1786 - ? (c < 1774 - ? (c >= 1765 && c <= 1766) - : c <= 1775) - : (c <= 1788 || c == 1791)) - : (c <= 1808 || (c < 1969 - ? (c < 1869 - ? (c >= 1810 && c <= 1839) - : c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) - : (c <= 2037 || (c < 2486 - ? (c < 2308 - ? (c < 2112 - ? (c < 2074 - ? (c < 2048 - ? c == 2042 - : c <= 2069) - : (c <= 2074 || (c < 2088 - ? c == 2084 - : c <= 2088))) - : (c <= 2136 || (c < 2185 - ? (c < 2160 - ? (c >= 2144 && c <= 2154) - : c <= 2183) - : (c <= 2190 || (c >= 2208 && c <= 2249))))) - : (c <= 2361 || (c < 2437 - ? (c < 2392 - ? (c < 2384 - ? c == 2365 - : c <= 2384) - : (c <= 2401 || (c >= 2417 && c <= 2432))) - : (c <= 2444 || (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || c == 2482)))))) - : (c <= 2489 || (c < 2602 - ? (c < 2544 - ? (c < 2524 - ? (c < 2510 - ? c == 2493 - : c <= 2510) - : (c <= 2525 || (c >= 2527 && c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3253 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3114 - ? (c < 2990 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c >= 2984 && c <= 2986))) - : (c <= 3001 || (c < 3086 - ? (c < 3077 - ? c == 3024 - : c <= 3084) - : (c <= 3088 || (c >= 3090 && c <= 3112))))) - : (c <= 3129 || (c < 3200 - ? (c < 3165 - ? (c < 3160 - ? c == 3133 - : c <= 3162) - : (c <= 3165 || (c >= 3168 && c <= 3169))) - : (c <= 3200 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c >= 3242 && c <= 3251))))))))) - : (c <= 3257 || (c < 3713 - ? (c < 3423 - ? (c < 3342 - ? (c < 3296 - ? (c < 3293 - ? c == 3261 - : c <= 3294) - : (c <= 3297 || (c < 3332 - ? (c >= 3313 && c <= 3314) - : c <= 3340))) - : (c <= 3344 || (c < 3406 - ? (c < 3389 - ? (c >= 3346 && c <= 3386) - : c <= 3389) - : (c <= 3406 || (c >= 3412 && c <= 3414))))) - : (c <= 3425 || (c < 3517 - ? (c < 3482 - ? (c < 3461 - ? (c >= 3450 && c <= 3455) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))) - : (c <= 3517 || (c < 3634 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : c <= 3632) - : (c <= 3634 || (c >= 3648 && c <= 3654))))))) - : (c <= 3714 || (c < 3804 - ? (c < 3751 - ? (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || c == 3749)) - : (c <= 3760 || (c < 3776 - ? (c < 3773 - ? c == 3762 - : c <= 3773) - : (c <= 3780 || c == 3782)))) - : (c <= 3807 || (c < 4096 - ? (c < 3913 - ? (c < 3904 - ? c == 3840 - : c <= 3911) - : (c <= 3948 || (c >= 3976 && c <= 3980))) - : (c <= 4138 || (c < 4186 - ? (c < 4176 - ? c == 4159 - : c <= 4181) - : (c <= 4189 || c == 4193)))))))))))) - : (c <= 4198 || (c < 8144 - ? (c < 6272 - ? (c < 4824 - ? (c < 4696 - ? (c < 4301 - ? (c < 4238 - ? (c < 4213 - ? (c >= 4206 && c <= 4208) - : c <= 4225) - : (c <= 4238 || (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295))) - : (c <= 4301 || (c < 4682 - ? (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680) - : (c <= 4685 || (c >= 4688 && c <= 4694))))) - : (c <= 4696 || (c < 4786 - ? (c < 4746 - ? (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))) - : (c <= 4789 || (c < 4802 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : c <= 4800) - : (c <= 4805 || (c >= 4808 && c <= 4822))))))) - : (c <= 4880 || (c < 5870 - ? (c < 5112 - ? (c < 4992 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954) - : (c <= 5007 || (c >= 5024 && c <= 5109))) - : (c <= 5117 || (c < 5761 - ? (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759) - : (c <= 5786 || (c >= 5792 && c <= 5866))))) - : (c <= 5880 || (c < 5998 - ? (c < 5952 - ? (c < 5919 - ? (c >= 5888 && c <= 5905) - : c <= 5937) - : (c <= 5969 || (c >= 5984 && c <= 5996))) - : (c <= 6000 || (c < 6108 - ? (c < 6103 - ? (c >= 6016 && c <= 6067) - : c <= 6103) - : (c <= 6108 || (c >= 6176 && c <= 6264))))))))) - : (c <= 6312 || (c < 7357 - ? (c < 6917 - ? (c < 6528 - ? (c < 6400 - ? (c < 6320 - ? c == 6314 - : c <= 6389) - : (c <= 6430 || (c < 6512 - ? (c >= 6480 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6688 - ? (c < 6656 - ? (c >= 6576 && c <= 6601) - : c <= 6678) - : (c <= 6740 || c == 6823)))) - : (c <= 6963 || (c < 7168 - ? (c < 7086 - ? (c < 7043 - ? (c >= 6981 && c <= 6988) - : c <= 7072) - : (c <= 7087 || (c >= 7098 && c <= 7141))) - : (c <= 7203 || (c < 7296 - ? (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293) - : (c <= 7304 || (c >= 7312 && c <= 7354))))))) - : (c <= 7359 || (c < 8016 - ? (c < 7424 - ? (c < 7413 - ? (c < 7406 - ? (c >= 7401 && c <= 7404) - : c <= 7411) - : (c <= 7414 || c == 7418)) - : (c <= 7615 || (c < 7968 - ? (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965) - : (c <= 8005 || (c >= 8008 && c <= 8013))))) - : (c <= 8023 || (c < 8064 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c >= 8031 && c <= 8061))) - : (c <= 8116 || (c < 8130 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : c <= 8126) - : (c <= 8132 || (c >= 8134 && c <= 8140))))))))))) - : (c <= 8147 || (c < 12344 - ? (c < 11264 - ? (c < 8469 - ? (c < 8319 - ? (c < 8178 - ? (c < 8160 - ? (c >= 8150 && c <= 8155) - : c <= 8172) - : (c <= 8180 || (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305))) - : (c <= 8319 || (c < 8455 - ? (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450) - : (c <= 8455 || (c >= 8458 && c <= 8467))))) - : (c <= 8469 || (c < 8490 - ? (c < 8486 - ? (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484) - : (c <= 8486 || c == 8488)) - : (c <= 8505 || (c < 8526 - ? (c < 8517 - ? (c >= 8508 && c <= 8511) - : c <= 8521) - : (c <= 8526 || (c >= 8544 && c <= 8584))))))) - : (c <= 11492 || (c < 11688 - ? (c < 11565 - ? (c < 11520 - ? (c < 11506 - ? (c >= 11499 && c <= 11502) - : c <= 11507) - : (c <= 11557 || c == 11559)) - : (c <= 11565 || (c < 11648 - ? (c < 11631 - ? (c >= 11568 && c <= 11623) - : c <= 11631) - : (c <= 11670 || (c >= 11680 && c <= 11686))))) - : (c <= 11694 || (c < 11728 - ? (c < 11712 - ? (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710) - : (c <= 11718 || (c >= 11720 && c <= 11726))) - : (c <= 11734 || (c < 12321 - ? (c < 12293 - ? (c >= 11736 && c <= 11742) - : c <= 12295) - : (c <= 12329 || (c >= 12337 && c <= 12341))))))))) - : (c <= 12348 || (c < 42960 - ? (c < 42192 - ? (c < 12593 - ? (c < 12449 - ? (c < 12445 - ? (c >= 12353 && c <= 12438) - : c <= 12447) - : (c <= 12538 || (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591))) - : (c <= 12686 || (c < 13312 - ? (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799) - : (c <= 19903 || (c >= 19968 && c <= 42124))))) - : (c <= 42237 || (c < 42623 - ? (c < 42538 - ? (c < 42512 - ? (c >= 42240 && c <= 42508) - : c <= 42527) - : (c <= 42539 || (c >= 42560 && c <= 42606))) - : (c <= 42653 || (c < 42786 - ? (c < 42775 - ? (c >= 42656 && c <= 42735) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42954))))))) - : (c <= 42961 || (c < 43259 - ? (c < 43015 - ? (c < 42994 - ? (c < 42965 - ? c == 42963 - : c <= 42969) - : (c <= 43009 || (c >= 43011 && c <= 43013))) - : (c <= 43018 || (c < 43138 - ? (c < 43072 - ? (c >= 43020 && c <= 43042) - : c <= 43123) - : (c <= 43187 || (c >= 43250 && c <= 43255))))) - : (c <= 43259 || (c < 43396 - ? (c < 43312 - ? (c < 43274 - ? (c >= 43261 && c <= 43262) - : c <= 43301) - : (c <= 43334 || (c >= 43360 && c <= 43388))) - : (c <= 43442 || (c < 43494 - ? (c < 43488 - ? c == 43471 - : c <= 43492) - : (c <= 43503 || (c >= 43514 && c <= 43518))))))))))))))) - : (c <= 43560 || (c < 70751 - ? (c < 66964 - ? (c < 65008 - ? (c < 43888 - ? (c < 43739 - ? (c < 43697 - ? (c < 43616 - ? (c < 43588 - ? (c >= 43584 && c <= 43586) - : c <= 43595) - : (c <= 43638 || (c < 43646 - ? c == 43642 - : c <= 43695))) - : (c <= 43697 || (c < 43712 - ? (c < 43705 - ? (c >= 43701 && c <= 43702) - : c <= 43709) - : (c <= 43712 || c == 43714)))) - : (c <= 43741 || (c < 43793 - ? (c < 43777 - ? (c < 43762 - ? (c >= 43744 && c <= 43754) - : c <= 43764) - : (c <= 43782 || (c >= 43785 && c <= 43790))) - : (c <= 43798 || (c < 43824 - ? (c < 43816 - ? (c >= 43808 && c <= 43814) - : c <= 43822) - : (c <= 43866 || (c >= 43868 && c <= 43881))))))) - : (c <= 44002 || (c < 64298 - ? (c < 64112 - ? (c < 55243 - ? (c < 55216 - ? (c >= 44032 && c <= 55203) - : c <= 55238) - : (c <= 55291 || (c >= 63744 && c <= 64109))) - : (c <= 64217 || (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64285 || (c >= 64287 && c <= 64296))))) - : (c <= 64310 || (c < 64326 - ? (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))) - : (c <= 64433 || (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))))))))) - : (c <= 65017 || (c < 65616 - ? (c < 65440 - ? (c < 65149 - ? (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))) - : (c <= 65149 || (c < 65345 - ? (c < 65313 - ? (c >= 65151 && c <= 65276) - : c <= 65338) - : (c <= 65370 || (c >= 65382 && c <= 65437))))) - : (c <= 65470 || (c < 65536 - ? (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))) - : (c <= 65547 || (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))))))) - : (c <= 65629 || (c < 66504 - ? (c < 66304 - ? (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))) - : (c <= 66335 || (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c >= 66464 && c <= 66499))))) - : (c <= 66511 || (c < 66816 - ? (c < 66736 - ? (c < 66560 - ? (c >= 66513 && c <= 66517) - : c <= 66717) - : (c <= 66771 || (c >= 66776 && c <= 66811))) - : (c <= 66855 || (c < 66940 - ? (c < 66928 - ? (c >= 66864 && c <= 66915) - : c <= 66938) - : (c <= 66954 || (c >= 66956 && c <= 66962))))))))))) - : (c <= 66965 || (c < 69248 - ? (c < 67840 - ? (c < 67584 - ? (c < 67392 - ? (c < 66995 - ? (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993) - : (c <= 67001 || (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382))) - : (c <= 67413 || (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c >= 67506 && c <= 67514))))) - : (c <= 67589 || (c < 67647 - ? (c < 67639 - ? (c < 67594 - ? c == 67592 - : c <= 67637) - : (c <= 67640 || c == 67644)) - : (c <= 67669 || (c < 67808 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742) - : (c <= 67826 || (c >= 67828 && c <= 67829))))))) - : (c <= 67861 || (c < 68288 - ? (c < 68112 - ? (c < 68030 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : c <= 68023) - : (c <= 68031 || c == 68096)) - : (c <= 68115 || (c < 68192 - ? (c < 68121 - ? (c >= 68117 && c <= 68119) - : c <= 68149) - : (c <= 68220 || (c >= 68224 && c <= 68252))))) - : (c <= 68295 || (c < 68480 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68324) - : c <= 68405) - : (c <= 68437 || (c >= 68448 && c <= 68466))) - : (c <= 68497 || (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c >= 68864 && c <= 68899))))))))) - : (c <= 69289 || (c < 70108 - ? (c < 69763 - ? (c < 69552 - ? (c < 69415 - ? (c < 69376 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69445) - : c <= 69505))) - : (c <= 69572 || (c < 69745 - ? (c < 69635 - ? (c >= 69600 && c <= 69622) - : c <= 69687) - : (c <= 69746 || c == 69749)))) - : (c <= 69807 || (c < 69968 - ? (c < 69956 - ? (c < 69891 - ? (c >= 69840 && c <= 69864) - : c <= 69926) - : (c <= 69956 || c == 69959)) - : (c <= 70002 || (c < 70081 - ? (c < 70019 - ? c == 70006 - : c <= 70066) - : (c <= 70084 || c == 70106)))))) - : (c <= 70108 || (c < 70415 - ? (c < 70282 - ? (c < 70272 - ? (c < 70163 - ? (c >= 70144 && c <= 70161) - : c <= 70187) - : (c <= 70278 || c == 70280)) - : (c <= 70285 || (c < 70320 - ? (c < 70303 - ? (c >= 70287 && c <= 70301) - : c <= 70312) - : (c <= 70366 || (c >= 70405 && c <= 70412))))) - : (c <= 70416 || (c < 70461 - ? (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c >= 70453 && c <= 70457))) - : (c <= 70461 || (c < 70656 - ? (c < 70493 - ? c == 70480 - : c <= 70497) - : (c <= 70708 || (c >= 70727 && c <= 70730))))))))))))) - : (c <= 70753 || (c < 119966 - ? (c < 73063 - ? (c < 72096 - ? (c < 71488 - ? (c < 71168 - ? (c < 70855 - ? (c < 70852 - ? (c >= 70784 && c <= 70831) - : c <= 70853) - : (c <= 70855 || (c < 71128 - ? (c >= 71040 && c <= 71086) - : c <= 71131))) - : (c <= 71215 || (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c >= 71424 && c <= 71450))))) - : (c <= 71494 || (c < 71948 - ? (c < 71935 - ? (c < 71840 - ? (c >= 71680 && c <= 71723) - : c <= 71903) - : (c <= 71942 || c == 71945)) - : (c <= 71955 || (c < 71999 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71983) - : (c <= 71999 || c == 72001)))))) - : (c <= 72103 || (c < 72368 - ? (c < 72203 - ? (c < 72163 - ? (c < 72161 - ? (c >= 72106 && c <= 72144) - : c <= 72161) - : (c <= 72163 || c == 72192)) - : (c <= 72242 || (c < 72284 - ? (c < 72272 - ? c == 72250 - : c <= 72272) - : (c <= 72329 || c == 72349)))) - : (c <= 72440 || (c < 72960 - ? (c < 72768 - ? (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72750) - : (c <= 72768 || (c >= 72818 && c <= 72847))) - : (c <= 72966 || (c < 73030 - ? (c < 72971 - ? (c >= 72968 && c <= 72969) - : c <= 73008) - : (c <= 73030 || (c >= 73056 && c <= 73061))))))))) - : (c <= 73064 || (c < 94032 - ? (c < 92160 - ? (c < 74752 - ? (c < 73440 - ? (c < 73112 - ? (c >= 73066 && c <= 73097) - : c <= 73112) - : (c <= 73458 || (c < 73728 - ? c == 73648 - : c <= 74649))) - : (c <= 74862 || (c < 77824 - ? (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808) - : (c <= 78894 || (c >= 82944 && c <= 83526))))) - : (c <= 92728 || (c < 92992 - ? (c < 92880 - ? (c < 92784 - ? (c >= 92736 && c <= 92766) - : c <= 92862) - : (c <= 92909 || (c >= 92928 && c <= 92975))) - : (c <= 92995 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c >= 93952 && c <= 94026))))))) - : (c <= 94032 || (c < 110592 - ? (c < 100352 - ? (c < 94179 - ? (c < 94176 - ? (c >= 94099 && c <= 94111) - : c <= 94177) - : (c <= 94179 || (c >= 94208 && c <= 100343))) - : (c <= 101589 || (c < 110581 - ? (c < 110576 - ? (c >= 101632 && c <= 101640) - : c <= 110579) - : (c <= 110587 || (c >= 110589 && c <= 110590))))) - : (c <= 110882 || (c < 113776 - ? (c < 110960 - ? (c < 110948 - ? (c >= 110928 && c <= 110930) - : c <= 110951) - : (c <= 111355 || (c >= 113664 && c <= 113770))) - : (c <= 113788 || (c < 119808 - ? (c < 113808 - ? (c >= 113792 && c <= 113800) - : c <= 113817) - : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) - : (c <= 119967 || (c < 126464 - ? (c < 120598 - ? (c < 120094 - ? (c < 119997 - ? (c < 119977 - ? (c < 119973 - ? c == 119970 - : c <= 119974) - : (c <= 119980 || (c < 119995 - ? (c >= 119982 && c <= 119993) - : c <= 119995))) - : (c <= 120003 || (c < 120077 - ? (c < 120071 - ? (c >= 120005 && c <= 120069) - : c <= 120074) - : (c <= 120084 || (c >= 120086 && c <= 120092))))) - : (c <= 120121 || (c < 120146 - ? (c < 120134 - ? (c < 120128 - ? (c >= 120123 && c <= 120126) - : c <= 120132) - : (c <= 120134 || (c >= 120138 && c <= 120144))) - : (c <= 120485 || (c < 120540 - ? (c < 120514 - ? (c >= 120488 && c <= 120512) - : c <= 120538) - : (c <= 120570 || (c >= 120572 && c <= 120596))))))) - : (c <= 120628 || (c < 123214 - ? (c < 120746 - ? (c < 120688 - ? (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686) - : (c <= 120712 || (c >= 120714 && c <= 120744))) - : (c <= 120770 || (c < 123136 - ? (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654) - : (c <= 123180 || (c >= 123191 && c <= 123197))))) - : (c <= 123214 || (c < 124909 - ? (c < 124896 - ? (c < 123584 - ? (c >= 123536 && c <= 123565) - : c <= 123627) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126559 - ? (c < 126535 - ? (c < 126505 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (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_5(int32_t c) { return (c < 43520 ? (c < 4197 @@ -10826,7 +10882,7 @@ static inline bool sym_cmd_identifier_character_set_5(int32_t c) { ? (c < 750 ? (c < 216 ? (c < 170 - ? (c < 'c' + ? (c < 'j' ? (c >= 'A' && c <= 'Y') : c <= 'y') : (c <= 170 || (c < 192 @@ -24536,53 +24592,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(1123); if (lookahead == ',') ADVANCE(982); if (lookahead == '-') ADVANCE(1014); - if (lookahead == '.') ADVANCE(1063); + if (lookahead == '.') ADVANCE(72); if (lookahead == '/') ADVANCE(1111); if (lookahead == '0') ADVANCE(1214); + if (lookahead == ':') ADVANCE(979); if (lookahead == '<') ADVANCE(1135); - if (lookahead == '=') ADVANCE(79); + if (lookahead == '=') ADVANCE(352); if (lookahead == '>') ADVANCE(1002); - if (lookahead == '?') ADVANCE(1104); - if (lookahead == 'B') ADVANCE(1301); - if (lookahead == 'E') ADVANCE(84); - if (lookahead == 'G') ADVANCE(85); - if (lookahead == 'K') ADVANCE(86); - if (lookahead == 'M') ADVANCE(87); - if (lookahead == 'N') ADVANCE(122); - if (lookahead == 'P') ADVANCE(88); - if (lookahead == 'T') ADVANCE(89); - if (lookahead == 'Z') ADVANCE(90); + if (lookahead == '@') ADVANCE(1004); + if (lookahead == 'B') ADVANCE(1303); + if (lookahead == 'E') ADVANCE(465); + if (lookahead == 'G') ADVANCE(466); + if (lookahead == 'K') ADVANCE(467); + if (lookahead == 'M') ADVANCE(468); + if (lookahead == 'N') ADVANCE(504); + if (lookahead == 'P') ADVANCE(469); + if (lookahead == 'T') ADVANCE(470); + if (lookahead == 'Z') ADVANCE(471); if (lookahead == '[') ADVANCE(981); - if (lookahead == '_') ADVANCE(1058); + if (lookahead == ']') ADVANCE(983); + if (lookahead == '_') ADVANCE(464); if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(189); - if (lookahead == 'b') ADVANCE(1295); - if (lookahead == 'd') ADVANCE(123); - if (lookahead == 'e') ADVANCE(91); - if (lookahead == 'f') ADVANCE(124); - if (lookahead == 'g') ADVANCE(92); - if (lookahead == 'h') ADVANCE(219); - if (lookahead == 'i') ADVANCE(160); - if (lookahead == 'k') ADVANCE(93); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(202); - if (lookahead == 'o') ADVANCE(220); - if (lookahead == 'p') ADVANCE(95); - if (lookahead == 's') ADVANCE(147); - if (lookahead == 't') ADVANCE(97); - if (lookahead == 'u') ADVANCE(229); - if (lookahead == 'w') ADVANCE(179); - if (lookahead == 'x') ADVANCE(204); - if (lookahead == 'z') ADVANCE(98); + if (lookahead == 'a') ADVANCE(602); + if (lookahead == 'b') ADVANCE(1298); + if (lookahead == 'd') ADVANCE(514); + if (lookahead == 'e') ADVANCE(473); + if (lookahead == 'f') ADVANCE(508); + if (lookahead == 'g') ADVANCE(474); + if (lookahead == 'h') ADVANCE(631); + if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'k') ADVANCE(475); + if (lookahead == 'm') ADVANCE(477); + if (lookahead == 'n') ADVANCE(620); + if (lookahead == 'o') ADVANCE(633); + if (lookahead == 'p') ADVANCE(478); + if (lookahead == 's') ADVANCE(549); + if (lookahead == 't') ADVANCE(480); + if (lookahead == 'u') ADVANCE(651); + if (lookahead == 'w') ADVANCE(583); + if (lookahead == 'x') ADVANCE(622); + if (lookahead == 'z') ADVANCE(481); if (lookahead == '{') ADVANCE(1055); - if (lookahead == '|') ADVANCE(986); - if (lookahead == '}') ADVANCE(1056); - if (lookahead == 181) ADVANCE(230); + if (lookahead == 181) ADVANCE(650); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); + if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); END_STATE(); case 6: if (lookahead == '!') ADVANCE(78); @@ -25304,7 +25361,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(25) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(460); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(460); END_STATE(); case 26: if (lookahead == '"') ADVANCE(1633); @@ -26774,7 +26831,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(305) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); END_STATE(); case 306: if (eof) ADVANCE(339); @@ -26839,7 +26896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(306) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(690); END_STATE(); case 307: if (eof) ADVANCE(339); @@ -27347,7 +27404,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(318) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); END_STATE(); case 319: if (eof) ADVANCE(339); @@ -27454,7 +27511,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(321) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); END_STATE(); case 322: if (eof) ADVANCE(339); @@ -27528,7 +27585,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(321) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(954); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(954); END_STATE(); case 324: if (eof) ADVANCE(339); @@ -27912,57 +27969,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+') ADVANCE(1123); if (lookahead == ',') ADVANCE(982); if (lookahead == '-') ADVANCE(1014); - if (lookahead == '.') ADVANCE(72); + if (lookahead == '.') ADVANCE(1063); if (lookahead == '/') ADVANCE(1111); if (lookahead == '0') ADVANCE(1214); if (lookahead == ':') ADVANCE(979); if (lookahead == ';') ADVANCE(365); if (lookahead == '<') ADVANCE(1135); - if (lookahead == '=') ADVANCE(352); + if (lookahead == '=') ADVANCE(79); if (lookahead == '>') ADVANCE(1002); - if (lookahead == '@') ADVANCE(1004); - if (lookahead == 'B') ADVANCE(1303); - if (lookahead == 'E') ADVANCE(465); - if (lookahead == 'G') ADVANCE(466); - if (lookahead == 'K') ADVANCE(467); - if (lookahead == 'M') ADVANCE(468); - if (lookahead == 'N') ADVANCE(504); - if (lookahead == 'P') ADVANCE(469); - if (lookahead == 'T') ADVANCE(470); - if (lookahead == 'Z') ADVANCE(471); + if (lookahead == '?') ADVANCE(1104); + if (lookahead == 'B') ADVANCE(1301); + if (lookahead == 'E') ADVANCE(84); + if (lookahead == 'G') ADVANCE(85); + if (lookahead == 'K') ADVANCE(86); + if (lookahead == 'M') ADVANCE(87); + if (lookahead == 'N') ADVANCE(122); + if (lookahead == 'P') ADVANCE(88); + if (lookahead == 'T') ADVANCE(89); + if (lookahead == 'Z') ADVANCE(90); if (lookahead == '[') ADVANCE(981); if (lookahead == ']') ADVANCE(983); - if (lookahead == '_') ADVANCE(464); + if (lookahead == '_') ADVANCE(1058); if (lookahead == '`') ADVANCE(121); - if (lookahead == 'a') ADVANCE(602); - if (lookahead == 'b') ADVANCE(1298); - if (lookahead == 'd') ADVANCE(514); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(508); - if (lookahead == 'g') ADVANCE(474); - if (lookahead == 'h') ADVANCE(631); - if (lookahead == 'i') ADVANCE(597); - if (lookahead == 'k') ADVANCE(475); - if (lookahead == 'm') ADVANCE(477); - if (lookahead == 'n') ADVANCE(620); - if (lookahead == 'o') ADVANCE(633); - if (lookahead == 'p') ADVANCE(478); - if (lookahead == 's') ADVANCE(549); - if (lookahead == 't') ADVANCE(480); - if (lookahead == 'u') ADVANCE(651); - if (lookahead == 'w') ADVANCE(583); - if (lookahead == 'x') ADVANCE(622); - if (lookahead == 'z') ADVANCE(481); + if (lookahead == 'a') ADVANCE(189); + if (lookahead == 'b') ADVANCE(1295); + if (lookahead == 'd') ADVANCE(123); + if (lookahead == 'e') ADVANCE(91); + if (lookahead == 'f') ADVANCE(124); + if (lookahead == 'g') ADVANCE(92); + if (lookahead == 'h') ADVANCE(219); + if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'k') ADVANCE(93); + if (lookahead == 'm') ADVANCE(94); + if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'o') ADVANCE(220); + if (lookahead == 'p') ADVANCE(95); + if (lookahead == 's') ADVANCE(147); + if (lookahead == 't') ADVANCE(97); + if (lookahead == 'u') ADVANCE(229); + if (lookahead == 'w') ADVANCE(179); + if (lookahead == 'x') ADVANCE(204); + if (lookahead == 'z') ADVANCE(98); if (lookahead == '{') ADVANCE(1055); if (lookahead == '|') ADVANCE(986); if (lookahead == '}') ADVANCE(1056); - if (lookahead == 181) ADVANCE(650); + if (lookahead == 181) ADVANCE(230); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(336) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_5(lookahead)) ADVANCE(690); END_STATE(); case 337: if (eof) ADVANCE(339); @@ -28003,7 +28059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(337) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); END_STATE(); case 338: if (eof) ADVANCE(339); @@ -28046,7 +28102,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(338) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(1217); - if (sym_cmd_identifier_character_set_3(lookahead)) ADVANCE(690); + if (sym_cmd_identifier_character_set_4(lookahead)) ADVANCE(690); END_STATE(); case 339: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -35962,9 +36018,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 314}, [9] = {.lex_state = 314}, [10] = {.lex_state = 336}, - [11] = {.lex_state = 336}, + [11] = {.lex_state = 5}, [12] = {.lex_state = 5}, - [13] = {.lex_state = 5}, + [13] = {.lex_state = 336}, [14] = {.lex_state = 25}, [15] = {.lex_state = 25}, [16] = {.lex_state = 338}, @@ -36048,16 +36104,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [94] = {.lex_state = 313}, [95] = {.lex_state = 311}, [96] = {.lex_state = 313}, - [97] = {.lex_state = 9}, - [98] = {.lex_state = 20}, + [97] = {.lex_state = 313}, + [98] = {.lex_state = 9}, [99] = {.lex_state = 313}, - [100] = {.lex_state = 311}, - [101] = {.lex_state = 9}, - [102] = {.lex_state = 313}, - [103] = {.lex_state = 20}, + [100] = {.lex_state = 20}, + [101] = {.lex_state = 20}, + [102] = {.lex_state = 9}, + [103] = {.lex_state = 311}, [104] = {.lex_state = 338}, - [105] = {.lex_state = 311}, - [106] = {.lex_state = 338}, + [105] = {.lex_state = 338}, + [106] = {.lex_state = 311}, [107] = {.lex_state = 311}, [108] = {.lex_state = 15}, [109] = {.lex_state = 15}, @@ -36213,111 +36269,111 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [259] = {.lex_state = 305}, [260] = {.lex_state = 305}, [261] = {.lex_state = 305}, - [262] = {.lex_state = 26}, - [263] = {.lex_state = 317}, - [264] = {.lex_state = 26}, + [262] = {.lex_state = 317}, + [263] = {.lex_state = 26}, + [264] = {.lex_state = 317}, [265] = {.lex_state = 26}, - [266] = {.lex_state = 317}, + [266] = {.lex_state = 26}, [267] = {.lex_state = 26}, - [268] = {.lex_state = 26}, + [268] = {.lex_state = 317}, [269] = {.lex_state = 317}, [270] = {.lex_state = 317}, - [271] = {.lex_state = 317}, - [272] = {.lex_state = 317}, + [271] = {.lex_state = 26}, + [272] = {.lex_state = 26}, [273] = {.lex_state = 26}, [274] = {.lex_state = 26}, - [275] = {.lex_state = 317}, + [275] = {.lex_state = 26}, [276] = {.lex_state = 26}, - [277] = {.lex_state = 317}, - [278] = {.lex_state = 317}, + [277] = {.lex_state = 26}, + [278] = {.lex_state = 26}, [279] = {.lex_state = 317}, - [280] = {.lex_state = 26}, - [281] = {.lex_state = 26}, + [280] = {.lex_state = 317}, + [281] = {.lex_state = 317}, [282] = {.lex_state = 317}, - [283] = {.lex_state = 26}, - [284] = {.lex_state = 26}, - [285] = {.lex_state = 26}, + [283] = {.lex_state = 317}, + [284] = {.lex_state = 317}, + [285] = {.lex_state = 316}, [286] = {.lex_state = 26}, [287] = {.lex_state = 317}, [288] = {.lex_state = 317}, [289] = {.lex_state = 26}, - [290] = {.lex_state = 26}, - [291] = {.lex_state = 315}, - [292] = {.lex_state = 317}, + [290] = {.lex_state = 317}, + [291] = {.lex_state = 317}, + [292] = {.lex_state = 26}, [293] = {.lex_state = 316}, - [294] = {.lex_state = 316}, - [295] = {.lex_state = 317}, - [296] = {.lex_state = 317}, + [294] = {.lex_state = 26}, + [295] = {.lex_state = 26}, + [296] = {.lex_state = 26}, [297] = {.lex_state = 317}, [298] = {.lex_state = 317}, [299] = {.lex_state = 317}, - [300] = {.lex_state = 26}, + [300] = {.lex_state = 315}, [301] = {.lex_state = 26}, - [302] = {.lex_state = 26}, - [303] = {.lex_state = 26}, + [302] = {.lex_state = 317}, + [303] = {.lex_state = 317}, [304] = {.lex_state = 317}, - [305] = {.lex_state = 317}, + [305] = {.lex_state = 316}, [306] = {.lex_state = 316}, - [307] = {.lex_state = 316}, + [307] = {.lex_state = 26}, [308] = {.lex_state = 317}, - [309] = {.lex_state = 317}, - [310] = {.lex_state = 317}, + [309] = {.lex_state = 26}, + [310] = {.lex_state = 318}, [311] = {.lex_state = 26}, [312] = {.lex_state = 26}, [313] = {.lex_state = 316}, [314] = {.lex_state = 316}, - [315] = {.lex_state = 318}, - [316] = {.lex_state = 26}, - [317] = {.lex_state = 317}, - [318] = {.lex_state = 316}, - [319] = {.lex_state = 316}, - [320] = {.lex_state = 315}, - [321] = {.lex_state = 318}, - [322] = {.lex_state = 26}, + [315] = {.lex_state = 316}, + [316] = {.lex_state = 317}, + [317] = {.lex_state = 318}, + [318] = {.lex_state = 26}, + [319] = {.lex_state = 315}, + [320] = {.lex_state = 317}, + [321] = {.lex_state = 316}, + [322] = {.lex_state = 317}, [323] = {.lex_state = 318}, [324] = {.lex_state = 26}, [325] = {.lex_state = 315}, - [326] = {.lex_state = 321}, + [326] = {.lex_state = 315}, [327] = {.lex_state = 315}, - [328] = {.lex_state = 26}, + [328] = {.lex_state = 315}, [329] = {.lex_state = 315}, [330] = {.lex_state = 315}, [331] = {.lex_state = 315}, - [332] = {.lex_state = 318}, + [332] = {.lex_state = 315}, [333] = {.lex_state = 315}, - [334] = {.lex_state = 26}, + [334] = {.lex_state = 315}, [335] = {.lex_state = 315}, [336] = {.lex_state = 315}, - [337] = {.lex_state = 321}, + [337] = {.lex_state = 315}, [338] = {.lex_state = 315}, [339] = {.lex_state = 315}, - [340] = {.lex_state = 321}, - [341] = {.lex_state = 315}, + [340] = {.lex_state = 315}, + [341] = {.lex_state = 318}, [342] = {.lex_state = 315}, [343] = {.lex_state = 315}, [344] = {.lex_state = 315}, [345] = {.lex_state = 315}, [346] = {.lex_state = 315}, - [347] = {.lex_state = 315}, - [348] = {.lex_state = 318}, + [347] = {.lex_state = 26}, + [348] = {.lex_state = 321}, [349] = {.lex_state = 315}, - [350] = {.lex_state = 315}, + [350] = {.lex_state = 321}, [351] = {.lex_state = 315}, [352] = {.lex_state = 315}, [353] = {.lex_state = 315}, [354] = {.lex_state = 315}, - [355] = {.lex_state = 321}, - [356] = {.lex_state = 315}, + [355] = {.lex_state = 315}, + [356] = {.lex_state = 321}, [357] = {.lex_state = 315}, - [358] = {.lex_state = 315}, + [358] = {.lex_state = 317}, [359] = {.lex_state = 315}, [360] = {.lex_state = 315}, - [361] = {.lex_state = 315}, - [362] = {.lex_state = 317}, - [363] = {.lex_state = 317}, - [364] = {.lex_state = 317}, - [365] = {.lex_state = 318}, - [366] = {.lex_state = 315}, + [361] = {.lex_state = 321}, + [362] = {.lex_state = 315}, + [363] = {.lex_state = 315}, + [364] = {.lex_state = 315}, + [365] = {.lex_state = 315}, + [366] = {.lex_state = 318}, [367] = {.lex_state = 315}, [368] = {.lex_state = 315}, [369] = {.lex_state = 315}, @@ -36333,15 +36389,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [379] = {.lex_state = 315}, [380] = {.lex_state = 315}, [381] = {.lex_state = 315}, - [382] = {.lex_state = 315}, - [383] = {.lex_state = 315}, + [382] = {.lex_state = 26}, + [383] = {.lex_state = 317}, [384] = {.lex_state = 315}, [385] = {.lex_state = 315}, [386] = {.lex_state = 315}, [387] = {.lex_state = 315}, - [388] = {.lex_state = 321}, - [389] = {.lex_state = 315}, - [390] = {.lex_state = 315}, + [388] = {.lex_state = 318}, + [389] = {.lex_state = 321}, + [390] = {.lex_state = 317}, [391] = {.lex_state = 315}, [392] = {.lex_state = 315}, [393] = {.lex_state = 315}, @@ -36351,16 +36407,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [397] = {.lex_state = 315}, [398] = {.lex_state = 315}, [399] = {.lex_state = 315}, - [400] = {.lex_state = 321}, + [400] = {.lex_state = 315}, [401] = {.lex_state = 315}, [402] = {.lex_state = 315}, - [403] = {.lex_state = 321}, + [403] = {.lex_state = 315}, [404] = {.lex_state = 315}, [405] = {.lex_state = 315}, [406] = {.lex_state = 315}, [407] = {.lex_state = 315}, [408] = {.lex_state = 315}, - [409] = {.lex_state = 321}, + [409] = {.lex_state = 315}, [410] = {.lex_state = 315}, [411] = {.lex_state = 315}, [412] = {.lex_state = 315}, @@ -36377,29 +36433,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [423] = {.lex_state = 315}, [424] = {.lex_state = 315}, [425] = {.lex_state = 315}, - [426] = {.lex_state = 315}, + [426] = {.lex_state = 321}, [427] = {.lex_state = 315}, [428] = {.lex_state = 315}, - [429] = {.lex_state = 315}, + [429] = {.lex_state = 321}, [430] = {.lex_state = 315}, [431] = {.lex_state = 315}, [432] = {.lex_state = 315}, [433] = {.lex_state = 315}, - [434] = {.lex_state = 321}, + [434] = {.lex_state = 315}, [435] = {.lex_state = 315}, [436] = {.lex_state = 315}, - [437] = {.lex_state = 321}, + [437] = {.lex_state = 315}, [438] = {.lex_state = 315}, [439] = {.lex_state = 315}, [440] = {.lex_state = 315}, [441] = {.lex_state = 315}, - [442] = {.lex_state = 315}, + [442] = {.lex_state = 321}, [443] = {.lex_state = 315}, [444] = {.lex_state = 315}, [445] = {.lex_state = 315}, - [446] = {.lex_state = 315}, + [446] = {.lex_state = 321}, [447] = {.lex_state = 315}, - [448] = {.lex_state = 315}, + [448] = {.lex_state = 321}, [449] = {.lex_state = 315}, [450] = {.lex_state = 315}, [451] = {.lex_state = 315}, @@ -36413,70 +36469,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [459] = {.lex_state = 315}, [460] = {.lex_state = 315}, [461] = {.lex_state = 323}, - [462] = {.lex_state = 318}, - [463] = {.lex_state = 328}, + [462] = {.lex_state = 328}, + [463] = {.lex_state = 318}, [464] = {.lex_state = 318}, [465] = {.lex_state = 318}, - [466] = {.lex_state = 318}, - [467] = {.lex_state = 321}, - [468] = {.lex_state = 318}, - [469] = {.lex_state = 323}, + [466] = {.lex_state = 328}, + [467] = {.lex_state = 318}, + [468] = {.lex_state = 321}, + [469] = {.lex_state = 326}, [470] = {.lex_state = 318}, - [471] = {.lex_state = 328}, + [471] = {.lex_state = 321}, [472] = {.lex_state = 318}, - [473] = {.lex_state = 326}, - [474] = {.lex_state = 321}, - [475] = {.lex_state = 328}, + [473] = {.lex_state = 328}, + [474] = {.lex_state = 328}, + [475] = {.lex_state = 321}, [476] = {.lex_state = 318}, - [477] = {.lex_state = 328}, - [478] = {.lex_state = 321}, + [477] = {.lex_state = 318}, + [478] = {.lex_state = 323}, [479] = {.lex_state = 328}, - [480] = {.lex_state = 318}, - [481] = {.lex_state = 328}, + [480] = {.lex_state = 328}, + [481] = {.lex_state = 318}, [482] = {.lex_state = 328}, [483] = {.lex_state = 318}, - [484] = {.lex_state = 318}, + [484] = {.lex_state = 328}, [485] = {.lex_state = 328}, - [486] = {.lex_state = 321}, - [487] = {.lex_state = 328}, + [486] = {.lex_state = 328}, + [487] = {.lex_state = 318}, [488] = {.lex_state = 328}, [489] = {.lex_state = 318}, [490] = {.lex_state = 318}, [491] = {.lex_state = 318}, - [492] = {.lex_state = 318}, - [493] = {.lex_state = 328}, + [492] = {.lex_state = 321}, + [493] = {.lex_state = 326}, [494] = {.lex_state = 328}, - [495] = {.lex_state = 328}, - [496] = {.lex_state = 318}, - [497] = {.lex_state = 328}, - [498] = {.lex_state = 328}, - [499] = {.lex_state = 318}, - [500] = {.lex_state = 321}, - [501] = {.lex_state = 318}, - [502] = {.lex_state = 318}, - [503] = {.lex_state = 321}, - [504] = {.lex_state = 326}, + [495] = {.lex_state = 321}, + [496] = {.lex_state = 321}, + [497] = {.lex_state = 318}, + [498] = {.lex_state = 318}, + [499] = {.lex_state = 328}, + [500] = {.lex_state = 318}, + [501] = {.lex_state = 328}, + [502] = {.lex_state = 328}, + [503] = {.lex_state = 318}, + [504] = {.lex_state = 318}, [505] = {.lex_state = 318}, - [506] = {.lex_state = 328}, - [507] = {.lex_state = 318}, - [508] = {.lex_state = 318}, + [506] = {.lex_state = 318}, + [507] = {.lex_state = 328}, + [508] = {.lex_state = 328}, [509] = {.lex_state = 318}, [510] = {.lex_state = 318}, - [511] = {.lex_state = 328}, + [511] = {.lex_state = 318}, [512] = {.lex_state = 318}, [513] = {.lex_state = 318}, [514] = {.lex_state = 318}, [515] = {.lex_state = 318}, [516] = {.lex_state = 318}, [517] = {.lex_state = 318}, - [518] = {.lex_state = 328}, + [518] = {.lex_state = 318}, [519] = {.lex_state = 318}, [520] = {.lex_state = 318}, [521] = {.lex_state = 318}, [522] = {.lex_state = 318}, - [523] = {.lex_state = 328}, - [524] = {.lex_state = 318}, - [525] = {.lex_state = 318}, + [523] = {.lex_state = 318}, + [524] = {.lex_state = 328}, + [525] = {.lex_state = 328}, [526] = {.lex_state = 318}, [527] = {.lex_state = 318}, [528] = {.lex_state = 318}, @@ -36573,7 +36629,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 318}, [620] = {.lex_state = 318}, [621] = {.lex_state = 318}, - [622] = {.lex_state = 318}, + [622] = {.lex_state = 319}, [623] = {.lex_state = 318}, [624] = {.lex_state = 318}, [625] = {.lex_state = 318}, @@ -36581,15 +36637,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [627] = {.lex_state = 318}, [628] = {.lex_state = 318}, [629] = {.lex_state = 318}, - [630] = {.lex_state = 4}, + [630] = {.lex_state = 318}, [631] = {.lex_state = 318}, [632] = {.lex_state = 318}, [633] = {.lex_state = 318}, - [634] = {.lex_state = 4}, + [634] = {.lex_state = 318}, [635] = {.lex_state = 318}, [636] = {.lex_state = 318}, [637] = {.lex_state = 318}, - [638] = {.lex_state = 318}, + [638] = {.lex_state = 4}, [639] = {.lex_state = 318}, [640] = {.lex_state = 318}, [641] = {.lex_state = 318}, @@ -36604,7 +36660,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [650] = {.lex_state = 318}, [651] = {.lex_state = 318}, [652] = {.lex_state = 318}, - [653] = {.lex_state = 319}, + [653] = {.lex_state = 318}, [654] = {.lex_state = 318}, [655] = {.lex_state = 318}, [656] = {.lex_state = 318}, @@ -36628,7 +36684,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [674] = {.lex_state = 318}, [675] = {.lex_state = 318}, [676] = {.lex_state = 318}, - [677] = {.lex_state = 318}, + [677] = {.lex_state = 4}, [678] = {.lex_state = 318}, [679] = {.lex_state = 318}, [680] = {.lex_state = 318}, @@ -36650,258 +36706,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [696] = {.lex_state = 318}, [697] = {.lex_state = 318}, [698] = {.lex_state = 318}, - [699] = {.lex_state = 318}, - [700] = {.lex_state = 319}, + [699] = {.lex_state = 319}, + [700] = {.lex_state = 318}, [701] = {.lex_state = 318}, [702] = {.lex_state = 318}, - [703] = {.lex_state = 4}, + [703] = {.lex_state = 318}, [704] = {.lex_state = 318}, [705] = {.lex_state = 318}, [706] = {.lex_state = 318}, [707] = {.lex_state = 318}, - [708] = {.lex_state = 318}, + [708] = {.lex_state = 4}, [709] = {.lex_state = 318}, - [710] = {.lex_state = 318}, - [711] = {.lex_state = 4}, - [712] = {.lex_state = 318}, + [710] = {.lex_state = 4}, + [711] = {.lex_state = 318}, + [712] = {.lex_state = 4}, [713] = {.lex_state = 318}, - [714] = {.lex_state = 4}, + [714] = {.lex_state = 318}, [715] = {.lex_state = 318}, - [716] = {.lex_state = 318}, + [716] = {.lex_state = 4}, [717] = {.lex_state = 318}, - [718] = {.lex_state = 318}, + [718] = {.lex_state = 4}, [719] = {.lex_state = 318}, [720] = {.lex_state = 318}, - [721] = {.lex_state = 4}, + [721] = {.lex_state = 318}, [722] = {.lex_state = 318}, [723] = {.lex_state = 318}, [724] = {.lex_state = 318}, [725] = {.lex_state = 318}, - [726] = {.lex_state = 4}, + [726] = {.lex_state = 318}, [727] = {.lex_state = 318}, [728] = {.lex_state = 318}, [729] = {.lex_state = 318}, [730] = {.lex_state = 318}, - [731] = {.lex_state = 37}, - [732] = {.lex_state = 5}, + [731] = {.lex_state = 4}, + [732] = {.lex_state = 336}, [733] = {.lex_state = 4}, - [734] = {.lex_state = 4}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 4}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 5}, - [740] = {.lex_state = 4}, - [741] = {.lex_state = 4}, - [742] = {.lex_state = 5}, - [743] = {.lex_state = 5}, - [744] = {.lex_state = 338}, - [745] = {.lex_state = 5}, - [746] = {.lex_state = 4}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 4}, - [749] = {.lex_state = 5}, - [750] = {.lex_state = 4}, - [751] = {.lex_state = 5}, - [752] = {.lex_state = 5}, + [734] = {.lex_state = 336}, + [735] = {.lex_state = 336}, + [736] = {.lex_state = 4}, + [737] = {.lex_state = 338}, + [738] = {.lex_state = 336}, + [739] = {.lex_state = 4}, + [740] = {.lex_state = 336}, + [741] = {.lex_state = 336}, + [742] = {.lex_state = 4}, + [743] = {.lex_state = 336}, + [744] = {.lex_state = 336}, + [745] = {.lex_state = 4}, + [746] = {.lex_state = 37}, + [747] = {.lex_state = 336}, + [748] = {.lex_state = 336}, + [749] = {.lex_state = 4}, + [750] = {.lex_state = 336}, + [751] = {.lex_state = 336}, + [752] = {.lex_state = 4}, [753] = {.lex_state = 338}, - [754] = {.lex_state = 5}, - [755] = {.lex_state = 5}, - [756] = {.lex_state = 4}, - [757] = {.lex_state = 5}, + [754] = {.lex_state = 336}, + [755] = {.lex_state = 336}, + [756] = {.lex_state = 336}, + [757] = {.lex_state = 4}, [758] = {.lex_state = 4}, [759] = {.lex_state = 4}, [760] = {.lex_state = 4}, [761] = {.lex_state = 4}, [762] = {.lex_state = 338}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 5}, - [765] = {.lex_state = 5}, - [766] = {.lex_state = 4}, - [767] = {.lex_state = 4}, - [768] = {.lex_state = 320}, + [763] = {.lex_state = 336}, + [764] = {.lex_state = 336}, + [765] = {.lex_state = 320}, + [766] = {.lex_state = 336}, + [767] = {.lex_state = 320}, + [768] = {.lex_state = 4}, [769] = {.lex_state = 4}, [770] = {.lex_state = 320}, - [771] = {.lex_state = 4}, - [772] = {.lex_state = 5}, + [771] = {.lex_state = 320}, + [772] = {.lex_state = 320}, [773] = {.lex_state = 4}, [774] = {.lex_state = 4}, [775] = {.lex_state = 4}, [776] = {.lex_state = 4}, [777] = {.lex_state = 4}, - [778] = {.lex_state = 320}, + [778] = {.lex_state = 4}, [779] = {.lex_state = 320}, - [780] = {.lex_state = 4}, - [781] = {.lex_state = 4}, - [782] = {.lex_state = 4}, - [783] = {.lex_state = 320}, + [780] = {.lex_state = 320}, + [781] = {.lex_state = 320}, + [782] = {.lex_state = 320}, + [783] = {.lex_state = 336}, [784] = {.lex_state = 320}, - [785] = {.lex_state = 320}, - [786] = {.lex_state = 320}, - [787] = {.lex_state = 320}, + [785] = {.lex_state = 4}, + [786] = {.lex_state = 4}, + [787] = {.lex_state = 4}, [788] = {.lex_state = 4}, [789] = {.lex_state = 4}, [790] = {.lex_state = 320}, [791] = {.lex_state = 320}, - [792] = {.lex_state = 4}, + [792] = {.lex_state = 320}, [793] = {.lex_state = 4}, - [794] = {.lex_state = 4}, - [795] = {.lex_state = 320}, + [794] = {.lex_state = 320}, + [795] = {.lex_state = 336}, [796] = {.lex_state = 320}, - [797] = {.lex_state = 5}, - [798] = {.lex_state = 4}, - [799] = {.lex_state = 320}, + [797] = {.lex_state = 320}, + [798] = {.lex_state = 320}, + [799] = {.lex_state = 4}, [800] = {.lex_state = 320}, [801] = {.lex_state = 320}, - [802] = {.lex_state = 320}, + [802] = {.lex_state = 4}, [803] = {.lex_state = 320}, [804] = {.lex_state = 320}, [805] = {.lex_state = 4}, - [806] = {.lex_state = 320}, - [807] = {.lex_state = 320}, + [806] = {.lex_state = 4}, + [807] = {.lex_state = 4}, [808] = {.lex_state = 320}, - [809] = {.lex_state = 320}, - [810] = {.lex_state = 4}, + [809] = {.lex_state = 4}, + [810] = {.lex_state = 320}, [811] = {.lex_state = 320}, [812] = {.lex_state = 320}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 5}, - [815] = {.lex_state = 5}, - [816] = {.lex_state = 5}, - [817] = {.lex_state = 4}, - [818] = {.lex_state = 24}, - [819] = {.lex_state = 5}, - [820] = {.lex_state = 5}, - [821] = {.lex_state = 320}, + [813] = {.lex_state = 4}, + [814] = {.lex_state = 4}, + [815] = {.lex_state = 4}, + [816] = {.lex_state = 336}, + [817] = {.lex_state = 336}, + [818] = {.lex_state = 336}, + [819] = {.lex_state = 4}, + [820] = {.lex_state = 4}, + [821] = {.lex_state = 4}, [822] = {.lex_state = 4}, [823] = {.lex_state = 4}, [824] = {.lex_state = 4}, - [825] = {.lex_state = 320}, - [826] = {.lex_state = 320}, - [827] = {.lex_state = 320}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 5}, - [830] = {.lex_state = 4}, - [831] = {.lex_state = 5}, - [832] = {.lex_state = 5}, - [833] = {.lex_state = 5}, - [834] = {.lex_state = 5}, - [835] = {.lex_state = 5}, - [836] = {.lex_state = 5}, - [837] = {.lex_state = 320}, - [838] = {.lex_state = 5}, - [839] = {.lex_state = 5}, + [825] = {.lex_state = 336}, + [826] = {.lex_state = 336}, + [827] = {.lex_state = 336}, + [828] = {.lex_state = 336}, + [829] = {.lex_state = 336}, + [830] = {.lex_state = 336}, + [831] = {.lex_state = 336}, + [832] = {.lex_state = 4}, + [833] = {.lex_state = 4}, + [834] = {.lex_state = 4}, + [835] = {.lex_state = 4}, + [836] = {.lex_state = 4}, + [837] = {.lex_state = 4}, + [838] = {.lex_state = 4}, + [839] = {.lex_state = 4}, [840] = {.lex_state = 4}, - [841] = {.lex_state = 320}, + [841] = {.lex_state = 4}, [842] = {.lex_state = 320}, - [843] = {.lex_state = 320}, - [844] = {.lex_state = 320}, + [843] = {.lex_state = 4}, + [844] = {.lex_state = 4}, [845] = {.lex_state = 320}, - [846] = {.lex_state = 320}, - [847] = {.lex_state = 4}, + [846] = {.lex_state = 336}, + [847] = {.lex_state = 336}, [848] = {.lex_state = 320}, - [849] = {.lex_state = 320}, - [850] = {.lex_state = 320}, - [851] = {.lex_state = 4}, - [852] = {.lex_state = 4}, - [853] = {.lex_state = 4}, - [854] = {.lex_state = 4}, - [855] = {.lex_state = 320}, - [856] = {.lex_state = 4}, - [857] = {.lex_state = 4}, + [849] = {.lex_state = 4}, + [850] = {.lex_state = 24}, + [851] = {.lex_state = 336}, + [852] = {.lex_state = 320}, + [853] = {.lex_state = 336}, + [854] = {.lex_state = 24}, + [855] = {.lex_state = 4}, + [856] = {.lex_state = 320}, + [857] = {.lex_state = 336}, [858] = {.lex_state = 4}, [859] = {.lex_state = 4}, [860] = {.lex_state = 4}, - [861] = {.lex_state = 4}, - [862] = {.lex_state = 5}, - [863] = {.lex_state = 4}, - [864] = {.lex_state = 5}, - [865] = {.lex_state = 5}, + [861] = {.lex_state = 320}, + [862] = {.lex_state = 320}, + [863] = {.lex_state = 320}, + [864] = {.lex_state = 320}, + [865] = {.lex_state = 320}, [866] = {.lex_state = 4}, - [867] = {.lex_state = 4}, + [867] = {.lex_state = 320}, [868] = {.lex_state = 4}, - [869] = {.lex_state = 4}, - [870] = {.lex_state = 4}, + [869] = {.lex_state = 320}, + [870] = {.lex_state = 320}, [871] = {.lex_state = 4}, - [872] = {.lex_state = 5}, - [873] = {.lex_state = 5}, - [874] = {.lex_state = 4}, + [872] = {.lex_state = 4}, + [873] = {.lex_state = 320}, + [874] = {.lex_state = 320}, [875] = {.lex_state = 4}, - [876] = {.lex_state = 4}, - [877] = {.lex_state = 4}, - [878] = {.lex_state = 4}, + [876] = {.lex_state = 320}, + [877] = {.lex_state = 320}, + [878] = {.lex_state = 320}, [879] = {.lex_state = 4}, - [880] = {.lex_state = 5}, - [881] = {.lex_state = 5}, - [882] = {.lex_state = 5}, - [883] = {.lex_state = 5}, - [884] = {.lex_state = 5}, - [885] = {.lex_state = 5}, - [886] = {.lex_state = 5}, - [887] = {.lex_state = 5}, - [888] = {.lex_state = 5}, - [889] = {.lex_state = 5}, - [890] = {.lex_state = 5}, - [891] = {.lex_state = 5}, - [892] = {.lex_state = 5}, - [893] = {.lex_state = 5}, - [894] = {.lex_state = 5}, - [895] = {.lex_state = 5}, - [896] = {.lex_state = 5}, - [897] = {.lex_state = 5}, - [898] = {.lex_state = 5}, - [899] = {.lex_state = 5}, - [900] = {.lex_state = 5}, - [901] = {.lex_state = 5}, - [902] = {.lex_state = 5}, - [903] = {.lex_state = 5}, - [904] = {.lex_state = 24}, - [905] = {.lex_state = 5}, + [880] = {.lex_state = 320}, + [881] = {.lex_state = 320}, + [882] = {.lex_state = 336}, + [883] = {.lex_state = 336}, + [884] = {.lex_state = 336}, + [885] = {.lex_state = 336}, + [886] = {.lex_state = 4}, + [887] = {.lex_state = 4}, + [888] = {.lex_state = 4}, + [889] = {.lex_state = 4}, + [890] = {.lex_state = 4}, + [891] = {.lex_state = 4}, + [892] = {.lex_state = 336}, + [893] = {.lex_state = 336}, + [894] = {.lex_state = 320}, + [895] = {.lex_state = 336}, + [896] = {.lex_state = 336}, + [897] = {.lex_state = 336}, + [898] = {.lex_state = 4}, + [899] = {.lex_state = 336}, + [900] = {.lex_state = 336}, + [901] = {.lex_state = 336}, + [902] = {.lex_state = 320}, + [903] = {.lex_state = 336}, + [904] = {.lex_state = 336}, + [905] = {.lex_state = 4}, [906] = {.lex_state = 4}, - [907] = {.lex_state = 5}, - [908] = {.lex_state = 4}, + [907] = {.lex_state = 320}, + [908] = {.lex_state = 336}, [909] = {.lex_state = 4}, - [910] = {.lex_state = 4}, - [911] = {.lex_state = 4}, - [912] = {.lex_state = 5}, - [913] = {.lex_state = 4}, - [914] = {.lex_state = 4}, - [915] = {.lex_state = 5}, + [910] = {.lex_state = 336}, + [911] = {.lex_state = 336}, + [912] = {.lex_state = 336}, + [913] = {.lex_state = 336}, + [914] = {.lex_state = 336}, + [915] = {.lex_state = 4}, [916] = {.lex_state = 4}, [917] = {.lex_state = 4}, - [918] = {.lex_state = 5}, - [919] = {.lex_state = 5}, - [920] = {.lex_state = 4}, + [918] = {.lex_state = 4}, + [919] = {.lex_state = 4}, + [920] = {.lex_state = 24}, [921] = {.lex_state = 4}, - [922] = {.lex_state = 4}, - [923] = {.lex_state = 5}, - [924] = {.lex_state = 5}, - [925] = {.lex_state = 4}, - [926] = {.lex_state = 5}, - [927] = {.lex_state = 4}, - [928] = {.lex_state = 4}, - [929] = {.lex_state = 24}, - [930] = {.lex_state = 4}, - [931] = {.lex_state = 320}, - [932] = {.lex_state = 320}, - [933] = {.lex_state = 320}, - [934] = {.lex_state = 320}, - [935] = {.lex_state = 5}, - [936] = {.lex_state = 5}, - [937] = {.lex_state = 4}, + [922] = {.lex_state = 336}, + [923] = {.lex_state = 336}, + [924] = {.lex_state = 336}, + [925] = {.lex_state = 336}, + [926] = {.lex_state = 336}, + [927] = {.lex_state = 336}, + [928] = {.lex_state = 336}, + [929] = {.lex_state = 336}, + [930] = {.lex_state = 336}, + [931] = {.lex_state = 4}, + [932] = {.lex_state = 336}, + [933] = {.lex_state = 336}, + [934] = {.lex_state = 336}, + [935] = {.lex_state = 336}, + [936] = {.lex_state = 4}, + [937] = {.lex_state = 320}, [938] = {.lex_state = 4}, - [939] = {.lex_state = 4}, - [940] = {.lex_state = 24}, - [941] = {.lex_state = 320}, - [942] = {.lex_state = 320}, - [943] = {.lex_state = 5}, - [944] = {.lex_state = 320}, - [945] = {.lex_state = 320}, - [946] = {.lex_state = 4}, - [947] = {.lex_state = 4}, + [939] = {.lex_state = 336}, + [940] = {.lex_state = 320}, + [941] = {.lex_state = 336}, + [942] = {.lex_state = 336}, + [943] = {.lex_state = 336}, + [944] = {.lex_state = 336}, + [945] = {.lex_state = 336}, + [946] = {.lex_state = 336}, + [947] = {.lex_state = 24}, [948] = {.lex_state = 4}, - [949] = {.lex_state = 320}, - [950] = {.lex_state = 320}, + [949] = {.lex_state = 4}, + [950] = {.lex_state = 336}, [951] = {.lex_state = 24}, [952] = {.lex_state = 30}, [953] = {.lex_state = 30}, @@ -36949,107 +37005,107 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [995] = {.lex_state = 23}, [996] = {.lex_state = 36}, [997] = {.lex_state = 29}, - [998] = {.lex_state = 36}, + [998] = {.lex_state = 29}, [999] = {.lex_state = 36}, - [1000] = {.lex_state = 29}, - [1001] = {.lex_state = 29}, + [1000] = {.lex_state = 36}, + [1001] = {.lex_state = 36}, [1002] = {.lex_state = 29}, [1003] = {.lex_state = 29}, - [1004] = {.lex_state = 36}, + [1004] = {.lex_state = 29}, [1005] = {.lex_state = 29}, [1006] = {.lex_state = 29}, [1007] = {.lex_state = 29}, [1008] = {.lex_state = 29}, - [1009] = {.lex_state = 29}, + [1009] = {.lex_state = 36}, [1010] = {.lex_state = 29}, - [1011] = {.lex_state = 29}, - [1012] = {.lex_state = 29}, - [1013] = {.lex_state = 29}, + [1011] = {.lex_state = 36}, + [1012] = {.lex_state = 36}, + [1013] = {.lex_state = 36}, [1014] = {.lex_state = 36}, - [1015] = {.lex_state = 29}, + [1015] = {.lex_state = 36}, [1016] = {.lex_state = 36}, - [1017] = {.lex_state = 29}, + [1017] = {.lex_state = 36}, [1018] = {.lex_state = 29}, - [1019] = {.lex_state = 29}, + [1019] = {.lex_state = 36}, [1020] = {.lex_state = 29}, - [1021] = {.lex_state = 29}, + [1021] = {.lex_state = 36}, [1022] = {.lex_state = 29}, [1023] = {.lex_state = 36}, - [1024] = {.lex_state = 36}, - [1025] = {.lex_state = 36}, + [1024] = {.lex_state = 29}, + [1025] = {.lex_state = 29}, [1026] = {.lex_state = 29}, - [1027] = {.lex_state = 29}, + [1027] = {.lex_state = 36}, [1028] = {.lex_state = 36}, [1029] = {.lex_state = 36}, [1030] = {.lex_state = 29}, - [1031] = {.lex_state = 29}, - [1032] = {.lex_state = 29}, - [1033] = {.lex_state = 29}, - [1034] = {.lex_state = 29}, + [1031] = {.lex_state = 36}, + [1032] = {.lex_state = 36}, + [1033] = {.lex_state = 36}, + [1034] = {.lex_state = 36}, [1035] = {.lex_state = 36}, - [1036] = {.lex_state = 36}, - [1037] = {.lex_state = 36}, + [1036] = {.lex_state = 29}, + [1037] = {.lex_state = 29}, [1038] = {.lex_state = 29}, [1039] = {.lex_state = 29}, [1040] = {.lex_state = 29}, - [1041] = {.lex_state = 36}, - [1042] = {.lex_state = 36}, + [1041] = {.lex_state = 29}, + [1042] = {.lex_state = 29}, [1043] = {.lex_state = 29}, [1044] = {.lex_state = 29}, - [1045] = {.lex_state = 36}, - [1046] = {.lex_state = 36}, + [1045] = {.lex_state = 29}, + [1046] = {.lex_state = 29}, [1047] = {.lex_state = 36}, - [1048] = {.lex_state = 36}, - [1049] = {.lex_state = 36}, + [1048] = {.lex_state = 29}, + [1049] = {.lex_state = 29}, [1050] = {.lex_state = 29}, - [1051] = {.lex_state = 36}, - [1052] = {.lex_state = 36}, + [1051] = {.lex_state = 29}, + [1052] = {.lex_state = 29}, [1053] = {.lex_state = 36}, [1054] = {.lex_state = 36}, - [1055] = {.lex_state = 36}, - [1056] = {.lex_state = 36}, + [1055] = {.lex_state = 29}, + [1056] = {.lex_state = 29}, [1057] = {.lex_state = 29}, - [1058] = {.lex_state = 36}, + [1058] = {.lex_state = 29}, [1059] = {.lex_state = 36}, - [1060] = {.lex_state = 36}, + [1060] = {.lex_state = 29}, [1061] = {.lex_state = 29}, - [1062] = {.lex_state = 36}, + [1062] = {.lex_state = 29}, [1063] = {.lex_state = 29}, - [1064] = {.lex_state = 29}, + [1064] = {.lex_state = 36}, [1065] = {.lex_state = 29}, - [1066] = {.lex_state = 36}, - [1067] = {.lex_state = 36}, - [1068] = {.lex_state = 36}, - [1069] = {.lex_state = 36}, - [1070] = {.lex_state = 36}, - [1071] = {.lex_state = 36}, - [1072] = {.lex_state = 36}, + [1066] = {.lex_state = 29}, + [1067] = {.lex_state = 29}, + [1068] = {.lex_state = 29}, + [1069] = {.lex_state = 29}, + [1070] = {.lex_state = 29}, + [1071] = {.lex_state = 29}, + [1072] = {.lex_state = 29}, [1073] = {.lex_state = 36}, [1074] = {.lex_state = 36}, - [1075] = {.lex_state = 36}, - [1076] = {.lex_state = 29}, + [1075] = {.lex_state = 29}, + [1076] = {.lex_state = 36}, [1077] = {.lex_state = 36}, - [1078] = {.lex_state = 29}, + [1078] = {.lex_state = 36}, [1079] = {.lex_state = 36}, - [1080] = {.lex_state = 29}, - [1081] = {.lex_state = 29}, - [1082] = {.lex_state = 29}, + [1080] = {.lex_state = 36}, + [1081] = {.lex_state = 36}, + [1082] = {.lex_state = 36}, [1083] = {.lex_state = 36}, [1084] = {.lex_state = 36}, - [1085] = {.lex_state = 29}, + [1085] = {.lex_state = 36}, [1086] = {.lex_state = 29}, - [1087] = {.lex_state = 36}, - [1088] = {.lex_state = 36}, - [1089] = {.lex_state = 36}, + [1087] = {.lex_state = 29}, + [1088] = {.lex_state = 29}, + [1089] = {.lex_state = 27}, [1090] = {.lex_state = 36}, - [1091] = {.lex_state = 36}, + [1091] = {.lex_state = 27}, [1092] = {.lex_state = 36}, - [1093] = {.lex_state = 36}, - [1094] = {.lex_state = 36}, + [1093] = {.lex_state = 29}, + [1094] = {.lex_state = 29}, [1095] = {.lex_state = 36}, [1096] = {.lex_state = 36}, - [1097] = {.lex_state = 36}, - [1098] = {.lex_state = 36}, + [1097] = {.lex_state = 29}, + [1098] = {.lex_state = 29}, [1099] = {.lex_state = 36}, [1100] = {.lex_state = 36}, [1101] = {.lex_state = 36}, @@ -37057,24 +37113,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1103] = {.lex_state = 36}, [1104] = {.lex_state = 36}, [1105] = {.lex_state = 36}, - [1106] = {.lex_state = 36}, - [1107] = {.lex_state = 36}, - [1108] = {.lex_state = 36}, - [1109] = {.lex_state = 36}, - [1110] = {.lex_state = 36}, - [1111] = {.lex_state = 36}, - [1112] = {.lex_state = 36}, + [1106] = {.lex_state = 29}, + [1107] = {.lex_state = 29}, + [1108] = {.lex_state = 29}, + [1109] = {.lex_state = 29}, + [1110] = {.lex_state = 29}, + [1111] = {.lex_state = 29}, + [1112] = {.lex_state = 29}, [1113] = {.lex_state = 36}, - [1114] = {.lex_state = 36}, - [1115] = {.lex_state = 29}, + [1114] = {.lex_state = 29}, + [1115] = {.lex_state = 36}, [1116] = {.lex_state = 36}, [1117] = {.lex_state = 29}, [1118] = {.lex_state = 29}, [1119] = {.lex_state = 29}, [1120] = {.lex_state = 29}, - [1121] = {.lex_state = 36}, + [1121] = {.lex_state = 29}, [1122] = {.lex_state = 36}, - [1123] = {.lex_state = 29}, + [1123] = {.lex_state = 36}, [1124] = {.lex_state = 36}, [1125] = {.lex_state = 36}, [1126] = {.lex_state = 36}, @@ -37086,7 +37142,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1132] = {.lex_state = 36}, [1133] = {.lex_state = 36}, [1134] = {.lex_state = 36}, - [1135] = {.lex_state = 36}, + [1135] = {.lex_state = 29}, [1136] = {.lex_state = 36}, [1137] = {.lex_state = 36}, [1138] = {.lex_state = 36}, @@ -37095,33 +37151,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1141] = {.lex_state = 36}, [1142] = {.lex_state = 36}, [1143] = {.lex_state = 36}, - [1144] = {.lex_state = 36}, + [1144] = {.lex_state = 29}, [1145] = {.lex_state = 36}, [1146] = {.lex_state = 36}, - [1147] = {.lex_state = 36}, + [1147] = {.lex_state = 29}, [1148] = {.lex_state = 36}, [1149] = {.lex_state = 36}, [1150] = {.lex_state = 36}, [1151] = {.lex_state = 36}, [1152] = {.lex_state = 36}, - [1153] = {.lex_state = 36}, + [1153] = {.lex_state = 29}, [1154] = {.lex_state = 36}, [1155] = {.lex_state = 36}, - [1156] = {.lex_state = 29}, - [1157] = {.lex_state = 29}, - [1158] = {.lex_state = 29}, - [1159] = {.lex_state = 29}, + [1156] = {.lex_state = 36}, + [1157] = {.lex_state = 36}, + [1158] = {.lex_state = 36}, + [1159] = {.lex_state = 36}, [1160] = {.lex_state = 36}, - [1161] = {.lex_state = 29}, - [1162] = {.lex_state = 29}, - [1163] = {.lex_state = 29}, + [1161] = {.lex_state = 36}, + [1162] = {.lex_state = 36}, + [1163] = {.lex_state = 36}, [1164] = {.lex_state = 29}, [1165] = {.lex_state = 29}, [1166] = {.lex_state = 29}, [1167] = {.lex_state = 29}, - [1168] = {.lex_state = 29}, + [1168] = {.lex_state = 36}, [1169] = {.lex_state = 29}, - [1170] = {.lex_state = 36}, + [1170] = {.lex_state = 29}, [1171] = {.lex_state = 29}, [1172] = {.lex_state = 29}, [1173] = {.lex_state = 29}, @@ -37135,21 +37191,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1181] = {.lex_state = 29}, [1182] = {.lex_state = 29}, [1183] = {.lex_state = 29}, - [1184] = {.lex_state = 36}, - [1185] = {.lex_state = 36}, - [1186] = {.lex_state = 36}, - [1187] = {.lex_state = 36}, - [1188] = {.lex_state = 27}, - [1189] = {.lex_state = 36}, - [1190] = {.lex_state = 27}, - [1191] = {.lex_state = 36}, - [1192] = {.lex_state = 36}, - [1193] = {.lex_state = 36}, - [1194] = {.lex_state = 36}, - [1195] = {.lex_state = 36}, - [1196] = {.lex_state = 36}, - [1197] = {.lex_state = 36}, - [1198] = {.lex_state = 36}, + [1184] = {.lex_state = 29}, + [1185] = {.lex_state = 29}, + [1186] = {.lex_state = 29}, + [1187] = {.lex_state = 29}, + [1188] = {.lex_state = 29}, + [1189] = {.lex_state = 29}, + [1190] = {.lex_state = 29}, + [1191] = {.lex_state = 29}, + [1192] = {.lex_state = 29}, + [1193] = {.lex_state = 29}, + [1194] = {.lex_state = 29}, + [1195] = {.lex_state = 29}, + [1196] = {.lex_state = 29}, + [1197] = {.lex_state = 29}, + [1198] = {.lex_state = 29}, [1199] = {.lex_state = 29}, [1200] = {.lex_state = 29}, [1201] = {.lex_state = 29}, @@ -37157,58 +37213,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1203] = {.lex_state = 29}, [1204] = {.lex_state = 29}, [1205] = {.lex_state = 29}, - [1206] = {.lex_state = 29}, - [1207] = {.lex_state = 29}, - [1208] = {.lex_state = 29}, - [1209] = {.lex_state = 29}, - [1210] = {.lex_state = 29}, - [1211] = {.lex_state = 29}, - [1212] = {.lex_state = 29}, + [1206] = {.lex_state = 36}, + [1207] = {.lex_state = 36}, + [1208] = {.lex_state = 36}, + [1209] = {.lex_state = 36}, + [1210] = {.lex_state = 36}, + [1211] = {.lex_state = 36}, + [1212] = {.lex_state = 36}, [1213] = {.lex_state = 36}, [1214] = {.lex_state = 36}, [1215] = {.lex_state = 36}, [1216] = {.lex_state = 36}, [1217] = {.lex_state = 36}, - [1218] = {.lex_state = 29}, - [1219] = {.lex_state = 29}, - [1220] = {.lex_state = 29}, - [1221] = {.lex_state = 29}, - [1222] = {.lex_state = 29}, + [1218] = {.lex_state = 36}, + [1219] = {.lex_state = 36}, + [1220] = {.lex_state = 36}, + [1221] = {.lex_state = 36}, + [1222] = {.lex_state = 36}, [1223] = {.lex_state = 36}, - [1224] = {.lex_state = 29}, - [1225] = {.lex_state = 29}, + [1224] = {.lex_state = 36}, + [1225] = {.lex_state = 36}, [1226] = {.lex_state = 36}, [1227] = {.lex_state = 36}, - [1228] = {.lex_state = 29}, - [1229] = {.lex_state = 29}, + [1228] = {.lex_state = 36}, + [1229] = {.lex_state = 36}, [1230] = {.lex_state = 29}, - [1231] = {.lex_state = 29}, - [1232] = {.lex_state = 29}, - [1233] = {.lex_state = 29}, - [1234] = {.lex_state = 29}, + [1231] = {.lex_state = 36}, + [1232] = {.lex_state = 36}, + [1233] = {.lex_state = 36}, + [1234] = {.lex_state = 36}, [1235] = {.lex_state = 36}, - [1236] = {.lex_state = 29}, + [1236] = {.lex_state = 36}, [1237] = {.lex_state = 36}, - [1238] = {.lex_state = 29}, - [1239] = {.lex_state = 29}, - [1240] = {.lex_state = 29}, + [1238] = {.lex_state = 36}, + [1239] = {.lex_state = 36}, + [1240] = {.lex_state = 36}, [1241] = {.lex_state = 36}, - [1242] = {.lex_state = 29}, + [1242] = {.lex_state = 36}, [1243] = {.lex_state = 36}, - [1244] = {.lex_state = 29}, + [1244] = {.lex_state = 36}, [1245] = {.lex_state = 29}, [1246] = {.lex_state = 29}, [1247] = {.lex_state = 29}, [1248] = {.lex_state = 29}, - [1249] = {.lex_state = 36}, - [1250] = {.lex_state = 36}, - [1251] = {.lex_state = 36}, - [1252] = {.lex_state = 36}, - [1253] = {.lex_state = 36}, + [1249] = {.lex_state = 29}, + [1250] = {.lex_state = 29}, + [1251] = {.lex_state = 29}, + [1252] = {.lex_state = 29}, + [1253] = {.lex_state = 29}, [1254] = {.lex_state = 29}, [1255] = {.lex_state = 29}, - [1256] = {.lex_state = 36}, - [1257] = {.lex_state = 36}, + [1256] = {.lex_state = 29}, + [1257] = {.lex_state = 29}, [1258] = {.lex_state = 36}, [1259] = {.lex_state = 36}, [1260] = {.lex_state = 36}, @@ -37216,81 +37272,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1262] = {.lex_state = 36}, [1263] = {.lex_state = 36}, [1264] = {.lex_state = 36}, - [1265] = {.lex_state = 29}, + [1265] = {.lex_state = 36}, [1266] = {.lex_state = 36}, [1267] = {.lex_state = 36}, [1268] = {.lex_state = 36}, - [1269] = {.lex_state = 29}, + [1269] = {.lex_state = 36}, [1270] = {.lex_state = 36}, - [1271] = {.lex_state = 29}, - [1272] = {.lex_state = 29}, - [1273] = {.lex_state = 29}, - [1274] = {.lex_state = 29}, - [1275] = {.lex_state = 29}, - [1276] = {.lex_state = 29}, - [1277] = {.lex_state = 29}, - [1278] = {.lex_state = 29}, + [1271] = {.lex_state = 36}, + [1272] = {.lex_state = 36}, + [1273] = {.lex_state = 36}, + [1274] = {.lex_state = 36}, + [1275] = {.lex_state = 36}, + [1276] = {.lex_state = 36}, + [1277] = {.lex_state = 36}, + [1278] = {.lex_state = 36}, [1279] = {.lex_state = 29}, - [1280] = {.lex_state = 29}, + [1280] = {.lex_state = 36}, [1281] = {.lex_state = 29}, - [1282] = {.lex_state = 29}, - [1283] = {.lex_state = 29}, - [1284] = {.lex_state = 29}, - [1285] = {.lex_state = 29}, - [1286] = {.lex_state = 29}, - [1287] = {.lex_state = 29}, - [1288] = {.lex_state = 29}, + [1282] = {.lex_state = 36}, + [1283] = {.lex_state = 36}, + [1284] = {.lex_state = 36}, + [1285] = {.lex_state = 36}, + [1286] = {.lex_state = 36}, + [1287] = {.lex_state = 36}, + [1288] = {.lex_state = 36}, [1289] = {.lex_state = 36}, [1290] = {.lex_state = 36}, [1291] = {.lex_state = 36}, [1292] = {.lex_state = 36}, - [1293] = {.lex_state = 29}, - [1294] = {.lex_state = 36}, - [1295] = {.lex_state = 36}, + [1293] = {.lex_state = 36}, + [1294] = {.lex_state = 29}, + [1295] = {.lex_state = 29}, [1296] = {.lex_state = 29}, [1297] = {.lex_state = 29}, [1298] = {.lex_state = 29}, - [1299] = {.lex_state = 36}, - [1300] = {.lex_state = 36}, - [1301] = {.lex_state = 36}, - [1302] = {.lex_state = 36}, + [1299] = {.lex_state = 29}, + [1300] = {.lex_state = 29}, + [1301] = {.lex_state = 29}, + [1302] = {.lex_state = 29}, [1303] = {.lex_state = 29}, - [1304] = {.lex_state = 36}, - [1305] = {.lex_state = 36}, - [1306] = {.lex_state = 36}, - [1307] = {.lex_state = 36}, - [1308] = {.lex_state = 36}, + [1304] = {.lex_state = 29}, + [1305] = {.lex_state = 29}, + [1306] = {.lex_state = 29}, + [1307] = {.lex_state = 29}, + [1308] = {.lex_state = 29}, [1309] = {.lex_state = 36}, [1310] = {.lex_state = 29}, - [1311] = {.lex_state = 36}, + [1311] = {.lex_state = 29}, [1312] = {.lex_state = 36}, [1313] = {.lex_state = 29}, - [1314] = {.lex_state = 36}, - [1315] = {.lex_state = 36}, + [1314] = {.lex_state = 29}, + [1315] = {.lex_state = 29}, [1316] = {.lex_state = 29}, [1317] = {.lex_state = 36}, - [1318] = {.lex_state = 29}, - [1319] = {.lex_state = 36}, + [1318] = {.lex_state = 36}, + [1319] = {.lex_state = 29}, [1320] = {.lex_state = 29}, - [1321] = {.lex_state = 29}, + [1321] = {.lex_state = 36}, [1322] = {.lex_state = 29}, - [1323] = {.lex_state = 36}, + [1323] = {.lex_state = 29}, [1324] = {.lex_state = 36}, [1325] = {.lex_state = 36}, [1326] = {.lex_state = 36}, [1327] = {.lex_state = 36}, - [1328] = {.lex_state = 29}, + [1328] = {.lex_state = 36}, [1329] = {.lex_state = 36}, [1330] = {.lex_state = 36}, - [1331] = {.lex_state = 29}, - [1332] = {.lex_state = 29}, - [1333] = {.lex_state = 29}, - [1334] = {.lex_state = 29}, - [1335] = {.lex_state = 29}, - [1336] = {.lex_state = 29}, + [1331] = {.lex_state = 36}, + [1332] = {.lex_state = 36}, + [1333] = {.lex_state = 36}, + [1334] = {.lex_state = 36}, + [1335] = {.lex_state = 36}, + [1336] = {.lex_state = 23}, [1337] = {.lex_state = 29}, - [1338] = {.lex_state = 23}, - [1339] = {.lex_state = 27}, + [1338] = {.lex_state = 29}, + [1339] = {.lex_state = 29}, [1340] = {.lex_state = 27}, [1341] = {.lex_state = 27}, [1342] = {.lex_state = 27}, @@ -37307,11 +37363,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1353] = {.lex_state = 27}, [1354] = {.lex_state = 27}, [1355] = {.lex_state = 27}, - [1356] = {.lex_state = 11}, - [1357] = {.lex_state = 331}, - [1358] = {.lex_state = 308}, + [1356] = {.lex_state = 27}, + [1357] = {.lex_state = 11}, + [1358] = {.lex_state = 331}, [1359] = {.lex_state = 331}, - [1360] = {.lex_state = 331}, + [1360] = {.lex_state = 308}, [1361] = {.lex_state = 331}, [1362] = {.lex_state = 331}, [1363] = {.lex_state = 331}, @@ -37320,95 +37376,95 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1366] = {.lex_state = 331}, [1367] = {.lex_state = 331}, [1368] = {.lex_state = 331}, - [1369] = {.lex_state = 328}, - [1370] = {.lex_state = 331}, - [1371] = {.lex_state = 331}, - [1372] = {.lex_state = 330}, - [1373] = {.lex_state = 308}, + [1369] = {.lex_state = 331}, + [1370] = {.lex_state = 330}, + [1371] = {.lex_state = 330}, + [1372] = {.lex_state = 6}, + [1373] = {.lex_state = 331}, [1374] = {.lex_state = 331}, [1375] = {.lex_state = 331}, [1376] = {.lex_state = 331}, - [1377] = {.lex_state = 330}, - [1378] = {.lex_state = 331}, + [1377] = {.lex_state = 331}, + [1378] = {.lex_state = 308}, [1379] = {.lex_state = 331}, [1380] = {.lex_state = 331}, - [1381] = {.lex_state = 16}, - [1382] = {.lex_state = 331}, - [1383] = {.lex_state = 330}, + [1381] = {.lex_state = 331}, + [1382] = {.lex_state = 16}, + [1383] = {.lex_state = 331}, [1384] = {.lex_state = 330}, - [1385] = {.lex_state = 331}, - [1386] = {.lex_state = 6}, + [1385] = {.lex_state = 328}, + [1386] = {.lex_state = 330}, [1387] = {.lex_state = 331}, - [1388] = {.lex_state = 330}, - [1389] = {.lex_state = 328}, - [1390] = {.lex_state = 330}, - [1391] = {.lex_state = 330}, + [1388] = {.lex_state = 331}, + [1389] = {.lex_state = 329}, + [1390] = {.lex_state = 307}, + [1391] = {.lex_state = 331}, [1392] = {.lex_state = 331}, - [1393] = {.lex_state = 331}, + [1393] = {.lex_state = 330}, [1394] = {.lex_state = 331}, [1395] = {.lex_state = 330}, - [1396] = {.lex_state = 307}, - [1397] = {.lex_state = 329}, - [1398] = {.lex_state = 328}, + [1396] = {.lex_state = 330}, + [1397] = {.lex_state = 328}, + [1398] = {.lex_state = 330}, [1399] = {.lex_state = 328}, - [1400] = {.lex_state = 328}, - [1401] = {.lex_state = 331}, + [1400] = {.lex_state = 12}, + [1401] = {.lex_state = 328}, [1402] = {.lex_state = 328}, - [1403] = {.lex_state = 12}, + [1403] = {.lex_state = 328}, [1404] = {.lex_state = 328}, - [1405] = {.lex_state = 329}, + [1405] = {.lex_state = 328}, [1406] = {.lex_state = 328}, [1407] = {.lex_state = 328}, [1408] = {.lex_state = 328}, - [1409] = {.lex_state = 328}, + [1409] = {.lex_state = 307}, [1410] = {.lex_state = 328}, [1411] = {.lex_state = 328}, - [1412] = {.lex_state = 331}, - [1413] = {.lex_state = 328}, - [1414] = {.lex_state = 328}, - [1415] = {.lex_state = 331}, + [1412] = {.lex_state = 328}, + [1413] = {.lex_state = 331}, + [1414] = {.lex_state = 12}, + [1415] = {.lex_state = 328}, [1416] = {.lex_state = 328}, [1417] = {.lex_state = 328}, [1418] = {.lex_state = 328}, [1419] = {.lex_state = 328}, - [1420] = {.lex_state = 328}, - [1421] = {.lex_state = 12}, + [1420] = {.lex_state = 12}, + [1421] = {.lex_state = 328}, [1422] = {.lex_state = 328}, [1423] = {.lex_state = 328}, [1424] = {.lex_state = 328}, [1425] = {.lex_state = 328}, - [1426] = {.lex_state = 328}, - [1427] = {.lex_state = 328}, + [1426] = {.lex_state = 12}, + [1427] = {.lex_state = 329}, [1428] = {.lex_state = 328}, - [1429] = {.lex_state = 328}, + [1429] = {.lex_state = 331}, [1430] = {.lex_state = 328}, [1431] = {.lex_state = 328}, - [1432] = {.lex_state = 12}, + [1432] = {.lex_state = 328}, [1433] = {.lex_state = 328}, [1434] = {.lex_state = 328}, [1435] = {.lex_state = 328}, - [1436] = {.lex_state = 12}, + [1436] = {.lex_state = 328}, [1437] = {.lex_state = 328}, [1438] = {.lex_state = 328}, - [1439] = {.lex_state = 307}, + [1439] = {.lex_state = 328}, [1440] = {.lex_state = 328}, [1441] = {.lex_state = 328}, - [1442] = {.lex_state = 328}, + [1442] = {.lex_state = 331}, [1443] = {.lex_state = 328}, - [1444] = {.lex_state = 1}, - [1445] = {.lex_state = 309}, - [1446] = {.lex_state = 12}, - [1447] = {.lex_state = 12}, + [1444] = {.lex_state = 328}, + [1445] = {.lex_state = 328}, + [1446] = {.lex_state = 328}, + [1447] = {.lex_state = 328}, [1448] = {.lex_state = 328}, [1449] = {.lex_state = 328}, - [1450] = {.lex_state = 328}, + [1450] = {.lex_state = 309}, [1451] = {.lex_state = 328}, [1452] = {.lex_state = 328}, [1453] = {.lex_state = 328}, - [1454] = {.lex_state = 328}, - [1455] = {.lex_state = 328}, - [1456] = {.lex_state = 17}, - [1457] = {.lex_state = 1}, + [1454] = {.lex_state = 12}, + [1455] = {.lex_state = 12}, + [1456] = {.lex_state = 328}, + [1457] = {.lex_state = 328}, [1458] = {.lex_state = 328}, [1459] = {.lex_state = 328}, [1460] = {.lex_state = 328}, @@ -37417,673 +37473,673 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1463] = {.lex_state = 328}, [1464] = {.lex_state = 328}, [1465] = {.lex_state = 328}, - [1466] = {.lex_state = 1}, + [1466] = {.lex_state = 17}, [1467] = {.lex_state = 328}, [1468] = {.lex_state = 328}, [1469] = {.lex_state = 328}, - [1470] = {.lex_state = 328}, - [1471] = {.lex_state = 12}, - [1472] = {.lex_state = 1}, - [1473] = {.lex_state = 309}, - [1474] = {.lex_state = 328}, - [1475] = {.lex_state = 328}, - [1476] = {.lex_state = 1}, + [1470] = {.lex_state = 1}, + [1471] = {.lex_state = 309}, + [1472] = {.lex_state = 328}, + [1473] = {.lex_state = 328}, + [1474] = {.lex_state = 12}, + [1475] = {.lex_state = 12}, + [1476] = {.lex_state = 328}, [1477] = {.lex_state = 328}, [1478] = {.lex_state = 328}, [1479] = {.lex_state = 328}, [1480] = {.lex_state = 328}, [1481] = {.lex_state = 328}, - [1482] = {.lex_state = 328}, + [1482] = {.lex_state = 1}, [1483] = {.lex_state = 328}, - [1484] = {.lex_state = 328}, - [1485] = {.lex_state = 328}, - [1486] = {.lex_state = 328}, + [1484] = {.lex_state = 1}, + [1485] = {.lex_state = 309}, + [1486] = {.lex_state = 309}, [1487] = {.lex_state = 328}, - [1488] = {.lex_state = 328}, + [1488] = {.lex_state = 1}, [1489] = {.lex_state = 328}, - [1490] = {.lex_state = 309}, - [1491] = {.lex_state = 328}, + [1490] = {.lex_state = 1}, + [1491] = {.lex_state = 1}, [1492] = {.lex_state = 328}, - [1493] = {.lex_state = 1}, - [1494] = {.lex_state = 309}, - [1495] = {.lex_state = 12}, + [1493] = {.lex_state = 328}, + [1494] = {.lex_state = 328}, + [1495] = {.lex_state = 328}, [1496] = {.lex_state = 328}, [1497] = {.lex_state = 328}, - [1498] = {.lex_state = 313}, + [1498] = {.lex_state = 328}, [1499] = {.lex_state = 309}, [1500] = {.lex_state = 44}, [1501] = {.lex_state = 309}, - [1502] = {.lex_state = 309}, - [1503] = {.lex_state = 44}, - [1504] = {.lex_state = 44}, - [1505] = {.lex_state = 1}, - [1506] = {.lex_state = 44}, - [1507] = {.lex_state = 313}, - [1508] = {.lex_state = 309}, - [1509] = {.lex_state = 309}, - [1510] = {.lex_state = 44}, - [1511] = {.lex_state = 12}, - [1512] = {.lex_state = 313}, + [1502] = {.lex_state = 44}, + [1503] = {.lex_state = 309}, + [1504] = {.lex_state = 313}, + [1505] = {.lex_state = 309}, + [1506] = {.lex_state = 309}, + [1507] = {.lex_state = 44}, + [1508] = {.lex_state = 44}, + [1509] = {.lex_state = 44}, + [1510] = {.lex_state = 313}, + [1511] = {.lex_state = 1}, + [1512] = {.lex_state = 309}, [1513] = {.lex_state = 309}, - [1514] = {.lex_state = 309}, - [1515] = {.lex_state = 313}, - [1516] = {.lex_state = 44}, - [1517] = {.lex_state = 12}, + [1514] = {.lex_state = 44}, + [1515] = {.lex_state = 12}, + [1516] = {.lex_state = 12}, + [1517] = {.lex_state = 309}, [1518] = {.lex_state = 1}, - [1519] = {.lex_state = 309}, - [1520] = {.lex_state = 309}, - [1521] = {.lex_state = 20}, - [1522] = {.lex_state = 8}, - [1523] = {.lex_state = 309}, - [1524] = {.lex_state = 8}, - [1525] = {.lex_state = 44}, - [1526] = {.lex_state = 8}, - [1527] = {.lex_state = 14}, - [1528] = {.lex_state = 309}, + [1519] = {.lex_state = 313}, + [1520] = {.lex_state = 313}, + [1521] = {.lex_state = 14}, + [1522] = {.lex_state = 18}, + [1523] = {.lex_state = 44}, + [1524] = {.lex_state = 44}, + [1525] = {.lex_state = 309}, + [1526] = {.lex_state = 313}, + [1527] = {.lex_state = 309}, + [1528] = {.lex_state = 26}, [1529] = {.lex_state = 12}, - [1530] = {.lex_state = 44}, - [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 14}, - [1533] = {.lex_state = 44}, - [1534] = {.lex_state = 313}, - [1535] = {.lex_state = 26}, - [1536] = {.lex_state = 26}, - [1537] = {.lex_state = 309}, + [1530] = {.lex_state = 20}, + [1531] = {.lex_state = 309}, + [1532] = {.lex_state = 8}, + [1533] = {.lex_state = 313}, + [1534] = {.lex_state = 20}, + [1535] = {.lex_state = 309}, + [1536] = {.lex_state = 313}, + [1537] = {.lex_state = 26}, [1538] = {.lex_state = 26}, - [1539] = {.lex_state = 14}, + [1539] = {.lex_state = 20}, [1540] = {.lex_state = 14}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 20}, - [1543] = {.lex_state = 12}, - [1544] = {.lex_state = 313}, - [1545] = {.lex_state = 313}, + [1541] = {.lex_state = 44}, + [1542] = {.lex_state = 309}, + [1543] = {.lex_state = 14}, + [1544] = {.lex_state = 309}, + [1545] = {.lex_state = 309}, [1546] = {.lex_state = 14}, - [1547] = {.lex_state = 309}, - [1548] = {.lex_state = 309}, - [1549] = {.lex_state = 26}, - [1550] = {.lex_state = 309}, - [1551] = {.lex_state = 14}, - [1552] = {.lex_state = 14}, - [1553] = {.lex_state = 26}, - [1554] = {.lex_state = 20}, + [1547] = {.lex_state = 20}, + [1548] = {.lex_state = 44}, + [1549] = {.lex_state = 44}, + [1550] = {.lex_state = 14}, + [1551] = {.lex_state = 313}, + [1552] = {.lex_state = 26}, + [1553] = {.lex_state = 313}, + [1554] = {.lex_state = 14}, [1555] = {.lex_state = 14}, - [1556] = {.lex_state = 313}, - [1557] = {.lex_state = 44}, - [1558] = {.lex_state = 313}, - [1559] = {.lex_state = 18}, - [1560] = {.lex_state = 14}, - [1561] = {.lex_state = 20}, - [1562] = {.lex_state = 18}, - [1563] = {.lex_state = 44}, - [1564] = {.lex_state = 8}, - [1565] = {.lex_state = 313}, - [1566] = {.lex_state = 313}, - [1567] = {.lex_state = 313}, - [1568] = {.lex_state = 8}, - [1569] = {.lex_state = 309}, - [1570] = {.lex_state = 313}, - [1571] = {.lex_state = 309}, - [1572] = {.lex_state = 26}, - [1573] = {.lex_state = 8}, - [1574] = {.lex_state = 309}, - [1575] = {.lex_state = 14}, + [1556] = {.lex_state = 14}, + [1557] = {.lex_state = 12}, + [1558] = {.lex_state = 14}, + [1559] = {.lex_state = 26}, + [1560] = {.lex_state = 313}, + [1561] = {.lex_state = 8}, + [1562] = {.lex_state = 313}, + [1563] = {.lex_state = 18}, + [1564] = {.lex_state = 14}, + [1565] = {.lex_state = 8}, + [1566] = {.lex_state = 14}, + [1567] = {.lex_state = 8}, + [1568] = {.lex_state = 313}, + [1569] = {.lex_state = 8}, + [1570] = {.lex_state = 14}, + [1571] = {.lex_state = 320}, + [1572] = {.lex_state = 313}, + [1573] = {.lex_state = 313}, + [1574] = {.lex_state = 311}, + [1575] = {.lex_state = 309}, [1576] = {.lex_state = 320}, - [1577] = {.lex_state = 14}, - [1578] = {.lex_state = 311}, - [1579] = {.lex_state = 14}, - [1580] = {.lex_state = 320}, - [1581] = {.lex_state = 313}, + [1577] = {.lex_state = 320}, + [1578] = {.lex_state = 313}, + [1579] = {.lex_state = 320}, + [1580] = {.lex_state = 313}, + [1581] = {.lex_state = 14}, [1582] = {.lex_state = 26}, [1583] = {.lex_state = 313}, [1584] = {.lex_state = 313}, - [1585] = {.lex_state = 320}, + [1585] = {.lex_state = 14}, [1586] = {.lex_state = 311}, - [1587] = {.lex_state = 20}, - [1588] = {.lex_state = 320}, - [1589] = {.lex_state = 309}, - [1590] = {.lex_state = 20}, + [1587] = {.lex_state = 311}, + [1588] = {.lex_state = 20}, + [1589] = {.lex_state = 311}, + [1590] = {.lex_state = 309}, [1591] = {.lex_state = 20}, - [1592] = {.lex_state = 313}, - [1593] = {.lex_state = 313}, - [1594] = {.lex_state = 311}, + [1592] = {.lex_state = 8}, + [1593] = {.lex_state = 309}, + [1594] = {.lex_state = 309}, [1595] = {.lex_state = 14}, - [1596] = {.lex_state = 8}, + [1596] = {.lex_state = 20}, [1597] = {.lex_state = 20}, [1598] = {.lex_state = 8}, - [1599] = {.lex_state = 311}, - [1600] = {.lex_state = 309}, - [1601] = {.lex_state = 20}, - [1602] = {.lex_state = 14}, - [1603] = {.lex_state = 311}, - [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 8}, - [1606] = {.lex_state = 311}, - [1607] = {.lex_state = 312}, - [1608] = {.lex_state = 312}, - [1609] = {.lex_state = 312}, - [1610] = {.lex_state = 44}, - [1611] = {.lex_state = 44}, + [1599] = {.lex_state = 309}, + [1600] = {.lex_state = 26}, + [1601] = {.lex_state = 8}, + [1602] = {.lex_state = 312}, + [1603] = {.lex_state = 20}, + [1604] = {.lex_state = 311}, + [1605] = {.lex_state = 44}, + [1606] = {.lex_state = 312}, + [1607] = {.lex_state = 8}, + [1608] = {.lex_state = 320}, + [1609] = {.lex_state = 311}, + [1610] = {.lex_state = 14}, + [1611] = {.lex_state = 320}, [1612] = {.lex_state = 311}, - [1613] = {.lex_state = 320}, - [1614] = {.lex_state = 313}, - [1615] = {.lex_state = 311}, - [1616] = {.lex_state = 320}, - [1617] = {.lex_state = 320}, - [1618] = {.lex_state = 309}, - [1619] = {.lex_state = 325}, - [1620] = {.lex_state = 311}, - [1621] = {.lex_state = 313}, - [1622] = {.lex_state = 311}, - [1623] = {.lex_state = 311}, - [1624] = {.lex_state = 312}, + [1613] = {.lex_state = 311}, + [1614] = {.lex_state = 311}, + [1615] = {.lex_state = 14}, + [1616] = {.lex_state = 325}, + [1617] = {.lex_state = 312}, + [1618] = {.lex_state = 320}, + [1619] = {.lex_state = 313}, + [1620] = {.lex_state = 320}, + [1621] = {.lex_state = 312}, + [1622] = {.lex_state = 312}, + [1623] = {.lex_state = 325}, + [1624] = {.lex_state = 44}, [1625] = {.lex_state = 312}, - [1626] = {.lex_state = 312}, - [1627] = {.lex_state = 325}, - [1628] = {.lex_state = 14}, - [1629] = {.lex_state = 44}, - [1630] = {.lex_state = 312}, - [1631] = {.lex_state = 320}, - [1632] = {.lex_state = 320}, - [1633] = {.lex_state = 320}, + [1626] = {.lex_state = 20}, + [1627] = {.lex_state = 14}, + [1628] = {.lex_state = 311}, + [1629] = {.lex_state = 309}, + [1630] = {.lex_state = 313}, + [1631] = {.lex_state = 311}, + [1632] = {.lex_state = 313}, + [1633] = {.lex_state = 44}, [1634] = {.lex_state = 312}, - [1635] = {.lex_state = 312}, - [1636] = {.lex_state = 312}, - [1637] = {.lex_state = 320}, + [1635] = {.lex_state = 320}, + [1636] = {.lex_state = 320}, + [1637] = {.lex_state = 313}, [1638] = {.lex_state = 312}, - [1639] = {.lex_state = 313}, - [1640] = {.lex_state = 320}, - [1641] = {.lex_state = 309}, - [1642] = {.lex_state = 20}, - [1643] = {.lex_state = 313}, - [1644] = {.lex_state = 311}, - [1645] = {.lex_state = 14}, - [1646] = {.lex_state = 44}, - [1647] = {.lex_state = 312}, + [1639] = {.lex_state = 312}, + [1640] = {.lex_state = 309}, + [1641] = {.lex_state = 311}, + [1642] = {.lex_state = 312}, + [1643] = {.lex_state = 320}, + [1644] = {.lex_state = 312}, + [1645] = {.lex_state = 44}, + [1646] = {.lex_state = 320}, + [1647] = {.lex_state = 8}, [1648] = {.lex_state = 19}, - [1649] = {.lex_state = 7}, - [1650] = {.lex_state = 12}, - [1651] = {.lex_state = 19}, - [1652] = {.lex_state = 12}, - [1653] = {.lex_state = 12}, + [1649] = {.lex_state = 19}, + [1650] = {.lex_state = 312}, + [1651] = {.lex_state = 313}, + [1652] = {.lex_state = 7}, + [1653] = {.lex_state = 312}, [1654] = {.lex_state = 12}, [1655] = {.lex_state = 12}, [1656] = {.lex_state = 12}, [1657] = {.lex_state = 12}, - [1658] = {.lex_state = 21}, - [1659] = {.lex_state = 21}, + [1658] = {.lex_state = 12}, + [1659] = {.lex_state = 12}, [1660] = {.lex_state = 12}, - [1661] = {.lex_state = 313}, - [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 325}, + [1661] = {.lex_state = 12}, + [1662] = {.lex_state = 12}, + [1663] = {.lex_state = 12}, [1664] = {.lex_state = 12}, [1665] = {.lex_state = 12}, [1666] = {.lex_state = 12}, - [1667] = {.lex_state = 7}, - [1668] = {.lex_state = 311}, - [1669] = {.lex_state = 7}, + [1667] = {.lex_state = 12}, + [1668] = {.lex_state = 12}, + [1669] = {.lex_state = 12}, [1670] = {.lex_state = 12}, - [1671] = {.lex_state = 311}, - [1672] = {.lex_state = 313}, + [1671] = {.lex_state = 12}, + [1672] = {.lex_state = 12}, [1673] = {.lex_state = 12}, [1674] = {.lex_state = 12}, [1675] = {.lex_state = 12}, - [1676] = {.lex_state = 7}, - [1677] = {.lex_state = 313}, + [1676] = {.lex_state = 12}, + [1677] = {.lex_state = 12}, [1678] = {.lex_state = 12}, - [1679] = {.lex_state = 325}, - [1680] = {.lex_state = 20}, - [1681] = {.lex_state = 19}, - [1682] = {.lex_state = 19}, + [1679] = {.lex_state = 12}, + [1680] = {.lex_state = 12}, + [1681] = {.lex_state = 312}, + [1682] = {.lex_state = 12}, [1683] = {.lex_state = 12}, - [1684] = {.lex_state = 7}, - [1685] = {.lex_state = 12}, - [1686] = {.lex_state = 313}, - [1687] = {.lex_state = 312}, - [1688] = {.lex_state = 313}, - [1689] = {.lex_state = 311}, - [1690] = {.lex_state = 12}, - [1691] = {.lex_state = 312}, - [1692] = {.lex_state = 44}, + [1684] = {.lex_state = 320}, + [1685] = {.lex_state = 311}, + [1686] = {.lex_state = 320}, + [1687] = {.lex_state = 311}, + [1688] = {.lex_state = 7}, + [1689] = {.lex_state = 8}, + [1690] = {.lex_state = 7}, + [1691] = {.lex_state = 12}, + [1692] = {.lex_state = 12}, [1693] = {.lex_state = 12}, - [1694] = {.lex_state = 311}, - [1695] = {.lex_state = 312}, - [1696] = {.lex_state = 312}, - [1697] = {.lex_state = 313}, - [1698] = {.lex_state = 19}, - [1699] = {.lex_state = 19}, - [1700] = {.lex_state = 12}, - [1701] = {.lex_state = 7}, - [1702] = {.lex_state = 15}, - [1703] = {.lex_state = 15}, - [1704] = {.lex_state = 313}, - [1705] = {.lex_state = 20}, - [1706] = {.lex_state = 12}, + [1694] = {.lex_state = 313}, + [1695] = {.lex_state = 12}, + [1696] = {.lex_state = 8}, + [1697] = {.lex_state = 12}, + [1698] = {.lex_state = 12}, + [1699] = {.lex_state = 12}, + [1700] = {.lex_state = 313}, + [1701] = {.lex_state = 312}, + [1702] = {.lex_state = 12}, + [1703] = {.lex_state = 12}, + [1704] = {.lex_state = 12}, + [1705] = {.lex_state = 320}, + [1706] = {.lex_state = 313}, [1707] = {.lex_state = 12}, - [1708] = {.lex_state = 15}, + [1708] = {.lex_state = 12}, [1709] = {.lex_state = 12}, - [1710] = {.lex_state = 15}, - [1711] = {.lex_state = 12}, - [1712] = {.lex_state = 12}, + [1710] = {.lex_state = 12}, + [1711] = {.lex_state = 313}, + [1712] = {.lex_state = 312}, [1713] = {.lex_state = 12}, [1714] = {.lex_state = 12}, - [1715] = {.lex_state = 12}, - [1716] = {.lex_state = 312}, - [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 320}, - [1719] = {.lex_state = 312}, - [1720] = {.lex_state = 12}, - [1721] = {.lex_state = 12}, - [1722] = {.lex_state = 313}, - [1723] = {.lex_state = 12}, - [1724] = {.lex_state = 320}, - [1725] = {.lex_state = 7}, - [1726] = {.lex_state = 12}, - [1727] = {.lex_state = 19}, + [1715] = {.lex_state = 312}, + [1716] = {.lex_state = 12}, + [1717] = {.lex_state = 12}, + [1718] = {.lex_state = 44}, + [1719] = {.lex_state = 12}, + [1720] = {.lex_state = 20}, + [1721] = {.lex_state = 7}, + [1722] = {.lex_state = 15}, + [1723] = {.lex_state = 7}, + [1724] = {.lex_state = 19}, + [1725] = {.lex_state = 12}, + [1726] = {.lex_state = 320}, + [1727] = {.lex_state = 312}, [1728] = {.lex_state = 12}, - [1729] = {.lex_state = 312}, - [1730] = {.lex_state = 19}, + [1729] = {.lex_state = 320}, + [1730] = {.lex_state = 12}, [1731] = {.lex_state = 12}, - [1732] = {.lex_state = 313}, - [1733] = {.lex_state = 312}, - [1734] = {.lex_state = 312}, - [1735] = {.lex_state = 12}, - [1736] = {.lex_state = 7}, - [1737] = {.lex_state = 12}, - [1738] = {.lex_state = 320}, - [1739] = {.lex_state = 312}, - [1740] = {.lex_state = 310}, - [1741] = {.lex_state = 311}, - [1742] = {.lex_state = 320}, - [1743] = {.lex_state = 19}, - [1744] = {.lex_state = 12}, - [1745] = {.lex_state = 7}, - [1746] = {.lex_state = 311}, - [1747] = {.lex_state = 12}, - [1748] = {.lex_state = 310}, - [1749] = {.lex_state = 12}, - [1750] = {.lex_state = 312}, - [1751] = {.lex_state = 313}, - [1752] = {.lex_state = 12}, - [1753] = {.lex_state = 12}, - [1754] = {.lex_state = 312}, - [1755] = {.lex_state = 312}, - [1756] = {.lex_state = 12}, - [1757] = {.lex_state = 12}, - [1758] = {.lex_state = 12}, - [1759] = {.lex_state = 19}, + [1732] = {.lex_state = 12}, + [1733] = {.lex_state = 311}, + [1734] = {.lex_state = 311}, + [1735] = {.lex_state = 312}, + [1736] = {.lex_state = 312}, + [1737] = {.lex_state = 312}, + [1738] = {.lex_state = 19}, + [1739] = {.lex_state = 12}, + [1740] = {.lex_state = 7}, + [1741] = {.lex_state = 312}, + [1742] = {.lex_state = 7}, + [1743] = {.lex_state = 311}, + [1744] = {.lex_state = 311}, + [1745] = {.lex_state = 312}, + [1746] = {.lex_state = 310}, + [1747] = {.lex_state = 313}, + [1748] = {.lex_state = 312}, + [1749] = {.lex_state = 310}, + [1750] = {.lex_state = 15}, + [1751] = {.lex_state = 325}, + [1752] = {.lex_state = 7}, + [1753] = {.lex_state = 21}, + [1754] = {.lex_state = 21}, + [1755] = {.lex_state = 15}, + [1756] = {.lex_state = 15}, + [1757] = {.lex_state = 325}, + [1758] = {.lex_state = 313}, + [1759] = {.lex_state = 313}, [1760] = {.lex_state = 12}, - [1761] = {.lex_state = 320}, - [1762] = {.lex_state = 12}, - [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 12}, - [1765] = {.lex_state = 313}, - [1766] = {.lex_state = 12}, + [1761] = {.lex_state = 312}, + [1762] = {.lex_state = 312}, + [1763] = {.lex_state = 19}, + [1764] = {.lex_state = 19}, + [1765] = {.lex_state = 19}, + [1766] = {.lex_state = 320}, [1767] = {.lex_state = 320}, - [1768] = {.lex_state = 12}, - [1769] = {.lex_state = 12}, - [1770] = {.lex_state = 19}, - [1771] = {.lex_state = 12}, - [1772] = {.lex_state = 12}, - [1773] = {.lex_state = 320}, - [1774] = {.lex_state = 12}, - [1775] = {.lex_state = 7}, - [1776] = {.lex_state = 324}, - [1777] = {.lex_state = 312}, - [1778] = {.lex_state = 12}, - [1779] = {.lex_state = 311}, - [1780] = {.lex_state = 310}, - [1781] = {.lex_state = 310}, - [1782] = {.lex_state = 320}, - [1783] = {.lex_state = 311}, - [1784] = {.lex_state = 21}, - [1785] = {.lex_state = 15}, - [1786] = {.lex_state = 313}, - [1787] = {.lex_state = 324}, - [1788] = {.lex_state = 320}, - [1789] = {.lex_state = 7}, + [1768] = {.lex_state = 7}, + [1769] = {.lex_state = 7}, + [1770] = {.lex_state = 7}, + [1771] = {.lex_state = 313}, + [1772] = {.lex_state = 324}, + [1773] = {.lex_state = 313}, + [1774] = {.lex_state = 19}, + [1775] = {.lex_state = 313}, + [1776] = {.lex_state = 20}, + [1777] = {.lex_state = 19}, + [1778] = {.lex_state = 19}, + [1779] = {.lex_state = 19}, + [1780] = {.lex_state = 15}, + [1781] = {.lex_state = 320}, + [1782] = {.lex_state = 311}, + [1783] = {.lex_state = 44}, + [1784] = {.lex_state = 311}, + [1785] = {.lex_state = 313}, + [1786] = {.lex_state = 310}, + [1787] = {.lex_state = 311}, + [1788] = {.lex_state = 311}, + [1789] = {.lex_state = 44}, [1790] = {.lex_state = 310}, [1791] = {.lex_state = 310}, - [1792] = {.lex_state = 311}, - [1793] = {.lex_state = 7}, + [1792] = {.lex_state = 310}, + [1793] = {.lex_state = 310}, [1794] = {.lex_state = 310}, - [1795] = {.lex_state = 19}, + [1795] = {.lex_state = 310}, [1796] = {.lex_state = 310}, - [1797] = {.lex_state = 320}, - [1798] = {.lex_state = 21}, + [1797] = {.lex_state = 312}, + [1798] = {.lex_state = 312}, [1799] = {.lex_state = 313}, - [1800] = {.lex_state = 44}, - [1801] = {.lex_state = 310}, - [1802] = {.lex_state = 44}, - [1803] = {.lex_state = 310}, + [1800] = {.lex_state = 313}, + [1801] = {.lex_state = 312}, + [1802] = {.lex_state = 320}, + [1803] = {.lex_state = 313}, [1804] = {.lex_state = 310}, - [1805] = {.lex_state = 19}, - [1806] = {.lex_state = 312}, + [1805] = {.lex_state = 44}, + [1806] = {.lex_state = 310}, [1807] = {.lex_state = 313}, - [1808] = {.lex_state = 313}, - [1809] = {.lex_state = 310}, - [1810] = {.lex_state = 320}, - [1811] = {.lex_state = 15}, - [1812] = {.lex_state = 313}, + [1808] = {.lex_state = 324}, + [1809] = {.lex_state = 313}, + [1810] = {.lex_state = 313}, + [1811] = {.lex_state = 320}, + [1812] = {.lex_state = 312}, [1813] = {.lex_state = 312}, - [1814] = {.lex_state = 310}, + [1814] = {.lex_state = 312}, [1815] = {.lex_state = 310}, [1816] = {.lex_state = 310}, - [1817] = {.lex_state = 7}, - [1818] = {.lex_state = 313}, + [1817] = {.lex_state = 312}, + [1818] = {.lex_state = 320}, [1819] = {.lex_state = 310}, - [1820] = {.lex_state = 7}, + [1820] = {.lex_state = 313}, [1821] = {.lex_state = 310}, - [1822] = {.lex_state = 320}, - [1823] = {.lex_state = 15}, - [1824] = {.lex_state = 15}, - [1825] = {.lex_state = 312}, - [1826] = {.lex_state = 312}, - [1827] = {.lex_state = 312}, - [1828] = {.lex_state = 44}, - [1829] = {.lex_state = 44}, - [1830] = {.lex_state = 310}, - [1831] = {.lex_state = 313}, - [1832] = {.lex_state = 312}, + [1822] = {.lex_state = 15}, + [1823] = {.lex_state = 310}, + [1824] = {.lex_state = 310}, + [1825] = {.lex_state = 21}, + [1826] = {.lex_state = 7}, + [1827] = {.lex_state = 7}, + [1828] = {.lex_state = 313}, + [1829] = {.lex_state = 19}, + [1830] = {.lex_state = 19}, + [1831] = {.lex_state = 310}, + [1832] = {.lex_state = 320}, [1833] = {.lex_state = 320}, - [1834] = {.lex_state = 312}, - [1835] = {.lex_state = 320}, - [1836] = {.lex_state = 320}, - [1837] = {.lex_state = 313}, - [1838] = {.lex_state = 311}, - [1839] = {.lex_state = 313}, - [1840] = {.lex_state = 310}, + [1834] = {.lex_state = 7}, + [1835] = {.lex_state = 7}, + [1836] = {.lex_state = 15}, + [1837] = {.lex_state = 15}, + [1838] = {.lex_state = 21}, + [1839] = {.lex_state = 44}, + [1840] = {.lex_state = 320}, [1841] = {.lex_state = 320}, [1842] = {.lex_state = 310}, [1843] = {.lex_state = 313}, - [1844] = {.lex_state = 313}, + [1844] = {.lex_state = 310}, [1845] = {.lex_state = 313}, - [1846] = {.lex_state = 313}, - [1847] = {.lex_state = 313}, - [1848] = {.lex_state = 313}, + [1846] = {.lex_state = 19}, + [1847] = {.lex_state = 310}, + [1848] = {.lex_state = 7}, [1849] = {.lex_state = 313}, [1850] = {.lex_state = 313}, [1851] = {.lex_state = 313}, - [1852] = {.lex_state = 310}, - [1853] = {.lex_state = 310}, + [1852] = {.lex_state = 312}, + [1853] = {.lex_state = 313}, [1854] = {.lex_state = 313}, [1855] = {.lex_state = 313}, - [1856] = {.lex_state = 313}, - [1857] = {.lex_state = 310}, + [1856] = {.lex_state = 320}, + [1857] = {.lex_state = 313}, [1858] = {.lex_state = 313}, [1859] = {.lex_state = 313}, - [1860] = {.lex_state = 320}, + [1860] = {.lex_state = 313}, [1861] = {.lex_state = 313}, [1862] = {.lex_state = 313}, [1863] = {.lex_state = 313}, - [1864] = {.lex_state = 310}, - [1865] = {.lex_state = 320}, + [1864] = {.lex_state = 313}, + [1865] = {.lex_state = 311}, [1866] = {.lex_state = 313}, [1867] = {.lex_state = 313}, [1868] = {.lex_state = 313}, [1869] = {.lex_state = 313}, [1870] = {.lex_state = 313}, - [1871] = {.lex_state = 311}, + [1871] = {.lex_state = 313}, [1872] = {.lex_state = 313}, [1873] = {.lex_state = 313}, - [1874] = {.lex_state = 310}, + [1874] = {.lex_state = 313}, [1875] = {.lex_state = 313}, [1876] = {.lex_state = 313}, - [1877] = {.lex_state = 313}, + [1877] = {.lex_state = 320}, [1878] = {.lex_state = 313}, - [1879] = {.lex_state = 310}, + [1879] = {.lex_state = 313}, [1880] = {.lex_state = 313}, - [1881] = {.lex_state = 313}, + [1881] = {.lex_state = 15}, [1882] = {.lex_state = 310}, - [1883] = {.lex_state = 313}, + [1883] = {.lex_state = 15}, [1884] = {.lex_state = 313}, [1885] = {.lex_state = 313}, [1886] = {.lex_state = 310}, [1887] = {.lex_state = 313}, [1888] = {.lex_state = 313}, - [1889] = {.lex_state = 313}, - [1890] = {.lex_state = 313}, - [1891] = {.lex_state = 313}, - [1892] = {.lex_state = 313}, + [1889] = {.lex_state = 320}, + [1890] = {.lex_state = 310}, + [1891] = {.lex_state = 19}, + [1892] = {.lex_state = 19}, [1893] = {.lex_state = 313}, - [1894] = {.lex_state = 313}, - [1895] = {.lex_state = 313}, - [1896] = {.lex_state = 313}, - [1897] = {.lex_state = 313}, - [1898] = {.lex_state = 313}, - [1899] = {.lex_state = 313}, - [1900] = {.lex_state = 313}, - [1901] = {.lex_state = 313}, - [1902] = {.lex_state = 313}, + [1894] = {.lex_state = 310}, + [1895] = {.lex_state = 44}, + [1896] = {.lex_state = 44}, + [1897] = {.lex_state = 310}, + [1898] = {.lex_state = 312}, + [1899] = {.lex_state = 7}, + [1900] = {.lex_state = 44}, + [1901] = {.lex_state = 7}, + [1902] = {.lex_state = 312}, [1903] = {.lex_state = 313}, - [1904] = {.lex_state = 44}, + [1904] = {.lex_state = 311}, [1905] = {.lex_state = 313}, - [1906] = {.lex_state = 44}, - [1907] = {.lex_state = 44}, - [1908] = {.lex_state = 312}, + [1906] = {.lex_state = 310}, + [1907] = {.lex_state = 310}, + [1908] = {.lex_state = 313}, [1909] = {.lex_state = 313}, - [1910] = {.lex_state = 310}, - [1911] = {.lex_state = 312}, - [1912] = {.lex_state = 312}, - [1913] = {.lex_state = 313}, + [1910] = {.lex_state = 313}, + [1911] = {.lex_state = 313}, + [1912] = {.lex_state = 313}, + [1913] = {.lex_state = 310}, [1914] = {.lex_state = 310}, - [1915] = {.lex_state = 19}, - [1916] = {.lex_state = 320}, - [1917] = {.lex_state = 310}, - [1918] = {.lex_state = 7}, - [1919] = {.lex_state = 15}, - [1920] = {.lex_state = 15}, - [1921] = {.lex_state = 19}, - [1922] = {.lex_state = 19}, - [1923] = {.lex_state = 7}, - [1924] = {.lex_state = 7}, - [1925] = {.lex_state = 310}, - [1926] = {.lex_state = 311}, - [1927] = {.lex_state = 310}, + [1915] = {.lex_state = 313}, + [1916] = {.lex_state = 310}, + [1917] = {.lex_state = 313}, + [1918] = {.lex_state = 313}, + [1919] = {.lex_state = 313}, + [1920] = {.lex_state = 313}, + [1921] = {.lex_state = 313}, + [1922] = {.lex_state = 313}, + [1923] = {.lex_state = 310}, + [1924] = {.lex_state = 313}, + [1925] = {.lex_state = 320}, + [1926] = {.lex_state = 313}, + [1927] = {.lex_state = 313}, [1928] = {.lex_state = 320}, - [1929] = {.lex_state = 310}, + [1929] = {.lex_state = 313}, [1930] = {.lex_state = 310}, - [1931] = {.lex_state = 313}, + [1931] = {.lex_state = 310}, [1932] = {.lex_state = 313}, - [1933] = {.lex_state = 20}, - [1934] = {.lex_state = 20}, - [1935] = {.lex_state = 20}, - [1936] = {.lex_state = 20}, - [1937] = {.lex_state = 20}, - [1938] = {.lex_state = 20}, - [1939] = {.lex_state = 20}, - [1940] = {.lex_state = 20}, - [1941] = {.lex_state = 20}, - [1942] = {.lex_state = 20}, - [1943] = {.lex_state = 20}, - [1944] = {.lex_state = 20}, - [1945] = {.lex_state = 20}, - [1946] = {.lex_state = 310}, - [1947] = {.lex_state = 20}, - [1948] = {.lex_state = 20}, - [1949] = {.lex_state = 20}, - [1950] = {.lex_state = 20}, - [1951] = {.lex_state = 20}, - [1952] = {.lex_state = 20}, - [1953] = {.lex_state = 21}, - [1954] = {.lex_state = 20}, - [1955] = {.lex_state = 20}, - [1956] = {.lex_state = 20}, - [1957] = {.lex_state = 20}, - [1958] = {.lex_state = 20}, + [1933] = {.lex_state = 15}, + [1934] = {.lex_state = 313}, + [1935] = {.lex_state = 313}, + [1936] = {.lex_state = 313}, + [1937] = {.lex_state = 313}, + [1938] = {.lex_state = 313}, + [1939] = {.lex_state = 313}, + [1940] = {.lex_state = 313}, + [1941] = {.lex_state = 313}, + [1942] = {.lex_state = 313}, + [1943] = {.lex_state = 313}, + [1944] = {.lex_state = 313}, + [1945] = {.lex_state = 313}, + [1946] = {.lex_state = 313}, + [1947] = {.lex_state = 8}, + [1948] = {.lex_state = 8}, + [1949] = {.lex_state = 8}, + [1950] = {.lex_state = 8}, + [1951] = {.lex_state = 8}, + [1952] = {.lex_state = 8}, + [1953] = {.lex_state = 8}, + [1954] = {.lex_state = 8}, + [1955] = {.lex_state = 313}, + [1956] = {.lex_state = 8}, + [1957] = {.lex_state = 8}, + [1958] = {.lex_state = 8}, [1959] = {.lex_state = 20}, - [1960] = {.lex_state = 15}, - [1961] = {.lex_state = 21}, - [1962] = {.lex_state = 15}, - [1963] = {.lex_state = 15}, - [1964] = {.lex_state = 15}, - [1965] = {.lex_state = 20}, + [1960] = {.lex_state = 8}, + [1961] = {.lex_state = 8}, + [1962] = {.lex_state = 8}, + [1963] = {.lex_state = 310}, + [1964] = {.lex_state = 21}, + [1965] = {.lex_state = 15}, [1966] = {.lex_state = 310}, - [1967] = {.lex_state = 20}, + [1967] = {.lex_state = 8}, [1968] = {.lex_state = 15}, - [1969] = {.lex_state = 20}, - [1970] = {.lex_state = 20}, - [1971] = {.lex_state = 310}, - [1972] = {.lex_state = 313}, - [1973] = {.lex_state = 20}, - [1974] = {.lex_state = 15}, - [1975] = {.lex_state = 310}, - [1976] = {.lex_state = 20}, - [1977] = {.lex_state = 313}, - [1978] = {.lex_state = 20}, + [1969] = {.lex_state = 21}, + [1970] = {.lex_state = 310}, + [1971] = {.lex_state = 15}, + [1972] = {.lex_state = 8}, + [1973] = {.lex_state = 15}, + [1974] = {.lex_state = 313}, + [1975] = {.lex_state = 15}, + [1976] = {.lex_state = 310}, + [1977] = {.lex_state = 15}, + [1978] = {.lex_state = 15}, [1979] = {.lex_state = 20}, - [1980] = {.lex_state = 8}, - [1981] = {.lex_state = 310}, - [1982] = {.lex_state = 8}, - [1983] = {.lex_state = 21}, - [1984] = {.lex_state = 311}, - [1985] = {.lex_state = 8}, - [1986] = {.lex_state = 8}, - [1987] = {.lex_state = 8}, - [1988] = {.lex_state = 8}, - [1989] = {.lex_state = 8}, - [1990] = {.lex_state = 8}, - [1991] = {.lex_state = 8}, - [1992] = {.lex_state = 8}, - [1993] = {.lex_state = 8}, - [1994] = {.lex_state = 21}, + [1980] = {.lex_state = 15}, + [1981] = {.lex_state = 20}, + [1982] = {.lex_state = 313}, + [1983] = {.lex_state = 310}, + [1984] = {.lex_state = 313}, + [1985] = {.lex_state = 313}, + [1986] = {.lex_state = 313}, + [1987] = {.lex_state = 313}, + [1988] = {.lex_state = 313}, + [1989] = {.lex_state = 313}, + [1990] = {.lex_state = 313}, + [1991] = {.lex_state = 313}, + [1992] = {.lex_state = 20}, + [1993] = {.lex_state = 313}, + [1994] = {.lex_state = 8}, [1995] = {.lex_state = 8}, - [1996] = {.lex_state = 21}, - [1997] = {.lex_state = 8}, + [1996] = {.lex_state = 8}, + [1997] = {.lex_state = 21}, [1998] = {.lex_state = 8}, - [1999] = {.lex_state = 15}, + [1999] = {.lex_state = 8}, [2000] = {.lex_state = 15}, - [2001] = {.lex_state = 20}, - [2002] = {.lex_state = 313}, - [2003] = {.lex_state = 15}, - [2004] = {.lex_state = 20}, - [2005] = {.lex_state = 15}, + [2001] = {.lex_state = 8}, + [2002] = {.lex_state = 8}, + [2003] = {.lex_state = 8}, + [2004] = {.lex_state = 8}, + [2005] = {.lex_state = 20}, [2006] = {.lex_state = 20}, - [2007] = {.lex_state = 20}, + [2007] = {.lex_state = 313}, [2008] = {.lex_state = 8}, [2009] = {.lex_state = 8}, - [2010] = {.lex_state = 20}, - [2011] = {.lex_state = 8}, - [2012] = {.lex_state = 310}, - [2013] = {.lex_state = 20}, - [2014] = {.lex_state = 20}, - [2015] = {.lex_state = 313}, - [2016] = {.lex_state = 313}, - [2017] = {.lex_state = 313}, - [2018] = {.lex_state = 8}, - [2019] = {.lex_state = 8}, + [2010] = {.lex_state = 310}, + [2011] = {.lex_state = 20}, + [2012] = {.lex_state = 8}, + [2013] = {.lex_state = 8}, + [2014] = {.lex_state = 8}, + [2015] = {.lex_state = 8}, + [2016] = {.lex_state = 8}, + [2017] = {.lex_state = 8}, + [2018] = {.lex_state = 20}, + [2019] = {.lex_state = 20}, [2020] = {.lex_state = 20}, - [2021] = {.lex_state = 313}, + [2021] = {.lex_state = 20}, [2022] = {.lex_state = 313}, - [2023] = {.lex_state = 313}, - [2024] = {.lex_state = 313}, - [2025] = {.lex_state = 8}, - [2026] = {.lex_state = 21}, - [2027] = {.lex_state = 20}, - [2028] = {.lex_state = 8}, - [2029] = {.lex_state = 313}, + [2023] = {.lex_state = 8}, + [2024] = {.lex_state = 15}, + [2025] = {.lex_state = 21}, + [2026] = {.lex_state = 20}, + [2027] = {.lex_state = 15}, + [2028] = {.lex_state = 15}, + [2029] = {.lex_state = 15}, [2030] = {.lex_state = 20}, - [2031] = {.lex_state = 8}, - [2032] = {.lex_state = 313}, - [2033] = {.lex_state = 15}, - [2034] = {.lex_state = 313}, - [2035] = {.lex_state = 313}, - [2036] = {.lex_state = 15}, - [2037] = {.lex_state = 15}, + [2031] = {.lex_state = 15}, + [2032] = {.lex_state = 8}, + [2033] = {.lex_state = 313}, + [2034] = {.lex_state = 8}, + [2035] = {.lex_state = 20}, + [2036] = {.lex_state = 313}, + [2037] = {.lex_state = 313}, [2038] = {.lex_state = 8}, - [2039] = {.lex_state = 313}, - [2040] = {.lex_state = 313}, - [2041] = {.lex_state = 8}, - [2042] = {.lex_state = 313}, - [2043] = {.lex_state = 8}, - [2044] = {.lex_state = 8}, - [2045] = {.lex_state = 8}, - [2046] = {.lex_state = 313}, - [2047] = {.lex_state = 313}, - [2048] = {.lex_state = 8}, - [2049] = {.lex_state = 313}, - [2050] = {.lex_state = 313}, - [2051] = {.lex_state = 8}, + [2039] = {.lex_state = 20}, + [2040] = {.lex_state = 20}, + [2041] = {.lex_state = 20}, + [2042] = {.lex_state = 8}, + [2043] = {.lex_state = 20}, + [2044] = {.lex_state = 313}, + [2045] = {.lex_state = 313}, + [2046] = {.lex_state = 20}, + [2047] = {.lex_state = 15}, + [2048] = {.lex_state = 20}, + [2049] = {.lex_state = 20}, + [2050] = {.lex_state = 20}, + [2051] = {.lex_state = 313}, [2052] = {.lex_state = 8}, [2053] = {.lex_state = 313}, - [2054] = {.lex_state = 8}, + [2054] = {.lex_state = 20}, [2055] = {.lex_state = 313}, - [2056] = {.lex_state = 8}, - [2057] = {.lex_state = 15}, + [2056] = {.lex_state = 313}, + [2057] = {.lex_state = 20}, [2058] = {.lex_state = 313}, - [2059] = {.lex_state = 15}, - [2060] = {.lex_state = 8}, - [2061] = {.lex_state = 15}, - [2062] = {.lex_state = 8}, - [2063] = {.lex_state = 21}, - [2064] = {.lex_state = 8}, - [2065] = {.lex_state = 21}, - [2066] = {.lex_state = 8}, + [2059] = {.lex_state = 8}, + [2060] = {.lex_state = 313}, + [2061] = {.lex_state = 313}, + [2062] = {.lex_state = 20}, + [2063] = {.lex_state = 313}, + [2064] = {.lex_state = 20}, + [2065] = {.lex_state = 20}, + [2066] = {.lex_state = 15}, [2067] = {.lex_state = 8}, - [2068] = {.lex_state = 8}, - [2069] = {.lex_state = 8}, - [2070] = {.lex_state = 311}, - [2071] = {.lex_state = 8}, - [2072] = {.lex_state = 21}, - [2073] = {.lex_state = 8}, + [2068] = {.lex_state = 313}, + [2069] = {.lex_state = 20}, + [2070] = {.lex_state = 313}, + [2071] = {.lex_state = 313}, + [2072] = {.lex_state = 20}, + [2073] = {.lex_state = 20}, [2074] = {.lex_state = 20}, [2075] = {.lex_state = 8}, - [2076] = {.lex_state = 21}, + [2076] = {.lex_state = 20}, [2077] = {.lex_state = 313}, - [2078] = {.lex_state = 313}, - [2079] = {.lex_state = 313}, - [2080] = {.lex_state = 8}, - [2081] = {.lex_state = 20}, - [2082] = {.lex_state = 8}, - [2083] = {.lex_state = 313}, - [2084] = {.lex_state = 313}, + [2078] = {.lex_state = 20}, + [2079] = {.lex_state = 21}, + [2080] = {.lex_state = 20}, + [2081] = {.lex_state = 310}, + [2082] = {.lex_state = 20}, + [2083] = {.lex_state = 20}, + [2084] = {.lex_state = 20}, [2085] = {.lex_state = 8}, [2086] = {.lex_state = 20}, - [2087] = {.lex_state = 8}, - [2088] = {.lex_state = 313}, - [2089] = {.lex_state = 313}, - [2090] = {.lex_state = 8}, - [2091] = {.lex_state = 313}, + [2087] = {.lex_state = 20}, + [2088] = {.lex_state = 20}, + [2089] = {.lex_state = 20}, + [2090] = {.lex_state = 20}, + [2091] = {.lex_state = 20}, [2092] = {.lex_state = 313}, - [2093] = {.lex_state = 313}, - [2094] = {.lex_state = 8}, - [2095] = {.lex_state = 313}, + [2093] = {.lex_state = 20}, + [2094] = {.lex_state = 20}, + [2095] = {.lex_state = 20}, [2096] = {.lex_state = 8}, - [2097] = {.lex_state = 313}, + [2097] = {.lex_state = 8}, [2098] = {.lex_state = 313}, - [2099] = {.lex_state = 313}, - [2100] = {.lex_state = 8}, - [2101] = {.lex_state = 313}, - [2102] = {.lex_state = 8}, - [2103] = {.lex_state = 313}, + [2099] = {.lex_state = 20}, + [2100] = {.lex_state = 20}, + [2101] = {.lex_state = 20}, + [2102] = {.lex_state = 21}, + [2103] = {.lex_state = 311}, [2104] = {.lex_state = 313}, - [2105] = {.lex_state = 313}, - [2106] = {.lex_state = 313}, - [2107] = {.lex_state = 8}, - [2108] = {.lex_state = 8}, + [2105] = {.lex_state = 8}, + [2106] = {.lex_state = 21}, + [2107] = {.lex_state = 20}, + [2108] = {.lex_state = 15}, [2109] = {.lex_state = 313}, - [2110] = {.lex_state = 313}, - [2111] = {.lex_state = 20}, + [2110] = {.lex_state = 21}, + [2111] = {.lex_state = 8}, [2112] = {.lex_state = 313}, [2113] = {.lex_state = 8}, - [2114] = {.lex_state = 20}, - [2115] = {.lex_state = 8}, - [2116] = {.lex_state = 20}, - [2117] = {.lex_state = 21}, - [2118] = {.lex_state = 20}, - [2119] = {.lex_state = 313}, - [2120] = {.lex_state = 20}, - [2121] = {.lex_state = 313}, - [2122] = {.lex_state = 20}, - [2123] = {.lex_state = 15}, - [2124] = {.lex_state = 313}, - [2125] = {.lex_state = 20}, - [2126] = {.lex_state = 21}, + [2114] = {.lex_state = 313}, + [2115] = {.lex_state = 20}, + [2116] = {.lex_state = 21}, + [2117] = {.lex_state = 8}, + [2118] = {.lex_state = 313}, + [2119] = {.lex_state = 8}, + [2120] = {.lex_state = 21}, + [2121] = {.lex_state = 8}, + [2122] = {.lex_state = 21}, + [2123] = {.lex_state = 21}, + [2124] = {.lex_state = 20}, + [2125] = {.lex_state = 313}, + [2126] = {.lex_state = 20}, [2127] = {.lex_state = 310}, - [2128] = {.lex_state = 15}, - [2129] = {.lex_state = 310}, - [2130] = {.lex_state = 313}, - [2131] = {.lex_state = 313}, - [2132] = {.lex_state = 21}, + [2128] = {.lex_state = 8}, + [2129] = {.lex_state = 311}, + [2130] = {.lex_state = 8}, + [2131] = {.lex_state = 8}, + [2132] = {.lex_state = 8}, [2133] = {.lex_state = 311}, [2134] = {.lex_state = 311}, [2135] = {.lex_state = 311}, @@ -38100,16 +38156,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2146] = {.lex_state = 311}, [2147] = {.lex_state = 311}, [2148] = {.lex_state = 311}, - [2149] = {.lex_state = 310}, + [2149] = {.lex_state = 311}, [2150] = {.lex_state = 311}, [2151] = {.lex_state = 311}, - [2152] = {.lex_state = 311}, + [2152] = {.lex_state = 310}, [2153] = {.lex_state = 311}, - [2154] = {.lex_state = 310}, + [2154] = {.lex_state = 311}, [2155] = {.lex_state = 311}, [2156] = {.lex_state = 311}, [2157] = {.lex_state = 311}, - [2158] = {.lex_state = 18}, + [2158] = {.lex_state = 311}, [2159] = {.lex_state = 311}, [2160] = {.lex_state = 311}, [2161] = {.lex_state = 311}, @@ -38120,10 +38176,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2166] = {.lex_state = 311}, [2167] = {.lex_state = 311}, [2168] = {.lex_state = 311}, - [2169] = {.lex_state = 311}, + [2169] = {.lex_state = 21}, [2170] = {.lex_state = 311}, [2171] = {.lex_state = 311}, - [2172] = {.lex_state = 311}, + [2172] = {.lex_state = 21}, [2173] = {.lex_state = 311}, [2174] = {.lex_state = 311}, [2175] = {.lex_state = 311}, @@ -38134,7 +38190,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2180] = {.lex_state = 311}, [2181] = {.lex_state = 311}, [2182] = {.lex_state = 311}, - [2183] = {.lex_state = 311}, + [2183] = {.lex_state = 20}, [2184] = {.lex_state = 311}, [2185] = {.lex_state = 311}, [2186] = {.lex_state = 311}, @@ -38151,9 +38207,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2197] = {.lex_state = 311}, [2198] = {.lex_state = 311}, [2199] = {.lex_state = 311}, - [2200] = {.lex_state = 21}, + [2200] = {.lex_state = 311}, [2201] = {.lex_state = 311}, - [2202] = {.lex_state = 20}, + [2202] = {.lex_state = 311}, [2203] = {.lex_state = 311}, [2204] = {.lex_state = 311}, [2205] = {.lex_state = 311}, @@ -38181,7 +38237,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2227] = {.lex_state = 311}, [2228] = {.lex_state = 311}, [2229] = {.lex_state = 311}, - [2230] = {.lex_state = 311}, + [2230] = {.lex_state = 18}, [2231] = {.lex_state = 311}, [2232] = {.lex_state = 311}, [2233] = {.lex_state = 311}, @@ -38208,12 +38264,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2254] = {.lex_state = 311}, [2255] = {.lex_state = 311}, [2256] = {.lex_state = 311}, - [2257] = {.lex_state = 311}, + [2257] = {.lex_state = 310}, [2258] = {.lex_state = 311}, [2259] = {.lex_state = 311}, [2260] = {.lex_state = 311}, [2261] = {.lex_state = 311}, - [2262] = {.lex_state = 311}, + [2262] = {.lex_state = 310}, [2263] = {.lex_state = 311}, [2264] = {.lex_state = 311}, [2265] = {.lex_state = 311}, @@ -38222,7 +38278,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2268] = {.lex_state = 311}, [2269] = {.lex_state = 311}, [2270] = {.lex_state = 311}, - [2271] = {.lex_state = 310}, + [2271] = {.lex_state = 311}, [2272] = {.lex_state = 311}, [2273] = {.lex_state = 311}, [2274] = {.lex_state = 311}, @@ -38249,7 +38305,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2295] = {.lex_state = 311}, [2296] = {.lex_state = 311}, [2297] = {.lex_state = 311}, - [2298] = {.lex_state = 23}, + [2298] = {.lex_state = 311}, [2299] = {.lex_state = 311}, [2300] = {.lex_state = 311}, [2301] = {.lex_state = 311}, @@ -38261,11 +38317,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2307] = {.lex_state = 311}, [2308] = {.lex_state = 311}, [2309] = {.lex_state = 311}, - [2310] = {.lex_state = 24}, + [2310] = {.lex_state = 311}, [2311] = {.lex_state = 311}, [2312] = {.lex_state = 311}, - [2313] = {.lex_state = 24}, - [2314] = {.lex_state = 24}, + [2313] = {.lex_state = 311}, + [2314] = {.lex_state = 311}, [2315] = {.lex_state = 311}, [2316] = {.lex_state = 311}, [2317] = {.lex_state = 311}, @@ -38305,7 +38361,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2351] = {.lex_state = 311}, [2352] = {.lex_state = 311}, [2353] = {.lex_state = 311}, - [2354] = {.lex_state = 311}, + [2354] = {.lex_state = 24}, [2355] = {.lex_state = 311}, [2356] = {.lex_state = 311}, [2357] = {.lex_state = 311}, @@ -38320,7 +38376,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2366] = {.lex_state = 311}, [2367] = {.lex_state = 311}, [2368] = {.lex_state = 311}, - [2369] = {.lex_state = 311}, + [2369] = {.lex_state = 23}, [2370] = {.lex_state = 311}, [2371] = {.lex_state = 311}, [2372] = {.lex_state = 311}, @@ -38333,9 +38389,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2379] = {.lex_state = 311}, [2380] = {.lex_state = 311}, [2381] = {.lex_state = 311}, - [2382] = {.lex_state = 311}, + [2382] = {.lex_state = 24}, [2383] = {.lex_state = 311}, - [2384] = {.lex_state = 311}, + [2384] = {.lex_state = 24}, [2385] = {.lex_state = 311}, [2386] = {.lex_state = 311}, [2387] = {.lex_state = 311}, @@ -38373,10 +38429,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2419] = {.lex_state = 311}, [2420] = {.lex_state = 311}, [2421] = {.lex_state = 311}, - [2422] = {.lex_state = 23}, + [2422] = {.lex_state = 311}, [2423] = {.lex_state = 15}, [2424] = {.lex_state = 15}, - [2425] = {.lex_state = 15}, + [2425] = {.lex_state = 311}, [2426] = {.lex_state = 15}, [2427] = {.lex_state = 15}, [2428] = {.lex_state = 15}, @@ -38386,36 +38442,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2432] = {.lex_state = 15}, [2433] = {.lex_state = 15}, [2434] = {.lex_state = 15}, - [2435] = {.lex_state = 23}, + [2435] = {.lex_state = 15}, [2436] = {.lex_state = 15}, [2437] = {.lex_state = 15}, [2438] = {.lex_state = 15}, [2439] = {.lex_state = 15}, [2440] = {.lex_state = 15}, - [2441] = {.lex_state = 15}, + [2441] = {.lex_state = 24}, [2442] = {.lex_state = 15}, - [2443] = {.lex_state = 311}, + [2443] = {.lex_state = 15}, [2444] = {.lex_state = 15}, [2445] = {.lex_state = 15}, [2446] = {.lex_state = 15}, [2447] = {.lex_state = 15}, [2448] = {.lex_state = 15}, - [2449] = {.lex_state = 15}, - [2450] = {.lex_state = 24}, + [2449] = {.lex_state = 311}, + [2450] = {.lex_state = 15}, [2451] = {.lex_state = 15}, [2452] = {.lex_state = 15}, [2453] = {.lex_state = 15}, [2454] = {.lex_state = 15}, - [2455] = {.lex_state = 15}, + [2455] = {.lex_state = 23}, [2456] = {.lex_state = 15}, - [2457] = {.lex_state = 311}, + [2457] = {.lex_state = 15}, [2458] = {.lex_state = 15}, [2459] = {.lex_state = 15}, - [2460] = {.lex_state = 24}, + [2460] = {.lex_state = 15}, [2461] = {.lex_state = 15}, [2462] = {.lex_state = 15}, [2463] = {.lex_state = 15}, - [2464] = {.lex_state = 15}, + [2464] = {.lex_state = 24}, [2465] = {.lex_state = 15}, [2466] = {.lex_state = 15}, [2467] = {.lex_state = 15}, @@ -38426,33 +38482,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2472] = {.lex_state = 15}, [2473] = {.lex_state = 15}, [2474] = {.lex_state = 15}, - [2475] = {.lex_state = 15}, + [2475] = {.lex_state = 23}, [2476] = {.lex_state = 15}, [2477] = {.lex_state = 15}, [2478] = {.lex_state = 15}, [2479] = {.lex_state = 15}, [2480] = {.lex_state = 15}, - [2481] = {.lex_state = 20}, + [2481] = {.lex_state = 15}, [2482] = {.lex_state = 20}, [2483] = {.lex_state = 20}, [2484] = {.lex_state = 20}, - [2485] = {.lex_state = 28}, + [2485] = {.lex_state = 20}, [2486] = {.lex_state = 20}, [2487] = {.lex_state = 20}, - [2488] = {.lex_state = 20}, - [2489] = {.lex_state = 27}, + [2488] = {.lex_state = 28}, + [2489] = {.lex_state = 20}, [2490] = {.lex_state = 20}, [2491] = {.lex_state = 27}, [2492] = {.lex_state = 20}, - [2493] = {.lex_state = 31}, - [2494] = {.lex_state = 31}, + [2493] = {.lex_state = 27}, + [2494] = {.lex_state = 20}, [2495] = {.lex_state = 31}, [2496] = {.lex_state = 31}, [2497] = {.lex_state = 31}, - [2498] = {.lex_state = 41}, - [2499] = {.lex_state = 41}, - [2500] = {.lex_state = 31}, - [2501] = {.lex_state = 31}, + [2498] = {.lex_state = 31}, + [2499] = {.lex_state = 31}, + [2500] = {.lex_state = 41}, + [2501] = {.lex_state = 41}, [2502] = {.lex_state = 31}, [2503] = {.lex_state = 31}, [2504] = {.lex_state = 31}, @@ -38472,901 +38528,901 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2518] = {.lex_state = 31}, [2519] = {.lex_state = 31}, [2520] = {.lex_state = 31}, - [2521] = {.lex_state = 40}, - [2522] = {.lex_state = 40}, - [2523] = {.lex_state = 40}, - [2524] = {.lex_state = 15}, + [2521] = {.lex_state = 31}, + [2522] = {.lex_state = 31}, + [2523] = {.lex_state = 31}, + [2524] = {.lex_state = 16}, [2525] = {.lex_state = 31}, [2526] = {.lex_state = 31}, [2527] = {.lex_state = 31}, - [2528] = {.lex_state = 31}, + [2528] = {.lex_state = 15}, [2529] = {.lex_state = 31}, [2530] = {.lex_state = 40}, [2531] = {.lex_state = 16}, [2532] = {.lex_state = 15}, - [2533] = {.lex_state = 31}, - [2534] = {.lex_state = 31}, - [2535] = {.lex_state = 31}, + [2533] = {.lex_state = 40}, + [2534] = {.lex_state = 16}, + [2535] = {.lex_state = 40}, [2536] = {.lex_state = 31}, [2537] = {.lex_state = 31}, - [2538] = {.lex_state = 16}, + [2538] = {.lex_state = 31}, [2539] = {.lex_state = 31}, [2540] = {.lex_state = 31}, - [2541] = {.lex_state = 31}, - [2542] = {.lex_state = 31}, - [2543] = {.lex_state = 16}, - [2544] = {.lex_state = 40}, - [2545] = {.lex_state = 40}, + [2541] = {.lex_state = 16}, + [2542] = {.lex_state = 40}, + [2543] = {.lex_state = 15}, + [2544] = {.lex_state = 31}, + [2545] = {.lex_state = 31}, [2546] = {.lex_state = 31}, - [2547] = {.lex_state = 15}, - [2548] = {.lex_state = 31}, - [2549] = {.lex_state = 31}, + [2547] = {.lex_state = 31}, + [2548] = {.lex_state = 40}, + [2549] = {.lex_state = 16}, [2550] = {.lex_state = 40}, - [2551] = {.lex_state = 40}, - [2552] = {.lex_state = 16}, - [2553] = {.lex_state = 15}, + [2551] = {.lex_state = 16}, + [2552] = {.lex_state = 15}, + [2553] = {.lex_state = 16}, [2554] = {.lex_state = 40}, - [2555] = {.lex_state = 16}, - [2556] = {.lex_state = 31}, + [2555] = {.lex_state = 31}, + [2556] = {.lex_state = 15}, [2557] = {.lex_state = 31}, - [2558] = {.lex_state = 16}, - [2559] = {.lex_state = 40}, + [2558] = {.lex_state = 31}, + [2559] = {.lex_state = 31}, [2560] = {.lex_state = 31}, - [2561] = {.lex_state = 31}, - [2562] = {.lex_state = 31}, - [2563] = {.lex_state = 15}, + [2561] = {.lex_state = 40}, + [2562] = {.lex_state = 15}, + [2563] = {.lex_state = 16}, [2564] = {.lex_state = 31}, - [2565] = {.lex_state = 40}, - [2566] = {.lex_state = 31}, - [2567] = {.lex_state = 40}, + [2565] = {.lex_state = 31}, + [2566] = {.lex_state = 15}, + [2567] = {.lex_state = 15}, [2568] = {.lex_state = 31}, [2569] = {.lex_state = 31}, - [2570] = {.lex_state = 16}, + [2570] = {.lex_state = 40}, [2571] = {.lex_state = 16}, - [2572] = {.lex_state = 16}, - [2573] = {.lex_state = 15}, - [2574] = {.lex_state = 16}, - [2575] = {.lex_state = 31}, + [2572] = {.lex_state = 40}, + [2573] = {.lex_state = 31}, + [2574] = {.lex_state = 40}, + [2575] = {.lex_state = 16}, [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 40}, + [2577] = {.lex_state = 16}, [2578] = {.lex_state = 31}, - [2579] = {.lex_state = 40}, + [2579] = {.lex_state = 31}, [2580] = {.lex_state = 16}, - [2581] = {.lex_state = 31}, + [2581] = {.lex_state = 40}, [2582] = {.lex_state = 31}, - [2583] = {.lex_state = 15}, + [2583] = {.lex_state = 16}, [2584] = {.lex_state = 31}, - [2585] = {.lex_state = 31}, + [2585] = {.lex_state = 40}, [2586] = {.lex_state = 16}, - [2587] = {.lex_state = 16}, - [2588] = {.lex_state = 16}, - [2589] = {.lex_state = 16}, + [2587] = {.lex_state = 31}, + [2588] = {.lex_state = 31}, + [2589] = {.lex_state = 31}, [2590] = {.lex_state = 31}, - [2591] = {.lex_state = 15}, - [2592] = {.lex_state = 31}, - [2593] = {.lex_state = 16}, + [2591] = {.lex_state = 40}, + [2592] = {.lex_state = 16}, + [2593] = {.lex_state = 31}, [2594] = {.lex_state = 31}, [2595] = {.lex_state = 31}, - [2596] = {.lex_state = 33}, - [2597] = {.lex_state = 31}, + [2596] = {.lex_state = 16}, + [2597] = {.lex_state = 33}, [2598] = {.lex_state = 31}, [2599] = {.lex_state = 31}, - [2600] = {.lex_state = 34}, - [2601] = {.lex_state = 34}, - [2602] = {.lex_state = 313}, - [2603] = {.lex_state = 31}, + [2600] = {.lex_state = 31}, + [2601] = {.lex_state = 31}, + [2602] = {.lex_state = 34}, + [2603] = {.lex_state = 34}, [2604] = {.lex_state = 313}, [2605] = {.lex_state = 313}, - [2606] = {.lex_state = 33}, - [2607] = {.lex_state = 34}, + [2606] = {.lex_state = 31}, + [2607] = {.lex_state = 31}, [2608] = {.lex_state = 31}, [2609] = {.lex_state = 313}, [2610] = {.lex_state = 313}, - [2611] = {.lex_state = 313}, - [2612] = {.lex_state = 313}, + [2611] = {.lex_state = 31}, + [2612] = {.lex_state = 31}, [2613] = {.lex_state = 313}, - [2614] = {.lex_state = 313}, + [2614] = {.lex_state = 31}, [2615] = {.lex_state = 31}, - [2616] = {.lex_state = 31}, - [2617] = {.lex_state = 313}, - [2618] = {.lex_state = 313}, - [2619] = {.lex_state = 313}, + [2616] = {.lex_state = 313}, + [2617] = {.lex_state = 31}, + [2618] = {.lex_state = 31}, + [2619] = {.lex_state = 31}, [2620] = {.lex_state = 313}, - [2621] = {.lex_state = 31}, - [2622] = {.lex_state = 31}, + [2621] = {.lex_state = 313}, + [2622] = {.lex_state = 313}, [2623] = {.lex_state = 31}, [2624] = {.lex_state = 313}, - [2625] = {.lex_state = 31}, - [2626] = {.lex_state = 313}, + [2625] = {.lex_state = 34}, + [2626] = {.lex_state = 31}, [2627] = {.lex_state = 313}, [2628] = {.lex_state = 313}, [2629] = {.lex_state = 31}, - [2630] = {.lex_state = 34}, - [2631] = {.lex_state = 31}, + [2630] = {.lex_state = 313}, + [2631] = {.lex_state = 313}, [2632] = {.lex_state = 31}, [2633] = {.lex_state = 31}, - [2634] = {.lex_state = 31}, + [2634] = {.lex_state = 313}, [2635] = {.lex_state = 313}, - [2636] = {.lex_state = 31}, - [2637] = {.lex_state = 31}, - [2638] = {.lex_state = 313}, + [2636] = {.lex_state = 313}, + [2637] = {.lex_state = 313}, + [2638] = {.lex_state = 31}, [2639] = {.lex_state = 313}, - [2640] = {.lex_state = 31}, - [2641] = {.lex_state = 313}, - [2642] = {.lex_state = 31}, + [2640] = {.lex_state = 34}, + [2641] = {.lex_state = 31}, + [2642] = {.lex_state = 33}, [2643] = {.lex_state = 31}, [2644] = {.lex_state = 31}, [2645] = {.lex_state = 313}, [2646] = {.lex_state = 31}, [2647] = {.lex_state = 313}, - [2648] = {.lex_state = 31}, - [2649] = {.lex_state = 34}, - [2650] = {.lex_state = 33}, - [2651] = {.lex_state = 313}, + [2648] = {.lex_state = 313}, + [2649] = {.lex_state = 31}, + [2650] = {.lex_state = 31}, + [2651] = {.lex_state = 34}, [2652] = {.lex_state = 31}, - [2653] = {.lex_state = 34}, + [2653] = {.lex_state = 313}, [2654] = {.lex_state = 34}, [2655] = {.lex_state = 313}, - [2656] = {.lex_state = 313}, + [2656] = {.lex_state = 31}, [2657] = {.lex_state = 313}, - [2658] = {.lex_state = 31}, - [2659] = {.lex_state = 31}, - [2660] = {.lex_state = 31}, + [2658] = {.lex_state = 313}, + [2659] = {.lex_state = 313}, + [2660] = {.lex_state = 33}, [2661] = {.lex_state = 31}, - [2662] = {.lex_state = 31}, - [2663] = {.lex_state = 313}, + [2662] = {.lex_state = 34}, + [2663] = {.lex_state = 31}, [2664] = {.lex_state = 313}, - [2665] = {.lex_state = 31}, - [2666] = {.lex_state = 313}, - [2667] = {.lex_state = 313}, - [2668] = {.lex_state = 313}, - [2669] = {.lex_state = 313}, + [2665] = {.lex_state = 313}, + [2666] = {.lex_state = 31}, + [2667] = {.lex_state = 31}, + [2668] = {.lex_state = 31}, + [2669] = {.lex_state = 31}, [2670] = {.lex_state = 313}, [2671] = {.lex_state = 313}, [2672] = {.lex_state = 31}, [2673] = {.lex_state = 31}, [2674] = {.lex_state = 313}, - [2675] = {.lex_state = 31}, + [2675] = {.lex_state = 313}, [2676] = {.lex_state = 313}, [2677] = {.lex_state = 31}, - [2678] = {.lex_state = 313}, + [2678] = {.lex_state = 31}, [2679] = {.lex_state = 313}, [2680] = {.lex_state = 313}, - [2681] = {.lex_state = 313}, + [2681] = {.lex_state = 31}, [2682] = {.lex_state = 313}, [2683] = {.lex_state = 313}, [2684] = {.lex_state = 313}, - [2685] = {.lex_state = 313}, + [2685] = {.lex_state = 31}, [2686] = {.lex_state = 313}, [2687] = {.lex_state = 31}, [2688] = {.lex_state = 31}, [2689] = {.lex_state = 313}, - [2690] = {.lex_state = 31}, + [2690] = {.lex_state = 313}, [2691] = {.lex_state = 31}, - [2692] = {.lex_state = 31}, - [2693] = {.lex_state = 31}, - [2694] = {.lex_state = 31}, + [2692] = {.lex_state = 313}, + [2693] = {.lex_state = 313}, + [2694] = {.lex_state = 313}, [2695] = {.lex_state = 313}, - [2696] = {.lex_state = 31}, - [2697] = {.lex_state = 313}, - [2698] = {.lex_state = 333}, - [2699] = {.lex_state = 31}, + [2696] = {.lex_state = 313}, + [2697] = {.lex_state = 31}, + [2698] = {.lex_state = 313}, + [2699] = {.lex_state = 313}, [2700] = {.lex_state = 313}, - [2701] = {.lex_state = 313}, + [2701] = {.lex_state = 31}, [2702] = {.lex_state = 313}, [2703] = {.lex_state = 313}, - [2704] = {.lex_state = 313}, - [2705] = {.lex_state = 31}, - [2706] = {.lex_state = 34}, - [2707] = {.lex_state = 34}, + [2704] = {.lex_state = 31}, + [2705] = {.lex_state = 313}, + [2706] = {.lex_state = 333}, + [2707] = {.lex_state = 313}, [2708] = {.lex_state = 34}, - [2709] = {.lex_state = 31}, - [2710] = {.lex_state = 31}, - [2711] = {.lex_state = 31}, - [2712] = {.lex_state = 336}, + [2709] = {.lex_state = 34}, + [2710] = {.lex_state = 336}, + [2711] = {.lex_state = 34}, + [2712] = {.lex_state = 34}, [2713] = {.lex_state = 31}, - [2714] = {.lex_state = 34}, - [2715] = {.lex_state = 38}, - [2716] = {.lex_state = 34}, - [2717] = {.lex_state = 38}, - [2718] = {.lex_state = 31}, - [2719] = {.lex_state = 24}, + [2714] = {.lex_state = 31}, + [2715] = {.lex_state = 31}, + [2716] = {.lex_state = 38}, + [2717] = {.lex_state = 34}, + [2718] = {.lex_state = 24}, + [2719] = {.lex_state = 34}, [2720] = {.lex_state = 34}, - [2721] = {.lex_state = 34}, - [2722] = {.lex_state = 31}, - [2723] = {.lex_state = 336}, - [2724] = {.lex_state = 31}, - [2725] = {.lex_state = 24}, - [2726] = {.lex_state = 34}, + [2721] = {.lex_state = 313}, + [2722] = {.lex_state = 24}, + [2723] = {.lex_state = 333}, + [2724] = {.lex_state = 34}, + [2725] = {.lex_state = 34}, + [2726] = {.lex_state = 31}, [2727] = {.lex_state = 34}, - [2728] = {.lex_state = 38}, - [2729] = {.lex_state = 34}, - [2730] = {.lex_state = 31}, - [2731] = {.lex_state = 34}, - [2732] = {.lex_state = 34}, - [2733] = {.lex_state = 34}, - [2734] = {.lex_state = 333}, + [2728] = {.lex_state = 31}, + [2729] = {.lex_state = 31}, + [2730] = {.lex_state = 38}, + [2731] = {.lex_state = 31}, + [2732] = {.lex_state = 31}, + [2733] = {.lex_state = 31}, + [2734] = {.lex_state = 34}, [2735] = {.lex_state = 34}, [2736] = {.lex_state = 34}, [2737] = {.lex_state = 34}, - [2738] = {.lex_state = 38}, + [2738] = {.lex_state = 34}, [2739] = {.lex_state = 31}, - [2740] = {.lex_state = 24}, - [2741] = {.lex_state = 313}, - [2742] = {.lex_state = 34}, + [2740] = {.lex_state = 44}, + [2741] = {.lex_state = 34}, + [2742] = {.lex_state = 24}, [2743] = {.lex_state = 34}, [2744] = {.lex_state = 34}, - [2745] = {.lex_state = 34}, + [2745] = {.lex_state = 38}, [2746] = {.lex_state = 34}, [2747] = {.lex_state = 34}, - [2748] = {.lex_state = 313}, + [2748] = {.lex_state = 34}, [2749] = {.lex_state = 34}, - [2750] = {.lex_state = 34}, - [2751] = {.lex_state = 44}, + [2750] = {.lex_state = 44}, + [2751] = {.lex_state = 34}, [2752] = {.lex_state = 34}, - [2753] = {.lex_state = 34}, + [2753] = {.lex_state = 31}, [2754] = {.lex_state = 34}, - [2755] = {.lex_state = 34}, - [2756] = {.lex_state = 44}, - [2757] = {.lex_state = 34}, + [2755] = {.lex_state = 313}, + [2756] = {.lex_state = 34}, + [2757] = {.lex_state = 31}, [2758] = {.lex_state = 34}, [2759] = {.lex_state = 34}, - [2760] = {.lex_state = 31}, - [2761] = {.lex_state = 24}, - [2762] = {.lex_state = 44}, - [2763] = {.lex_state = 24}, + [2760] = {.lex_state = 34}, + [2761] = {.lex_state = 38}, + [2762] = {.lex_state = 24}, + [2763] = {.lex_state = 34}, [2764] = {.lex_state = 34}, [2765] = {.lex_state = 31}, [2766] = {.lex_state = 31}, [2767] = {.lex_state = 34}, - [2768] = {.lex_state = 31}, + [2768] = {.lex_state = 24}, [2769] = {.lex_state = 34}, - [2770] = {.lex_state = 34}, + [2770] = {.lex_state = 44}, [2771] = {.lex_state = 34}, - [2772] = {.lex_state = 34}, + [2772] = {.lex_state = 336}, [2773] = {.lex_state = 34}, - [2774] = {.lex_state = 31}, - [2775] = {.lex_state = 22}, - [2776] = {.lex_state = 306}, - [2777] = {.lex_state = 43}, + [2774] = {.lex_state = 34}, + [2775] = {.lex_state = 34}, + [2776] = {.lex_state = 34}, + [2777] = {.lex_state = 34}, [2778] = {.lex_state = 22}, - [2779] = {.lex_state = 34}, + [2779] = {.lex_state = 22}, [2780] = {.lex_state = 22}, [2781] = {.lex_state = 22}, - [2782] = {.lex_state = 306}, - [2783] = {.lex_state = 34}, - [2784] = {.lex_state = 334}, + [2782] = {.lex_state = 31}, + [2783] = {.lex_state = 22}, + [2784] = {.lex_state = 306}, [2785] = {.lex_state = 31}, - [2786] = {.lex_state = 306}, + [2786] = {.lex_state = 34}, [2787] = {.lex_state = 22}, - [2788] = {.lex_state = 306}, - [2789] = {.lex_state = 22}, - [2790] = {.lex_state = 334}, + [2788] = {.lex_state = 31}, + [2789] = {.lex_state = 34}, + [2790] = {.lex_state = 43}, [2791] = {.lex_state = 22}, - [2792] = {.lex_state = 22}, + [2792] = {.lex_state = 306}, [2793] = {.lex_state = 22}, - [2794] = {.lex_state = 22}, - [2795] = {.lex_state = 22}, + [2794] = {.lex_state = 31}, + [2795] = {.lex_state = 306}, [2796] = {.lex_state = 22}, - [2797] = {.lex_state = 22}, - [2798] = {.lex_state = 33}, - [2799] = {.lex_state = 33}, - [2800] = {.lex_state = 22}, - [2801] = {.lex_state = 33}, + [2797] = {.lex_state = 306}, + [2798] = {.lex_state = 22}, + [2799] = {.lex_state = 22}, + [2800] = {.lex_state = 33}, + [2801] = {.lex_state = 334}, [2802] = {.lex_state = 22}, [2803] = {.lex_state = 306}, - [2804] = {.lex_state = 22}, + [2804] = {.lex_state = 306}, [2805] = {.lex_state = 22}, - [2806] = {.lex_state = 22}, - [2807] = {.lex_state = 31}, - [2808] = {.lex_state = 33}, - [2809] = {.lex_state = 22}, - [2810] = {.lex_state = 22}, - [2811] = {.lex_state = 306}, - [2812] = {.lex_state = 34}, - [2813] = {.lex_state = 34}, - [2814] = {.lex_state = 31}, - [2815] = {.lex_state = 313}, + [2806] = {.lex_state = 31}, + [2807] = {.lex_state = 333}, + [2808] = {.lex_state = 22}, + [2809] = {.lex_state = 33}, + [2810] = {.lex_state = 334}, + [2811] = {.lex_state = 31}, + [2812] = {.lex_state = 31}, + [2813] = {.lex_state = 22}, + [2814] = {.lex_state = 34}, + [2815] = {.lex_state = 22}, [2816] = {.lex_state = 22}, - [2817] = {.lex_state = 22}, - [2818] = {.lex_state = 31}, - [2819] = {.lex_state = 15}, - [2820] = {.lex_state = 22}, + [2817] = {.lex_state = 33}, + [2818] = {.lex_state = 22}, + [2819] = {.lex_state = 22}, + [2820] = {.lex_state = 33}, [2821] = {.lex_state = 22}, - [2822] = {.lex_state = 313}, - [2823] = {.lex_state = 333}, - [2824] = {.lex_state = 15}, - [2825] = {.lex_state = 31}, + [2822] = {.lex_state = 22}, + [2823] = {.lex_state = 15}, + [2824] = {.lex_state = 313}, + [2825] = {.lex_state = 22}, [2826] = {.lex_state = 22}, - [2827] = {.lex_state = 31}, + [2827] = {.lex_state = 22}, [2828] = {.lex_state = 22}, [2829] = {.lex_state = 22}, - [2830] = {.lex_state = 22}, + [2830] = {.lex_state = 313}, [2831] = {.lex_state = 22}, - [2832] = {.lex_state = 22}, - [2833] = {.lex_state = 22}, - [2834] = {.lex_state = 22}, - [2835] = {.lex_state = 31}, - [2836] = {.lex_state = 31}, - [2837] = {.lex_state = 31}, - [2838] = {.lex_state = 31}, + [2832] = {.lex_state = 31}, + [2833] = {.lex_state = 31}, + [2834] = {.lex_state = 31}, + [2835] = {.lex_state = 22}, + [2836] = {.lex_state = 22}, + [2837] = {.lex_state = 15}, + [2838] = {.lex_state = 22}, [2839] = {.lex_state = 31}, - [2840] = {.lex_state = 33}, + [2840] = {.lex_state = 22}, [2841] = {.lex_state = 22}, - [2842] = {.lex_state = 306}, - [2843] = {.lex_state = 53}, - [2844] = {.lex_state = 306}, + [2842] = {.lex_state = 33}, + [2843] = {.lex_state = 22}, + [2844] = {.lex_state = 33}, [2845] = {.lex_state = 306}, - [2846] = {.lex_state = 48}, - [2847] = {.lex_state = 35}, - [2848] = {.lex_state = 53}, - [2849] = {.lex_state = 35}, - [2850] = {.lex_state = 48}, - [2851] = {.lex_state = 53}, - [2852] = {.lex_state = 53}, + [2846] = {.lex_state = 31}, + [2847] = {.lex_state = 306}, + [2848] = {.lex_state = 306}, + [2849] = {.lex_state = 306}, + [2850] = {.lex_state = 306}, + [2851] = {.lex_state = 306}, + [2852] = {.lex_state = 306}, [2853] = {.lex_state = 306}, - [2854] = {.lex_state = 334}, - [2855] = {.lex_state = 38}, - [2856] = {.lex_state = 38}, - [2857] = {.lex_state = 48}, - [2858] = {.lex_state = 31}, - [2859] = {.lex_state = 35}, - [2860] = {.lex_state = 53}, - [2861] = {.lex_state = 53}, - [2862] = {.lex_state = 35}, - [2863] = {.lex_state = 31}, - [2864] = {.lex_state = 53}, + [2854] = {.lex_state = 306}, + [2855] = {.lex_state = 15}, + [2856] = {.lex_state = 306}, + [2857] = {.lex_state = 15}, + [2858] = {.lex_state = 48}, + [2859] = {.lex_state = 306}, + [2860] = {.lex_state = 306}, + [2861] = {.lex_state = 334}, + [2862] = {.lex_state = 38}, + [2863] = {.lex_state = 38}, + [2864] = {.lex_state = 31}, [2865] = {.lex_state = 306}, - [2866] = {.lex_state = 53}, - [2867] = {.lex_state = 31}, - [2868] = {.lex_state = 15}, + [2866] = {.lex_state = 306}, + [2867] = {.lex_state = 306}, + [2868] = {.lex_state = 306}, [2869] = {.lex_state = 306}, [2870] = {.lex_state = 306}, [2871] = {.lex_state = 48}, [2872] = {.lex_state = 53}, - [2873] = {.lex_state = 53}, + [2873] = {.lex_state = 306}, [2874] = {.lex_state = 306}, - [2875] = {.lex_state = 34}, - [2876] = {.lex_state = 306}, - [2877] = {.lex_state = 53}, - [2878] = {.lex_state = 35}, - [2879] = {.lex_state = 306}, - [2880] = {.lex_state = 48}, + [2875] = {.lex_state = 306}, + [2876] = {.lex_state = 38}, + [2877] = {.lex_state = 38}, + [2878] = {.lex_state = 306}, + [2879] = {.lex_state = 31}, + [2880] = {.lex_state = 306}, [2881] = {.lex_state = 306}, [2882] = {.lex_state = 306}, - [2883] = {.lex_state = 48}, - [2884] = {.lex_state = 53}, - [2885] = {.lex_state = 31}, - [2886] = {.lex_state = 48}, - [2887] = {.lex_state = 31}, - [2888] = {.lex_state = 53}, + [2883] = {.lex_state = 306}, + [2884] = {.lex_state = 306}, + [2885] = {.lex_state = 53}, + [2886] = {.lex_state = 306}, + [2887] = {.lex_state = 306}, + [2888] = {.lex_state = 306}, [2889] = {.lex_state = 306}, - [2890] = {.lex_state = 35}, + [2890] = {.lex_state = 15}, [2891] = {.lex_state = 35}, - [2892] = {.lex_state = 35}, - [2893] = {.lex_state = 48}, - [2894] = {.lex_state = 53}, + [2892] = {.lex_state = 15}, + [2893] = {.lex_state = 306}, + [2894] = {.lex_state = 35}, [2895] = {.lex_state = 35}, - [2896] = {.lex_state = 306}, - [2897] = {.lex_state = 53}, - [2898] = {.lex_state = 35}, - [2899] = {.lex_state = 53}, - [2900] = {.lex_state = 48}, - [2901] = {.lex_state = 306}, - [2902] = {.lex_state = 53}, - [2903] = {.lex_state = 306}, - [2904] = {.lex_state = 53}, - [2905] = {.lex_state = 53}, + [2896] = {.lex_state = 35}, + [2897] = {.lex_state = 306}, + [2898] = {.lex_state = 306}, + [2899] = {.lex_state = 306}, + [2900] = {.lex_state = 306}, + [2901] = {.lex_state = 35}, + [2902] = {.lex_state = 35}, + [2903] = {.lex_state = 35}, + [2904] = {.lex_state = 35}, + [2905] = {.lex_state = 35}, [2906] = {.lex_state = 35}, [2907] = {.lex_state = 48}, - [2908] = {.lex_state = 306}, - [2909] = {.lex_state = 35}, + [2908] = {.lex_state = 35}, + [2909] = {.lex_state = 53}, [2910] = {.lex_state = 48}, - [2911] = {.lex_state = 48}, + [2911] = {.lex_state = 306}, [2912] = {.lex_state = 35}, - [2913] = {.lex_state = 306}, + [2913] = {.lex_state = 35}, [2914] = {.lex_state = 48}, - [2915] = {.lex_state = 306}, - [2916] = {.lex_state = 35}, - [2917] = {.lex_state = 48}, - [2918] = {.lex_state = 35}, + [2915] = {.lex_state = 35}, + [2916] = {.lex_state = 48}, + [2917] = {.lex_state = 35}, + [2918] = {.lex_state = 333}, [2919] = {.lex_state = 306}, - [2920] = {.lex_state = 306}, - [2921] = {.lex_state = 48}, - [2922] = {.lex_state = 35}, + [2920] = {.lex_state = 48}, + [2921] = {.lex_state = 35}, + [2922] = {.lex_state = 48}, [2923] = {.lex_state = 306}, [2924] = {.lex_state = 35}, - [2925] = {.lex_state = 48}, + [2925] = {.lex_state = 53}, [2926] = {.lex_state = 53}, - [2927] = {.lex_state = 306}, - [2928] = {.lex_state = 35}, - [2929] = {.lex_state = 306}, - [2930] = {.lex_state = 306}, - [2931] = {.lex_state = 306}, - [2932] = {.lex_state = 35}, - [2933] = {.lex_state = 53}, + [2927] = {.lex_state = 48}, + [2928] = {.lex_state = 306}, + [2929] = {.lex_state = 35}, + [2930] = {.lex_state = 53}, + [2931] = {.lex_state = 53}, + [2932] = {.lex_state = 306}, + [2933] = {.lex_state = 48}, [2934] = {.lex_state = 35}, - [2935] = {.lex_state = 306}, - [2936] = {.lex_state = 35}, - [2937] = {.lex_state = 306}, - [2938] = {.lex_state = 35}, - [2939] = {.lex_state = 306}, - [2940] = {.lex_state = 35}, - [2941] = {.lex_state = 306}, - [2942] = {.lex_state = 35}, + [2935] = {.lex_state = 53}, + [2936] = {.lex_state = 53}, + [2937] = {.lex_state = 48}, + [2938] = {.lex_state = 306}, + [2939] = {.lex_state = 35}, + [2940] = {.lex_state = 53}, + [2941] = {.lex_state = 53}, + [2942] = {.lex_state = 48}, [2943] = {.lex_state = 306}, - [2944] = {.lex_state = 48}, - [2945] = {.lex_state = 15}, - [2946] = {.lex_state = 306}, - [2947] = {.lex_state = 306}, - [2948] = {.lex_state = 35}, + [2944] = {.lex_state = 306}, + [2945] = {.lex_state = 306}, + [2946] = {.lex_state = 31}, + [2947] = {.lex_state = 15}, + [2948] = {.lex_state = 31}, [2949] = {.lex_state = 306}, - [2950] = {.lex_state = 38}, - [2951] = {.lex_state = 306}, - [2952] = {.lex_state = 334}, - [2953] = {.lex_state = 15}, + [2950] = {.lex_state = 31}, + [2951] = {.lex_state = 31}, + [2952] = {.lex_state = 306}, + [2953] = {.lex_state = 306}, [2954] = {.lex_state = 35}, - [2955] = {.lex_state = 306}, + [2955] = {.lex_state = 31}, [2956] = {.lex_state = 306}, - [2957] = {.lex_state = 15}, + [2957] = {.lex_state = 306}, [2958] = {.lex_state = 306}, - [2959] = {.lex_state = 306}, - [2960] = {.lex_state = 306}, - [2961] = {.lex_state = 306}, - [2962] = {.lex_state = 31}, - [2963] = {.lex_state = 306}, - [2964] = {.lex_state = 306}, - [2965] = {.lex_state = 35}, + [2959] = {.lex_state = 53}, + [2960] = {.lex_state = 53}, + [2961] = {.lex_state = 48}, + [2962] = {.lex_state = 306}, + [2963] = {.lex_state = 48}, + [2964] = {.lex_state = 31}, + [2965] = {.lex_state = 334}, [2966] = {.lex_state = 306}, [2967] = {.lex_state = 306}, - [2968] = {.lex_state = 53}, + [2968] = {.lex_state = 35}, [2969] = {.lex_state = 306}, - [2970] = {.lex_state = 31}, - [2971] = {.lex_state = 44}, - [2972] = {.lex_state = 44}, - [2973] = {.lex_state = 31}, + [2970] = {.lex_state = 306}, + [2971] = {.lex_state = 306}, + [2972] = {.lex_state = 53}, + [2973] = {.lex_state = 53}, [2974] = {.lex_state = 48}, [2975] = {.lex_state = 306}, [2976] = {.lex_state = 306}, - [2977] = {.lex_state = 306}, + [2977] = {.lex_state = 53}, [2978] = {.lex_state = 306}, - [2979] = {.lex_state = 53}, + [2979] = {.lex_state = 35}, [2980] = {.lex_state = 306}, - [2981] = {.lex_state = 306}, - [2982] = {.lex_state = 53}, - [2983] = {.lex_state = 306}, - [2984] = {.lex_state = 306}, - [2985] = {.lex_state = 306}, - [2986] = {.lex_state = 306}, - [2987] = {.lex_state = 48}, - [2988] = {.lex_state = 53}, - [2989] = {.lex_state = 306}, - [2990] = {.lex_state = 35}, - [2991] = {.lex_state = 306}, - [2992] = {.lex_state = 306}, - [2993] = {.lex_state = 306}, - [2994] = {.lex_state = 31}, - [2995] = {.lex_state = 31}, - [2996] = {.lex_state = 53}, + [2981] = {.lex_state = 53}, + [2982] = {.lex_state = 306}, + [2983] = {.lex_state = 34}, + [2984] = {.lex_state = 53}, + [2985] = {.lex_state = 48}, + [2986] = {.lex_state = 35}, + [2987] = {.lex_state = 306}, + [2988] = {.lex_state = 35}, + [2989] = {.lex_state = 53}, + [2990] = {.lex_state = 53}, + [2991] = {.lex_state = 48}, + [2992] = {.lex_state = 44}, + [2993] = {.lex_state = 44}, + [2994] = {.lex_state = 33}, + [2995] = {.lex_state = 48}, + [2996] = {.lex_state = 31}, [2997] = {.lex_state = 306}, [2998] = {.lex_state = 306}, [2999] = {.lex_state = 306}, - [3000] = {.lex_state = 306}, - [3001] = {.lex_state = 306}, - [3002] = {.lex_state = 31}, + [3000] = {.lex_state = 53}, + [3001] = {.lex_state = 31}, + [3002] = {.lex_state = 35}, [3003] = {.lex_state = 306}, - [3004] = {.lex_state = 38}, + [3004] = {.lex_state = 53}, [3005] = {.lex_state = 306}, - [3006] = {.lex_state = 306}, - [3007] = {.lex_state = 306}, + [3006] = {.lex_state = 44}, + [3007] = {.lex_state = 53}, [3008] = {.lex_state = 48}, - [3009] = {.lex_state = 306}, + [3009] = {.lex_state = 53}, [3010] = {.lex_state = 306}, - [3011] = {.lex_state = 306}, - [3012] = {.lex_state = 35}, + [3011] = {.lex_state = 35}, + [3012] = {.lex_state = 306}, [3013] = {.lex_state = 306}, [3014] = {.lex_state = 306}, - [3015] = {.lex_state = 48}, + [3015] = {.lex_state = 334}, [3016] = {.lex_state = 306}, [3017] = {.lex_state = 306}, - [3018] = {.lex_state = 306}, + [3018] = {.lex_state = 15}, [3019] = {.lex_state = 306}, - [3020] = {.lex_state = 53}, - [3021] = {.lex_state = 306}, - [3022] = {.lex_state = 306}, - [3023] = {.lex_state = 306}, - [3024] = {.lex_state = 53}, - [3025] = {.lex_state = 15}, + [3020] = {.lex_state = 306}, + [3021] = {.lex_state = 334}, + [3022] = {.lex_state = 35}, + [3023] = {.lex_state = 53}, + [3024] = {.lex_state = 306}, + [3025] = {.lex_state = 306}, [3026] = {.lex_state = 306}, [3027] = {.lex_state = 306}, [3028] = {.lex_state = 306}, - [3029] = {.lex_state = 53}, + [3029] = {.lex_state = 306}, [3030] = {.lex_state = 306}, - [3031] = {.lex_state = 35}, + [3031] = {.lex_state = 306}, [3032] = {.lex_state = 306}, [3033] = {.lex_state = 306}, [3034] = {.lex_state = 306}, [3035] = {.lex_state = 306}, - [3036] = {.lex_state = 306}, + [3036] = {.lex_state = 48}, [3037] = {.lex_state = 306}, - [3038] = {.lex_state = 44}, - [3039] = {.lex_state = 33}, - [3040] = {.lex_state = 306}, - [3041] = {.lex_state = 306}, + [3038] = {.lex_state = 306}, + [3039] = {.lex_state = 53}, + [3040] = {.lex_state = 48}, + [3041] = {.lex_state = 53}, [3042] = {.lex_state = 306}, [3043] = {.lex_state = 306}, [3044] = {.lex_state = 306}, [3045] = {.lex_state = 306}, [3046] = {.lex_state = 306}, - [3047] = {.lex_state = 333}, + [3047] = {.lex_state = 306}, [3048] = {.lex_state = 306}, - [3049] = {.lex_state = 33}, - [3050] = {.lex_state = 306}, - [3051] = {.lex_state = 306}, - [3052] = {.lex_state = 48}, - [3053] = {.lex_state = 306}, - [3054] = {.lex_state = 306}, + [3049] = {.lex_state = 35}, + [3050] = {.lex_state = 53}, + [3051] = {.lex_state = 53}, + [3052] = {.lex_state = 35}, + [3053] = {.lex_state = 53}, + [3054] = {.lex_state = 48}, [3055] = {.lex_state = 306}, [3056] = {.lex_state = 306}, - [3057] = {.lex_state = 53}, - [3058] = {.lex_state = 306}, - [3059] = {.lex_state = 306}, + [3057] = {.lex_state = 306}, + [3058] = {.lex_state = 53}, + [3059] = {.lex_state = 35}, [3060] = {.lex_state = 53}, - [3061] = {.lex_state = 15}, + [3061] = {.lex_state = 306}, [3062] = {.lex_state = 306}, [3063] = {.lex_state = 306}, - [3064] = {.lex_state = 53}, + [3064] = {.lex_state = 306}, [3065] = {.lex_state = 306}, - [3066] = {.lex_state = 35}, - [3067] = {.lex_state = 53}, + [3066] = {.lex_state = 306}, + [3067] = {.lex_state = 306}, [3068] = {.lex_state = 306}, - [3069] = {.lex_state = 48}, + [3069] = {.lex_state = 306}, [3070] = {.lex_state = 306}, [3071] = {.lex_state = 306}, [3072] = {.lex_state = 306}, - [3073] = {.lex_state = 39}, - [3074] = {.lex_state = 39}, + [3073] = {.lex_state = 48}, + [3074] = {.lex_state = 306}, [3075] = {.lex_state = 306}, - [3076] = {.lex_state = 336}, - [3077] = {.lex_state = 306}, + [3076] = {.lex_state = 53}, + [3077] = {.lex_state = 39}, [3078] = {.lex_state = 306}, [3079] = {.lex_state = 306}, - [3080] = {.lex_state = 336}, - [3081] = {.lex_state = 39}, + [3080] = {.lex_state = 306}, + [3081] = {.lex_state = 306}, [3082] = {.lex_state = 306}, - [3083] = {.lex_state = 22}, - [3084] = {.lex_state = 39}, + [3083] = {.lex_state = 306}, + [3084] = {.lex_state = 306}, [3085] = {.lex_state = 306}, - [3086] = {.lex_state = 336}, + [3086] = {.lex_state = 39}, [3087] = {.lex_state = 306}, [3088] = {.lex_state = 306}, [3089] = {.lex_state = 306}, - [3090] = {.lex_state = 336}, - [3091] = {.lex_state = 306}, - [3092] = {.lex_state = 39}, - [3093] = {.lex_state = 39}, + [3090] = {.lex_state = 306}, + [3091] = {.lex_state = 39}, + [3092] = {.lex_state = 336}, + [3093] = {.lex_state = 336}, [3094] = {.lex_state = 306}, [3095] = {.lex_state = 306}, - [3096] = {.lex_state = 39}, - [3097] = {.lex_state = 306}, - [3098] = {.lex_state = 39}, - [3099] = {.lex_state = 306}, + [3096] = {.lex_state = 306}, + [3097] = {.lex_state = 336}, + [3098] = {.lex_state = 306}, + [3099] = {.lex_state = 39}, [3100] = {.lex_state = 306}, - [3101] = {.lex_state = 39}, - [3102] = {.lex_state = 336}, + [3101] = {.lex_state = 306}, + [3102] = {.lex_state = 306}, [3103] = {.lex_state = 306}, [3104] = {.lex_state = 306}, [3105] = {.lex_state = 306}, - [3106] = {.lex_state = 336}, - [3107] = {.lex_state = 306}, + [3106] = {.lex_state = 306}, + [3107] = {.lex_state = 336}, [3108] = {.lex_state = 306}, [3109] = {.lex_state = 47}, [3110] = {.lex_state = 306}, - [3111] = {.lex_state = 336}, - [3112] = {.lex_state = 336}, + [3111] = {.lex_state = 306}, + [3112] = {.lex_state = 39}, [3113] = {.lex_state = 336}, - [3114] = {.lex_state = 39}, - [3115] = {.lex_state = 336}, + [3114] = {.lex_state = 306}, + [3115] = {.lex_state = 306}, [3116] = {.lex_state = 306}, [3117] = {.lex_state = 306}, - [3118] = {.lex_state = 306}, - [3119] = {.lex_state = 306}, - [3120] = {.lex_state = 336}, + [3118] = {.lex_state = 336}, + [3119] = {.lex_state = 39}, + [3120] = {.lex_state = 39}, [3121] = {.lex_state = 306}, - [3122] = {.lex_state = 39}, - [3123] = {.lex_state = 306}, + [3122] = {.lex_state = 306}, + [3123] = {.lex_state = 336}, [3124] = {.lex_state = 306}, - [3125] = {.lex_state = 39}, + [3125] = {.lex_state = 47}, [3126] = {.lex_state = 306}, - [3127] = {.lex_state = 306}, - [3128] = {.lex_state = 306}, + [3127] = {.lex_state = 336}, + [3128] = {.lex_state = 39}, [3129] = {.lex_state = 306}, - [3130] = {.lex_state = 306}, + [3130] = {.lex_state = 39}, [3131] = {.lex_state = 306}, - [3132] = {.lex_state = 39}, + [3132] = {.lex_state = 306}, [3133] = {.lex_state = 306}, [3134] = {.lex_state = 306}, - [3135] = {.lex_state = 336}, - [3136] = {.lex_state = 336}, - [3137] = {.lex_state = 336}, + [3135] = {.lex_state = 306}, + [3136] = {.lex_state = 306}, + [3137] = {.lex_state = 306}, [3138] = {.lex_state = 306}, [3139] = {.lex_state = 306}, - [3140] = {.lex_state = 336}, - [3141] = {.lex_state = 336}, + [3140] = {.lex_state = 306}, + [3141] = {.lex_state = 306}, [3142] = {.lex_state = 306}, - [3143] = {.lex_state = 336}, + [3143] = {.lex_state = 306}, [3144] = {.lex_state = 306}, [3145] = {.lex_state = 306}, - [3146] = {.lex_state = 306}, - [3147] = {.lex_state = 306}, - [3148] = {.lex_state = 336}, + [3146] = {.lex_state = 39}, + [3147] = {.lex_state = 39}, + [3148] = {.lex_state = 306}, [3149] = {.lex_state = 306}, [3150] = {.lex_state = 306}, - [3151] = {.lex_state = 306}, - [3152] = {.lex_state = 306}, - [3153] = {.lex_state = 306}, + [3151] = {.lex_state = 336}, + [3152] = {.lex_state = 336}, + [3153] = {.lex_state = 39}, [3154] = {.lex_state = 306}, [3155] = {.lex_state = 306}, - [3156] = {.lex_state = 39}, - [3157] = {.lex_state = 39}, - [3158] = {.lex_state = 39}, - [3159] = {.lex_state = 39}, - [3160] = {.lex_state = 39}, - [3161] = {.lex_state = 39}, - [3162] = {.lex_state = 39}, - [3163] = {.lex_state = 39}, - [3164] = {.lex_state = 39}, - [3165] = {.lex_state = 39}, - [3166] = {.lex_state = 39}, - [3167] = {.lex_state = 39}, - [3168] = {.lex_state = 39}, - [3169] = {.lex_state = 5}, - [3170] = {.lex_state = 336}, + [3156] = {.lex_state = 336}, + [3157] = {.lex_state = 336}, + [3158] = {.lex_state = 336}, + [3159] = {.lex_state = 306}, + [3160] = {.lex_state = 336}, + [3161] = {.lex_state = 336}, + [3162] = {.lex_state = 306}, + [3163] = {.lex_state = 336}, + [3164] = {.lex_state = 306}, + [3165] = {.lex_state = 336}, + [3166] = {.lex_state = 306}, + [3167] = {.lex_state = 306}, + [3168] = {.lex_state = 306}, + [3169] = {.lex_state = 306}, + [3170] = {.lex_state = 306}, [3171] = {.lex_state = 306}, - [3172] = {.lex_state = 39}, - [3173] = {.lex_state = 39}, + [3172] = {.lex_state = 306}, + [3173] = {.lex_state = 306}, [3174] = {.lex_state = 336}, - [3175] = {.lex_state = 306}, - [3176] = {.lex_state = 336}, + [3175] = {.lex_state = 39}, + [3176] = {.lex_state = 39}, [3177] = {.lex_state = 39}, [3178] = {.lex_state = 39}, - [3179] = {.lex_state = 306}, + [3179] = {.lex_state = 39}, [3180] = {.lex_state = 39}, [3181] = {.lex_state = 39}, - [3182] = {.lex_state = 306}, + [3182] = {.lex_state = 39}, [3183] = {.lex_state = 39}, [3184] = {.lex_state = 39}, - [3185] = {.lex_state = 336}, - [3186] = {.lex_state = 336}, + [3185] = {.lex_state = 306}, + [3186] = {.lex_state = 39}, [3187] = {.lex_state = 39}, - [3188] = {.lex_state = 336}, + [3188] = {.lex_state = 39}, [3189] = {.lex_state = 39}, - [3190] = {.lex_state = 336}, - [3191] = {.lex_state = 39}, + [3190] = {.lex_state = 39}, + [3191] = {.lex_state = 336}, [3192] = {.lex_state = 39}, [3193] = {.lex_state = 39}, [3194] = {.lex_state = 39}, - [3195] = {.lex_state = 39}, - [3196] = {.lex_state = 336}, + [3195] = {.lex_state = 336}, + [3196] = {.lex_state = 39}, [3197] = {.lex_state = 39}, [3198] = {.lex_state = 39}, - [3199] = {.lex_state = 39}, + [3199] = {.lex_state = 22}, [3200] = {.lex_state = 39}, - [3201] = {.lex_state = 336}, - [3202] = {.lex_state = 336}, - [3203] = {.lex_state = 39}, - [3204] = {.lex_state = 336}, - [3205] = {.lex_state = 306}, - [3206] = {.lex_state = 39}, - [3207] = {.lex_state = 39}, + [3201] = {.lex_state = 306}, + [3202] = {.lex_state = 39}, + [3203] = {.lex_state = 336}, + [3204] = {.lex_state = 306}, + [3205] = {.lex_state = 39}, + [3206] = {.lex_state = 306}, + [3207] = {.lex_state = 306}, [3208] = {.lex_state = 336}, - [3209] = {.lex_state = 39}, - [3210] = {.lex_state = 39}, + [3209] = {.lex_state = 336}, + [3210] = {.lex_state = 306}, [3211] = {.lex_state = 39}, [3212] = {.lex_state = 39}, - [3213] = {.lex_state = 336}, - [3214] = {.lex_state = 336}, - [3215] = {.lex_state = 336}, + [3213] = {.lex_state = 306}, + [3214] = {.lex_state = 39}, + [3215] = {.lex_state = 306}, [3216] = {.lex_state = 39}, - [3217] = {.lex_state = 39}, + [3217] = {.lex_state = 336}, [3218] = {.lex_state = 39}, - [3219] = {.lex_state = 336}, - [3220] = {.lex_state = 336}, - [3221] = {.lex_state = 306}, + [3219] = {.lex_state = 39}, + [3220] = {.lex_state = 39}, + [3221] = {.lex_state = 39}, [3222] = {.lex_state = 306}, [3223] = {.lex_state = 39}, [3224] = {.lex_state = 39}, - [3225] = {.lex_state = 306}, + [3225] = {.lex_state = 336}, [3226] = {.lex_state = 39}, [3227] = {.lex_state = 39}, - [3228] = {.lex_state = 306}, + [3228] = {.lex_state = 39}, [3229] = {.lex_state = 336}, - [3230] = {.lex_state = 336}, - [3231] = {.lex_state = 336}, - [3232] = {.lex_state = 306}, - [3233] = {.lex_state = 306}, - [3234] = {.lex_state = 39}, - [3235] = {.lex_state = 306}, - [3236] = {.lex_state = 39}, + [3230] = {.lex_state = 306}, + [3231] = {.lex_state = 306}, + [3232] = {.lex_state = 39}, + [3233] = {.lex_state = 39}, + [3234] = {.lex_state = 336}, + [3235] = {.lex_state = 336}, + [3236] = {.lex_state = 336}, [3237] = {.lex_state = 39}, - [3238] = {.lex_state = 336}, + [3238] = {.lex_state = 39}, [3239] = {.lex_state = 306}, - [3240] = {.lex_state = 306}, - [3241] = {.lex_state = 306}, + [3240] = {.lex_state = 39}, + [3241] = {.lex_state = 39}, [3242] = {.lex_state = 336}, - [3243] = {.lex_state = 306}, - [3244] = {.lex_state = 47}, - [3245] = {.lex_state = 39}, - [3246] = {.lex_state = 306}, - [3247] = {.lex_state = 306}, - [3248] = {.lex_state = 306}, - [3249] = {.lex_state = 336}, - [3250] = {.lex_state = 336}, - [3251] = {.lex_state = 22}, + [3243] = {.lex_state = 39}, + [3244] = {.lex_state = 336}, + [3245] = {.lex_state = 306}, + [3246] = {.lex_state = 336}, + [3247] = {.lex_state = 336}, + [3248] = {.lex_state = 39}, + [3249] = {.lex_state = 39}, + [3250] = {.lex_state = 306}, + [3251] = {.lex_state = 306}, [3252] = {.lex_state = 306}, - [3253] = {.lex_state = 22}, - [3254] = {.lex_state = 5}, - [3255] = {.lex_state = 306}, - [3256] = {.lex_state = 306}, - [3257] = {.lex_state = 306}, - [3258] = {.lex_state = 39}, - [3259] = {.lex_state = 306}, + [3253] = {.lex_state = 39}, + [3254] = {.lex_state = 336}, + [3255] = {.lex_state = 39}, + [3256] = {.lex_state = 336}, + [3257] = {.lex_state = 336}, + [3258] = {.lex_state = 336}, + [3259] = {.lex_state = 336}, [3260] = {.lex_state = 306}, - [3261] = {.lex_state = 39}, - [3262] = {.lex_state = 306}, - [3263] = {.lex_state = 306}, - [3264] = {.lex_state = 39}, + [3261] = {.lex_state = 306}, + [3262] = {.lex_state = 39}, + [3263] = {.lex_state = 336}, + [3264] = {.lex_state = 306}, [3265] = {.lex_state = 306}, - [3266] = {.lex_state = 306}, - [3267] = {.lex_state = 306}, - [3268] = {.lex_state = 39}, + [3266] = {.lex_state = 22}, + [3267] = {.lex_state = 39}, + [3268] = {.lex_state = 22}, [3269] = {.lex_state = 306}, [3270] = {.lex_state = 306}, [3271] = {.lex_state = 306}, [3272] = {.lex_state = 336}, - [3273] = {.lex_state = 336}, + [3273] = {.lex_state = 39}, [3274] = {.lex_state = 336}, [3275] = {.lex_state = 306}, [3276] = {.lex_state = 336}, - [3277] = {.lex_state = 39}, - [3278] = {.lex_state = 306}, - [3279] = {.lex_state = 306}, + [3277] = {.lex_state = 336}, + [3278] = {.lex_state = 39}, + [3279] = {.lex_state = 336}, [3280] = {.lex_state = 306}, [3281] = {.lex_state = 306}, - [3282] = {.lex_state = 306}, - [3283] = {.lex_state = 306}, - [3284] = {.lex_state = 306}, + [3282] = {.lex_state = 39}, + [3283] = {.lex_state = 336}, + [3284] = {.lex_state = 39}, [3285] = {.lex_state = 306}, [3286] = {.lex_state = 306}, [3287] = {.lex_state = 306}, - [3288] = {.lex_state = 306}, - [3289] = {.lex_state = 306}, - [3290] = {.lex_state = 306}, - [3291] = {.lex_state = 306}, + [3288] = {.lex_state = 336}, + [3289] = {.lex_state = 39}, + [3290] = {.lex_state = 336}, + [3291] = {.lex_state = 336}, [3292] = {.lex_state = 306}, - [3293] = {.lex_state = 306}, - [3294] = {.lex_state = 306}, - [3295] = {.lex_state = 39}, + [3293] = {.lex_state = 336}, + [3294] = {.lex_state = 39}, + [3295] = {.lex_state = 306}, [3296] = {.lex_state = 306}, - [3297] = {.lex_state = 306}, + [3297] = {.lex_state = 336}, [3298] = {.lex_state = 306}, [3299] = {.lex_state = 39}, [3300] = {.lex_state = 306}, - [3301] = {.lex_state = 39}, - [3302] = {.lex_state = 39}, + [3301] = {.lex_state = 306}, + [3302] = {.lex_state = 306}, [3303] = {.lex_state = 306}, [3304] = {.lex_state = 306}, [3305] = {.lex_state = 306}, - [3306] = {.lex_state = 336}, + [3306] = {.lex_state = 306}, [3307] = {.lex_state = 306}, [3308] = {.lex_state = 306}, - [3309] = {.lex_state = 336}, + [3309] = {.lex_state = 306}, [3310] = {.lex_state = 336}, [3311] = {.lex_state = 306}, [3312] = {.lex_state = 306}, [3313] = {.lex_state = 306}, - [3314] = {.lex_state = 336}, - [3315] = {.lex_state = 306}, + [3314] = {.lex_state = 306}, + [3315] = {.lex_state = 336}, [3316] = {.lex_state = 39}, - [3317] = {.lex_state = 336}, - [3318] = {.lex_state = 46}, - [3319] = {.lex_state = 306}, - [3320] = {.lex_state = 53}, - [3321] = {.lex_state = 46}, - [3322] = {.lex_state = 336}, - [3323] = {.lex_state = 306}, - [3324] = {.lex_state = 306}, - [3325] = {.lex_state = 46}, - [3326] = {.lex_state = 5}, - [3327] = {.lex_state = 306}, + [3317] = {.lex_state = 306}, + [3318] = {.lex_state = 306}, + [3319] = {.lex_state = 39}, + [3320] = {.lex_state = 306}, + [3321] = {.lex_state = 336}, + [3322] = {.lex_state = 306}, + [3323] = {.lex_state = 39}, + [3324] = {.lex_state = 39}, + [3325] = {.lex_state = 306}, + [3326] = {.lex_state = 306}, + [3327] = {.lex_state = 336}, [3328] = {.lex_state = 306}, - [3329] = {.lex_state = 46}, - [3330] = {.lex_state = 46}, - [3331] = {.lex_state = 46}, - [3332] = {.lex_state = 46}, - [3333] = {.lex_state = 46}, - [3334] = {.lex_state = 46}, + [3329] = {.lex_state = 306}, + [3330] = {.lex_state = 336}, + [3331] = {.lex_state = 336}, + [3332] = {.lex_state = 306}, + [3333] = {.lex_state = 306}, + [3334] = {.lex_state = 336}, [3335] = {.lex_state = 46}, [3336] = {.lex_state = 306}, [3337] = {.lex_state = 306}, [3338] = {.lex_state = 306}, - [3339] = {.lex_state = 306}, - [3340] = {.lex_state = 306}, - [3341] = {.lex_state = 33}, + [3339] = {.lex_state = 46}, + [3340] = {.lex_state = 46}, + [3341] = {.lex_state = 46}, [3342] = {.lex_state = 46}, [3343] = {.lex_state = 46}, - [3344] = {.lex_state = 306}, - [3345] = {.lex_state = 336}, + [3344] = {.lex_state = 33}, + [3345] = {.lex_state = 306}, [3346] = {.lex_state = 46}, [3347] = {.lex_state = 306}, - [3348] = {.lex_state = 46}, - [3349] = {.lex_state = 46}, - [3350] = {.lex_state = 306}, - [3351] = {.lex_state = 5}, + [3348] = {.lex_state = 306}, + [3349] = {.lex_state = 306}, + [3350] = {.lex_state = 46}, + [3351] = {.lex_state = 46}, [3352] = {.lex_state = 306}, - [3353] = {.lex_state = 46}, - [3354] = {.lex_state = 336}, - [3355] = {.lex_state = 46}, + [3353] = {.lex_state = 306}, + [3354] = {.lex_state = 306}, + [3355] = {.lex_state = 306}, [3356] = {.lex_state = 46}, [3357] = {.lex_state = 46}, - [3358] = {.lex_state = 306}, - [3359] = {.lex_state = 46}, - [3360] = {.lex_state = 39}, - [3361] = {.lex_state = 46}, - [3362] = {.lex_state = 336}, - [3363] = {.lex_state = 306}, + [3358] = {.lex_state = 46}, + [3359] = {.lex_state = 336}, + [3360] = {.lex_state = 5}, + [3361] = {.lex_state = 336}, + [3362] = {.lex_state = 306}, + [3363] = {.lex_state = 5}, [3364] = {.lex_state = 46}, - [3365] = {.lex_state = 306}, + [3365] = {.lex_state = 46}, [3366] = {.lex_state = 306}, - [3367] = {.lex_state = 46}, - [3368] = {.lex_state = 46}, - [3369] = {.lex_state = 46}, + [3367] = {.lex_state = 306}, + [3368] = {.lex_state = 306}, + [3369] = {.lex_state = 306}, [3370] = {.lex_state = 46}, - [3371] = {.lex_state = 53}, - [3372] = {.lex_state = 306}, - [3373] = {.lex_state = 306}, + [3371] = {.lex_state = 306}, + [3372] = {.lex_state = 336}, + [3373] = {.lex_state = 46}, [3374] = {.lex_state = 306}, - [3375] = {.lex_state = 306}, + [3375] = {.lex_state = 336}, [3376] = {.lex_state = 46}, - [3377] = {.lex_state = 336}, - [3378] = {.lex_state = 306}, - [3379] = {.lex_state = 5}, - [3380] = {.lex_state = 53}, - [3381] = {.lex_state = 46}, - [3382] = {.lex_state = 5}, + [3377] = {.lex_state = 46}, + [3378] = {.lex_state = 5}, + [3379] = {.lex_state = 306}, + [3380] = {.lex_state = 46}, + [3381] = {.lex_state = 53}, + [3382] = {.lex_state = 306}, [3383] = {.lex_state = 46}, - [3384] = {.lex_state = 306}, - [3385] = {.lex_state = 306}, + [3384] = {.lex_state = 46}, + [3385] = {.lex_state = 46}, [3386] = {.lex_state = 46}, [3387] = {.lex_state = 306}, [3388] = {.lex_state = 306}, - [3389] = {.lex_state = 306}, + [3389] = {.lex_state = 46}, [3390] = {.lex_state = 306}, - [3391] = {.lex_state = 46}, - [3392] = {.lex_state = 306}, - [3393] = {.lex_state = 306}, + [3391] = {.lex_state = 5}, + [3392] = {.lex_state = 46}, + [3393] = {.lex_state = 5}, [3394] = {.lex_state = 306}, - [3395] = {.lex_state = 46}, - [3396] = {.lex_state = 46}, - [3397] = {.lex_state = 336}, - [3398] = {.lex_state = 46}, - [3399] = {.lex_state = 336}, - [3400] = {.lex_state = 50}, - [3401] = {.lex_state = 336}, - [3402] = {.lex_state = 336}, - [3403] = {.lex_state = 336}, - [3404] = {.lex_state = 336}, - [3405] = {.lex_state = 336}, - [3406] = {.lex_state = 336}, - [3407] = {.lex_state = 46}, - [3408] = {.lex_state = 336}, - [3409] = {.lex_state = 336}, - [3410] = {.lex_state = 336}, - [3411] = {.lex_state = 336}, - [3412] = {.lex_state = 336}, - [3413] = {.lex_state = 336}, - [3414] = {.lex_state = 336}, - [3415] = {.lex_state = 336}, + [3395] = {.lex_state = 306}, + [3396] = {.lex_state = 306}, + [3397] = {.lex_state = 46}, + [3398] = {.lex_state = 306}, + [3399] = {.lex_state = 46}, + [3400] = {.lex_state = 46}, + [3401] = {.lex_state = 46}, + [3402] = {.lex_state = 39}, + [3403] = {.lex_state = 46}, + [3404] = {.lex_state = 46}, + [3405] = {.lex_state = 53}, + [3406] = {.lex_state = 46}, + [3407] = {.lex_state = 306}, + [3408] = {.lex_state = 53}, + [3409] = {.lex_state = 306}, + [3410] = {.lex_state = 306}, + [3411] = {.lex_state = 306}, + [3412] = {.lex_state = 306}, + [3413] = {.lex_state = 46}, + [3414] = {.lex_state = 5}, + [3415] = {.lex_state = 46}, [3416] = {.lex_state = 336}, [3417] = {.lex_state = 336}, [3418] = {.lex_state = 336}, @@ -39375,12 +39431,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3421] = {.lex_state = 336}, [3422] = {.lex_state = 336}, [3423] = {.lex_state = 336}, - [3424] = {.lex_state = 336}, + [3424] = {.lex_state = 9}, [3425] = {.lex_state = 336}, [3426] = {.lex_state = 336}, [3427] = {.lex_state = 336}, [3428] = {.lex_state = 336}, - [3429] = {.lex_state = 9}, + [3429] = {.lex_state = 336}, [3430] = {.lex_state = 336}, [3431] = {.lex_state = 336}, [3432] = {.lex_state = 336}, @@ -39397,7 +39453,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3443] = {.lex_state = 336}, [3444] = {.lex_state = 336}, [3445] = {.lex_state = 336}, - [3446] = {.lex_state = 20}, + [3446] = {.lex_state = 336}, [3447] = {.lex_state = 336}, [3448] = {.lex_state = 336}, [3449] = {.lex_state = 336}, @@ -39409,156 +39465,177 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3455] = {.lex_state = 336}, [3456] = {.lex_state = 336}, [3457] = {.lex_state = 336}, - [3458] = {.lex_state = 336}, + [3458] = {.lex_state = 46}, [3459] = {.lex_state = 336}, [3460] = {.lex_state = 336}, - [3461] = {.lex_state = 336}, + [3461] = {.lex_state = 50}, [3462] = {.lex_state = 336}, [3463] = {.lex_state = 336}, [3464] = {.lex_state = 336}, - [3465] = {.lex_state = 336}, + [3465] = {.lex_state = 44}, [3466] = {.lex_state = 336}, [3467] = {.lex_state = 336}, [3468] = {.lex_state = 336}, - [3469] = {.lex_state = 5}, - [3470] = {.lex_state = 336}, + [3469] = {.lex_state = 336}, + [3470] = {.lex_state = 5}, [3471] = {.lex_state = 336}, [3472] = {.lex_state = 336}, - [3473] = {.lex_state = 5}, + [3473] = {.lex_state = 336}, [3474] = {.lex_state = 5}, - [3475] = {.lex_state = 336}, - [3476] = {.lex_state = 5}, - [3477] = {.lex_state = 336}, + [3475] = {.lex_state = 5}, + [3476] = {.lex_state = 336}, + [3477] = {.lex_state = 5}, [3478] = {.lex_state = 336}, [3479] = {.lex_state = 336}, [3480] = {.lex_state = 336}, [3481] = {.lex_state = 336}, [3482] = {.lex_state = 336}, [3483] = {.lex_state = 336}, - [3484] = {.lex_state = 44}, + [3484] = {.lex_state = 336}, [3485] = {.lex_state = 336}, - [3486] = {.lex_state = 25}, - [3487] = {.lex_state = 20}, - [3488] = {.lex_state = 44}, - [3489] = {.lex_state = 1830}, - [3490] = {.lex_state = 31}, - [3491] = {.lex_state = 34}, - [3492] = {.lex_state = 10}, - [3493] = {.lex_state = 31}, - [3494] = {.lex_state = 31}, - [3495] = {.lex_state = 43}, - [3496] = {.lex_state = 52}, + [3486] = {.lex_state = 336}, + [3487] = {.lex_state = 336}, + [3488] = {.lex_state = 336}, + [3489] = {.lex_state = 336}, + [3490] = {.lex_state = 20}, + [3491] = {.lex_state = 20}, + [3492] = {.lex_state = 5}, + [3493] = {.lex_state = 5}, + [3494] = {.lex_state = 336}, + [3495] = {.lex_state = 336}, + [3496] = {.lex_state = 336}, [3497] = {.lex_state = 336}, [3498] = {.lex_state = 336}, [3499] = {.lex_state = 336}, [3500] = {.lex_state = 336}, [3501] = {.lex_state = 336}, [3502] = {.lex_state = 336}, - [3503] = {.lex_state = 34}, + [3503] = {.lex_state = 336}, [3504] = {.lex_state = 336}, [3505] = {.lex_state = 336}, - [3506] = {.lex_state = 10}, - [3507] = {.lex_state = 336}, + [3506] = {.lex_state = 5}, + [3507] = {.lex_state = 44}, [3508] = {.lex_state = 336}, [3509] = {.lex_state = 336}, [3510] = {.lex_state = 336}, - [3511] = {.lex_state = 10}, - [3512] = {.lex_state = 336}, - [3513] = {.lex_state = 336}, + [3511] = {.lex_state = 336}, + [3512] = {.lex_state = 1830}, + [3513] = {.lex_state = 31}, [3514] = {.lex_state = 336}, - [3515] = {.lex_state = 336}, - [3516] = {.lex_state = 10}, - [3517] = {.lex_state = 336}, + [3515] = {.lex_state = 10}, + [3516] = {.lex_state = 336}, + [3517] = {.lex_state = 20}, [3518] = {.lex_state = 336}, - [3519] = {.lex_state = 25}, - [3520] = {.lex_state = 20}, - [3521] = {.lex_state = 10}, + [3519] = {.lex_state = 336}, + [3520] = {.lex_state = 336}, + [3521] = {.lex_state = 336}, [3522] = {.lex_state = 336}, [3523] = {.lex_state = 336}, [3524] = {.lex_state = 336}, - [3525] = {.lex_state = 44}, - [3526] = {.lex_state = 10}, - [3527] = {.lex_state = 336}, + [3525] = {.lex_state = 31}, + [3526] = {.lex_state = 25}, + [3527] = {.lex_state = 10}, [3528] = {.lex_state = 336}, [3529] = {.lex_state = 336}, [3530] = {.lex_state = 336}, - [3531] = {.lex_state = 10}, - [3532] = {.lex_state = 336}, + [3531] = {.lex_state = 5}, + [3532] = {.lex_state = 10}, [3533] = {.lex_state = 336}, - [3534] = {.lex_state = 336}, - [3535] = {.lex_state = 336}, - [3536] = {.lex_state = 10}, - [3537] = {.lex_state = 336}, - [3538] = {.lex_state = 336}, - [3539] = {.lex_state = 336}, - [3540] = {.lex_state = 34}, - [3541] = {.lex_state = 10}, - [3542] = {.lex_state = 44}, - [3543] = {.lex_state = 336}, - [3544] = {.lex_state = 336}, - [3545] = {.lex_state = 336}, - [3546] = {.lex_state = 10}, + [3534] = {.lex_state = 5}, + [3535] = {.lex_state = 31}, + [3536] = {.lex_state = 5}, + [3537] = {.lex_state = 10}, + [3538] = {.lex_state = 31}, + [3539] = {.lex_state = 31}, + [3540] = {.lex_state = 43}, + [3541] = {.lex_state = 31}, + [3542] = {.lex_state = 10}, + [3543] = {.lex_state = 52}, + [3544] = {.lex_state = 5}, + [3545] = {.lex_state = 20}, + [3546] = {.lex_state = 44}, [3547] = {.lex_state = 10}, - [3548] = {.lex_state = 336}, - [3549] = {.lex_state = 31}, + [3548] = {.lex_state = 34}, + [3549] = {.lex_state = 44}, [3550] = {.lex_state = 336}, - [3551] = {.lex_state = 10}, - [3552] = {.lex_state = 31}, + [3551] = {.lex_state = 336}, + [3552] = {.lex_state = 10}, [3553] = {.lex_state = 336}, [3554] = {.lex_state = 336}, [3555] = {.lex_state = 336}, - [3556] = {.lex_state = 10}, - [3557] = {.lex_state = 336}, - [3558] = {.lex_state = 5}, + [3556] = {.lex_state = 336}, + [3557] = {.lex_state = 10}, + [3558] = {.lex_state = 336}, [3559] = {.lex_state = 336}, [3560] = {.lex_state = 336}, - [3561] = {.lex_state = 10}, - [3562] = {.lex_state = 5}, + [3561] = {.lex_state = 34}, + [3562] = {.lex_state = 10}, [3563] = {.lex_state = 336}, [3564] = {.lex_state = 336}, [3565] = {.lex_state = 336}, - [3566] = {.lex_state = 10}, - [3567] = {.lex_state = 336}, - [3568] = {.lex_state = 336}, - [3569] = {.lex_state = 10}, - [3570] = {.lex_state = 10}, - [3571] = {.lex_state = 31}, - [3572] = {.lex_state = 336}, - [3573] = {.lex_state = 44}, + [3566] = {.lex_state = 336}, + [3567] = {.lex_state = 10}, + [3568] = {.lex_state = 10}, + [3569] = {.lex_state = 336}, + [3570] = {.lex_state = 336}, + [3571] = {.lex_state = 336}, + [3572] = {.lex_state = 10}, + [3573] = {.lex_state = 336}, [3574] = {.lex_state = 336}, [3575] = {.lex_state = 336}, [3576] = {.lex_state = 336}, - [3577] = {.lex_state = 336}, + [3577] = {.lex_state = 10}, [3578] = {.lex_state = 336}, - [3579] = {.lex_state = 336}, + [3579] = {.lex_state = 5}, [3580] = {.lex_state = 336}, [3581] = {.lex_state = 336}, - [3582] = {.lex_state = 336}, + [3582] = {.lex_state = 10}, [3583] = {.lex_state = 336}, - [3584] = {.lex_state = 10}, - [3585] = {.lex_state = 2}, + [3584] = {.lex_state = 336}, + [3585] = {.lex_state = 336}, [3586] = {.lex_state = 336}, - [3587] = {.lex_state = 336}, - [3588] = {.lex_state = 20}, + [3587] = {.lex_state = 10}, + [3588] = {.lex_state = 336}, [3589] = {.lex_state = 336}, - [3590] = {.lex_state = 20}, - [3591] = {.lex_state = 336}, - [3592] = {.lex_state = 336}, - [3593] = {.lex_state = 20}, - [3594] = {.lex_state = 10}, - [3595] = {.lex_state = 10}, - [3596] = {.lex_state = 10}, - [3597] = {.lex_state = 10}, - [3598] = {.lex_state = 10}, - [3599] = {.lex_state = 10}, - [3600] = {.lex_state = 10}, - [3601] = {.lex_state = 10}, - [3602] = {.lex_state = 10}, - [3603] = {.lex_state = 10}, - [3604] = {.lex_state = 10}, + [3590] = {.lex_state = 10}, + [3591] = {.lex_state = 10}, + [3592] = {.lex_state = 31}, + [3593] = {.lex_state = 5}, + [3594] = {.lex_state = 336}, + [3595] = {.lex_state = 44}, + [3596] = {.lex_state = 25}, + [3597] = {.lex_state = 336}, + [3598] = {.lex_state = 336}, + [3599] = {.lex_state = 5}, + [3600] = {.lex_state = 336}, + [3601] = {.lex_state = 34}, + [3602] = {.lex_state = 336}, + [3603] = {.lex_state = 336}, + [3604] = {.lex_state = 336}, [3605] = {.lex_state = 10}, - [3606] = {.lex_state = 336}, - [3607] = {(TSStateId)(-1)}, + [3606] = {.lex_state = 2}, + [3607] = {.lex_state = 5}, + [3608] = {.lex_state = 31}, + [3609] = {.lex_state = 20}, + [3610] = {.lex_state = 336}, + [3611] = {.lex_state = 20}, + [3612] = {.lex_state = 336}, + [3613] = {.lex_state = 336}, + [3614] = {.lex_state = 336}, + [3615] = {.lex_state = 10}, + [3616] = {.lex_state = 10}, + [3617] = {.lex_state = 10}, + [3618] = {.lex_state = 10}, + [3619] = {.lex_state = 10}, + [3620] = {.lex_state = 10}, + [3621] = {.lex_state = 10}, + [3622] = {.lex_state = 10}, + [3623] = {.lex_state = 10}, + [3624] = {.lex_state = 10}, + [3625] = {.lex_state = 10}, + [3626] = {.lex_state = 10}, + [3627] = {.lex_state = 336}, + [3628] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -39670,81 +39747,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [1] = { - [sym_nu_script] = STATE(3539), + [sym_nu_script] = STATE(3560), [sym_shebang] = STATE(24), - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2993), - [sym__declaration_last] = STATE(3344), - [sym_decl_alias_last] = STATE(3319), - [sym_stmt_let_last] = STATE(3347), - [sym_stmt_mut_last] = STATE(3347), - [sym_stmt_const_last] = STATE(3347), - [sym__statement_last] = STATE(3344), - [sym_pipeline_last] = STATE(3347), - [sym__block_body] = STATE(3533), - [sym_decl_def] = STATE(697), - [sym_decl_export] = STATE(697), - [sym_decl_extern] = STATE(697), - [sym_decl_module] = STATE(697), - [sym_decl_use] = STATE(697), - [sym__ctrl_statement] = STATE(695), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_for] = STATE(693), - [sym_ctrl_loop] = STATE(693), - [sym_ctrl_error] = STATE(693), - [sym_ctrl_while] = STATE(693), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_stmt_source] = STATE(695), - [sym_stmt_register] = STATE(695), - [sym__stmt_hide] = STATE(695), - [sym_hide_mod] = STATE(690), - [sym_hide_env] = STATE(690), - [sym__stmt_overlay] = STATE(695), - [sym_overlay_list] = STATE(689), - [sym_overlay_hide] = STATE(689), - [sym_overlay_new] = STATE(689), - [sym_overlay_use] = STATE(689), - [sym_assignment] = STATE(695), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(1641), - [sym__var] = STATE(1508), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2875), + [sym__declaration_last] = STATE(3353), + [sym_decl_alias_last] = STATE(3354), + [sym_stmt_let_last] = STATE(3355), + [sym_stmt_mut_last] = STATE(3355), + [sym_stmt_const_last] = STATE(3355), + [sym__statement_last] = STATE(3353), + [sym_pipeline_last] = STATE(3355), + [sym__block_body] = STATE(3554), + [sym_decl_def] = STATE(624), + [sym_decl_export] = STATE(624), + [sym_decl_extern] = STATE(624), + [sym_decl_module] = STATE(624), + [sym_decl_use] = STATE(624), + [sym__ctrl_statement] = STATE(625), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_for] = STATE(626), + [sym_ctrl_loop] = STATE(626), + [sym_ctrl_error] = STATE(626), + [sym_ctrl_while] = STATE(626), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_stmt_source] = STATE(625), + [sym_stmt_register] = STATE(625), + [sym__stmt_hide] = STATE(625), + [sym_hide_mod] = STATE(631), + [sym_hide_env] = STATE(631), + [sym__stmt_overlay] = STATE(625), + [sym_overlay_list] = STATE(639), + [sym_overlay_hide] = STATE(639), + [sym_overlay_new] = STATE(639), + [sym_overlay_use] = STATE(639), + [sym_assignment] = STATE(625), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(1629), + [sym__var] = STATE(1501), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), [sym_comment] = STATE(1), - [aux_sym_pipeline_repeat1] = STATE(324), - [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(312), + [aux_sym__block_body_repeat2] = STATE(84), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -40546,169 +40623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [6] = { [sym_comment] = STATE(6), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(123), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_DOT_DOT_EQ] = ACTIONS(123), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(125), - [anon_sym_s] = ACTIONS(125), - [anon_sym_us] = ACTIONS(125), - [anon_sym_ms] = ACTIONS(125), - [anon_sym_sec] = ACTIONS(125), - [anon_sym_min] = ACTIONS(125), - [anon_sym_hr] = ACTIONS(125), - [anon_sym_day] = ACTIONS(125), - [anon_sym_wk] = ACTIONS(125), - [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_zb] = ACTIONS(127), - [anon_sym_zB] = ACTIONS(127), - [anon_sym_Zb] = ACTIONS(127), - [anon_sym_ZB] = 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_zib] = ACTIONS(127), - [anon_sym_ziB] = ACTIONS(127), - [anon_sym_zIB] = ACTIONS(127), - [anon_sym_zIb] = ACTIONS(127), - [anon_sym_Zib] = ACTIONS(127), - [anon_sym_ZIb] = ACTIONS(127), - [anon_sym_ZIB] = ACTIONS(127), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [7] = { - [sym_comment] = STATE(7), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(113), @@ -40870,170 +40784,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [8] = { - [sym_comment] = STATE(8), - [ts_builtin_sym_end] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LF] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH_DASH] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(113), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_bit_DASHshl] = ACTIONS(113), - [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(113), - [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(113), - [anon_sym_not_DASHin] = ACTIONS(113), - [anon_sym_starts_DASHwith] = ACTIONS(113), - [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(113), - [anon_sym_BANG_TILDE] = ACTIONS(113), - [anon_sym_bit_DASHand] = ACTIONS(113), - [anon_sym_bit_DASHxor] = ACTIONS(113), - [anon_sym_bit_DASHor] = ACTIONS(113), - [anon_sym_and] = ACTIONS(113), - [anon_sym_xor] = ACTIONS(113), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(113), - [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(113), - [sym_val_nothing] = ACTIONS(113), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [aux_sym_val_number_token1] = ACTIONS(113), - [aux_sym_val_number_token2] = ACTIONS(113), - [aux_sym_val_number_token3] = ACTIONS(113), - [aux_sym_val_number_token4] = ACTIONS(113), - [aux_sym_val_number_token5] = ACTIONS(113), - [anon_sym_inf] = ACTIONS(113), - [anon_sym_DASHinf] = ACTIONS(113), - [anon_sym_NaN] = ACTIONS(113), - [anon_sym_ns] = ACTIONS(113), - [anon_sym_s] = ACTIONS(113), - [anon_sym_us] = ACTIONS(113), - [anon_sym_ms] = ACTIONS(113), - [anon_sym_sec] = ACTIONS(113), - [anon_sym_min] = ACTIONS(113), - [anon_sym_hr] = ACTIONS(113), - [anon_sym_day] = ACTIONS(113), - [anon_sym_wk] = ACTIONS(113), - [anon_sym_b] = ACTIONS(113), - [anon_sym_B] = ACTIONS(113), - [anon_sym_kb] = ACTIONS(113), - [anon_sym_kB] = ACTIONS(113), - [anon_sym_Kb] = ACTIONS(113), - [anon_sym_KB] = ACTIONS(113), - [anon_sym_mb] = ACTIONS(113), - [anon_sym_mB] = ACTIONS(113), - [anon_sym_Mb] = ACTIONS(113), - [anon_sym_MB] = ACTIONS(113), - [anon_sym_gb] = ACTIONS(113), - [anon_sym_gB] = ACTIONS(113), - [anon_sym_Gb] = ACTIONS(113), - [anon_sym_GB] = ACTIONS(113), - [anon_sym_tb] = ACTIONS(113), - [anon_sym_tB] = ACTIONS(113), - [anon_sym_Tb] = ACTIONS(113), - [anon_sym_TB] = ACTIONS(113), - [anon_sym_pb] = ACTIONS(113), - [anon_sym_pB] = ACTIONS(113), - [anon_sym_Pb] = ACTIONS(113), - [anon_sym_PB] = ACTIONS(113), - [anon_sym_eb] = ACTIONS(113), - [anon_sym_eB] = ACTIONS(113), - [anon_sym_Eb] = ACTIONS(113), - [anon_sym_EB] = ACTIONS(113), - [anon_sym_zb] = ACTIONS(113), - [anon_sym_zB] = ACTIONS(113), - [anon_sym_Zb] = ACTIONS(113), - [anon_sym_ZB] = ACTIONS(113), - [anon_sym_kib] = ACTIONS(113), - [anon_sym_kiB] = ACTIONS(113), - [anon_sym_kIB] = ACTIONS(113), - [anon_sym_kIb] = ACTIONS(113), - [anon_sym_Kib] = ACTIONS(113), - [anon_sym_KIb] = ACTIONS(113), - [anon_sym_KIB] = ACTIONS(113), - [anon_sym_mib] = ACTIONS(113), - [anon_sym_miB] = ACTIONS(113), - [anon_sym_mIB] = ACTIONS(113), - [anon_sym_mIb] = ACTIONS(113), - [anon_sym_Mib] = ACTIONS(113), - [anon_sym_MIb] = ACTIONS(113), - [anon_sym_MIB] = ACTIONS(113), - [anon_sym_gib] = ACTIONS(113), - [anon_sym_giB] = ACTIONS(113), - [anon_sym_gIB] = ACTIONS(113), - [anon_sym_gIb] = ACTIONS(113), - [anon_sym_Gib] = ACTIONS(113), - [anon_sym_GIb] = ACTIONS(113), - [anon_sym_GIB] = ACTIONS(113), - [anon_sym_tib] = ACTIONS(113), - [anon_sym_tiB] = ACTIONS(113), - [anon_sym_tIB] = ACTIONS(113), - [anon_sym_tIb] = ACTIONS(113), - [anon_sym_Tib] = ACTIONS(113), - [anon_sym_TIb] = ACTIONS(113), - [anon_sym_TIB] = ACTIONS(113), - [anon_sym_pib] = ACTIONS(113), - [anon_sym_piB] = ACTIONS(113), - [anon_sym_pIB] = ACTIONS(113), - [anon_sym_pIb] = ACTIONS(113), - [anon_sym_Pib] = ACTIONS(113), - [anon_sym_PIb] = ACTIONS(113), - [anon_sym_PIB] = ACTIONS(113), - [anon_sym_eib] = ACTIONS(113), - [anon_sym_eiB] = ACTIONS(113), - [anon_sym_eIB] = ACTIONS(113), - [anon_sym_eIb] = ACTIONS(113), - [anon_sym_Eib] = ACTIONS(113), - [anon_sym_EIb] = ACTIONS(113), - [anon_sym_EIB] = ACTIONS(113), - [anon_sym_zib] = ACTIONS(113), - [anon_sym_ziB] = ACTIONS(113), - [anon_sym_zIB] = ACTIONS(113), - [anon_sym_zIb] = ACTIONS(113), - [anon_sym_Zib] = ACTIONS(113), - [anon_sym_ZIb] = ACTIONS(113), - [anon_sym_ZIB] = ACTIONS(113), - [anon_sym_0b] = ACTIONS(113), - [anon_sym_0o] = ACTIONS(113), - [anon_sym_0x] = ACTIONS(113), - [sym_val_date] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_err_GT] = ACTIONS(113), - [anon_sym_out_GT] = ACTIONS(113), - [anon_sym_e_GT] = ACTIONS(113), - [anon_sym_o_GT] = ACTIONS(113), - [anon_sym_err_PLUSout_GT] = ACTIONS(113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(113), - [anon_sym_o_PLUSe_GT] = ACTIONS(113), - [anon_sym_e_PLUSo_GT] = ACTIONS(113), - [sym_short_flag] = ACTIONS(113), - [aux_sym_unquoted_token1] = ACTIONS(113), + [7] = { + [sym_comment] = STATE(7), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(123), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_DOT_DOT_EQ] = ACTIONS(123), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_ns] = ACTIONS(125), + [anon_sym_s] = ACTIONS(125), + [anon_sym_us] = ACTIONS(125), + [anon_sym_ms] = ACTIONS(125), + [anon_sym_sec] = ACTIONS(125), + [anon_sym_min] = ACTIONS(125), + [anon_sym_hr] = ACTIONS(125), + [anon_sym_day] = ACTIONS(125), + [anon_sym_wk] = ACTIONS(125), + [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_zb] = ACTIONS(127), + [anon_sym_zB] = ACTIONS(127), + [anon_sym_Zb] = ACTIONS(127), + [anon_sym_ZB] = 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_zib] = ACTIONS(127), + [anon_sym_ziB] = ACTIONS(127), + [anon_sym_zIB] = ACTIONS(127), + [anon_sym_zIb] = ACTIONS(127), + [anon_sym_Zib] = ACTIONS(127), + [anon_sym_ZIb] = ACTIONS(127), + [anon_sym_ZIB] = ACTIONS(127), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [9] = { - [sym_comment] = STATE(9), + [8] = { + [sym_comment] = STATE(8), [ts_builtin_sym_end] = ACTIONS(105), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_LF] = ACTIONS(105), @@ -41194,208 +41109,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [10] = { - [sym_comment] = STATE(10), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACK] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(105), - [anon_sym_BANG_EQ] = ACTIONS(105), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(105), - [anon_sym_GT_EQ] = ACTIONS(105), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(105), - [anon_sym_BANG_TILDE] = ACTIONS(105), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(135), - [anon_sym_DOT_DOT] = ACTIONS(137), - [anon_sym_DOT_DOT_EQ] = ACTIONS(135), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(105), - [aux_sym_val_number_token4] = ACTIONS(105), - [aux_sym_val_number_token5] = ACTIONS(105), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(105), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(139), - [anon_sym_s] = ACTIONS(139), - [anon_sym_us] = ACTIONS(139), - [anon_sym_ms] = ACTIONS(139), - [anon_sym_sec] = ACTIONS(139), - [anon_sym_min] = ACTIONS(139), - [anon_sym_hr] = ACTIONS(139), - [anon_sym_day] = ACTIONS(139), - [anon_sym_wk] = ACTIONS(139), - [anon_sym_b] = ACTIONS(141), - [anon_sym_B] = ACTIONS(141), - [anon_sym_kb] = ACTIONS(141), - [anon_sym_kB] = ACTIONS(141), - [anon_sym_Kb] = ACTIONS(141), - [anon_sym_KB] = ACTIONS(141), - [anon_sym_mb] = ACTIONS(141), - [anon_sym_mB] = ACTIONS(141), - [anon_sym_Mb] = ACTIONS(141), - [anon_sym_MB] = ACTIONS(141), - [anon_sym_gb] = ACTIONS(141), - [anon_sym_gB] = ACTIONS(141), - [anon_sym_Gb] = ACTIONS(141), - [anon_sym_GB] = ACTIONS(141), - [anon_sym_tb] = ACTIONS(141), - [anon_sym_tB] = ACTIONS(141), - [anon_sym_Tb] = ACTIONS(141), - [anon_sym_TB] = ACTIONS(141), - [anon_sym_pb] = ACTIONS(141), - [anon_sym_pB] = ACTIONS(141), - [anon_sym_Pb] = ACTIONS(141), - [anon_sym_PB] = ACTIONS(141), - [anon_sym_eb] = ACTIONS(141), - [anon_sym_eB] = ACTIONS(141), - [anon_sym_Eb] = ACTIONS(141), - [anon_sym_EB] = ACTIONS(141), - [anon_sym_zb] = ACTIONS(141), - [anon_sym_zB] = ACTIONS(141), - [anon_sym_Zb] = ACTIONS(141), - [anon_sym_ZB] = ACTIONS(141), - [anon_sym_kib] = ACTIONS(141), - [anon_sym_kiB] = ACTIONS(141), - [anon_sym_kIB] = ACTIONS(141), - [anon_sym_kIb] = ACTIONS(141), - [anon_sym_Kib] = ACTIONS(141), - [anon_sym_KIb] = ACTIONS(141), - [anon_sym_KIB] = ACTIONS(141), - [anon_sym_mib] = ACTIONS(141), - [anon_sym_miB] = ACTIONS(141), - [anon_sym_mIB] = ACTIONS(141), - [anon_sym_mIb] = ACTIONS(141), - [anon_sym_Mib] = ACTIONS(141), - [anon_sym_MIb] = ACTIONS(141), - [anon_sym_MIB] = ACTIONS(141), - [anon_sym_gib] = ACTIONS(141), - [anon_sym_giB] = ACTIONS(141), - [anon_sym_gIB] = ACTIONS(141), - [anon_sym_gIb] = ACTIONS(141), - [anon_sym_Gib] = ACTIONS(141), - [anon_sym_GIb] = ACTIONS(141), - [anon_sym_GIB] = ACTIONS(141), - [anon_sym_tib] = ACTIONS(141), - [anon_sym_tiB] = ACTIONS(141), - [anon_sym_tIB] = ACTIONS(141), - [anon_sym_tIb] = ACTIONS(141), - [anon_sym_Tib] = ACTIONS(141), - [anon_sym_TIb] = ACTIONS(141), - [anon_sym_TIB] = ACTIONS(141), - [anon_sym_pib] = ACTIONS(141), - [anon_sym_piB] = ACTIONS(141), - [anon_sym_pIB] = ACTIONS(141), - [anon_sym_pIb] = ACTIONS(141), - [anon_sym_Pib] = ACTIONS(141), - [anon_sym_PIb] = ACTIONS(141), - [anon_sym_PIB] = ACTIONS(141), - [anon_sym_eib] = ACTIONS(141), - [anon_sym_eiB] = ACTIONS(141), - [anon_sym_eIB] = ACTIONS(141), - [anon_sym_eIb] = ACTIONS(141), - [anon_sym_Eib] = ACTIONS(141), - [anon_sym_EIb] = ACTIONS(141), - [anon_sym_EIB] = ACTIONS(141), - [anon_sym_zib] = ACTIONS(141), - [anon_sym_ziB] = ACTIONS(141), - [anon_sym_zIB] = ACTIONS(141), - [anon_sym_zIb] = ACTIONS(141), - [anon_sym_Zib] = ACTIONS(141), - [anon_sym_ZIb] = ACTIONS(141), - [anon_sym_ZIB] = ACTIONS(141), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(105), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(143), - }, - [11] = { - [sym_comment] = STATE(11), - [sym_cmd_identifier] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(115), - [anon_sym_COMMA] = ACTIONS(115), - [anon_sym_RBRACK] = ACTIONS(115), - [anon_sym_LPAREN] = ACTIONS(115), + [9] = { + [sym_comment] = STATE(9), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), [anon_sym_DASH] = ACTIONS(113), [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(115), - [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), [anon_sym_SLASH] = ACTIONS(113), [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_SLASH_SLASH] = ACTIONS(113), [anon_sym_PLUS] = ACTIONS(113), [anon_sym_bit_DASHshl] = ACTIONS(113), [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(115), - [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(115), - [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), [anon_sym_not_DASHin] = ACTIONS(113), [anon_sym_starts_DASHwith] = ACTIONS(113), [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(115), - [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), [anon_sym_bit_DASHand] = ACTIONS(113), [anon_sym_bit_DASHxor] = ACTIONS(113), [anon_sym_bit_DASHor] = ACTIONS(113), [anon_sym_and] = ACTIONS(113), [anon_sym_xor] = ACTIONS(113), [anon_sym_or] = ACTIONS(113), - [anon_sym_not] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), [sym_val_nothing] = ACTIONS(113), [anon_sym_true] = ACTIONS(113), [anon_sym_false] = ACTIONS(113), [aux_sym_val_number_token1] = ACTIONS(113), [aux_sym_val_number_token2] = ACTIONS(113), - [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_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), [anon_sym_inf] = ACTIONS(113), - [anon_sym_DASHinf] = ACTIONS(115), + [anon_sym_DASHinf] = ACTIONS(113), [anon_sym_NaN] = ACTIONS(113), [anon_sym_ns] = ACTIONS(113), [anon_sym_s] = ACTIONS(113), @@ -41488,16 +41253,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0b] = ACTIONS(113), [anon_sym_0o] = ACTIONS(113), [anon_sym_0x] = ACTIONS(113), - [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_POUND] = ACTIONS(143), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), }, - [12] = { - [sym_comment] = STATE(12), + [10] = { + [sym_comment] = STATE(10), [anon_sym_LBRACK] = ACTIONS(105), [anon_sym_COMMA] = ACTIONS(105), [anon_sym_LPAREN] = ACTIONS(105), @@ -41534,9 +41309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_xor] = ACTIONS(105), [anon_sym_or] = ACTIONS(105), [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(145), - [anon_sym_DOT_DOT] = ACTIONS(147), - [anon_sym_DOT_DOT_EQ] = ACTIONS(145), + [anon_sym_DOT_DOT_LT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(137), + [anon_sym_DOT_DOT_EQ] = ACTIONS(135), [sym_val_nothing] = ACTIONS(105), [anon_sym_true] = ACTIONS(105), [anon_sym_false] = ACTIONS(105), @@ -41548,16 +41323,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(105), [anon_sym_DASHinf] = ACTIONS(105), [anon_sym_NaN] = ACTIONS(105), - [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(151), + [anon_sym_ns] = ACTIONS(139), + [anon_sym_s] = ACTIONS(139), + [anon_sym_us] = ACTIONS(139), + [anon_sym_ms] = ACTIONS(139), + [anon_sym_sec] = ACTIONS(139), + [anon_sym_min] = ACTIONS(139), + [anon_sym_hr] = ACTIONS(139), + [anon_sym_day] = ACTIONS(139), + [anon_sym_wk] = ACTIONS(139), + [anon_sym_b] = ACTIONS(141), + [anon_sym_B] = ACTIONS(143), + [anon_sym_kb] = ACTIONS(143), + [anon_sym_kB] = ACTIONS(143), + [anon_sym_Kb] = ACTIONS(143), + [anon_sym_KB] = ACTIONS(143), + [anon_sym_mb] = ACTIONS(143), + [anon_sym_mB] = ACTIONS(143), + [anon_sym_Mb] = ACTIONS(143), + [anon_sym_MB] = ACTIONS(143), + [anon_sym_gb] = ACTIONS(143), + [anon_sym_gB] = ACTIONS(143), + [anon_sym_Gb] = ACTIONS(143), + [anon_sym_GB] = ACTIONS(143), + [anon_sym_tb] = ACTIONS(143), + [anon_sym_tB] = ACTIONS(143), + [anon_sym_Tb] = ACTIONS(143), + [anon_sym_TB] = ACTIONS(143), + [anon_sym_pb] = ACTIONS(143), + [anon_sym_pB] = ACTIONS(143), + [anon_sym_Pb] = ACTIONS(143), + [anon_sym_PB] = ACTIONS(143), + [anon_sym_eb] = ACTIONS(143), + [anon_sym_eB] = ACTIONS(143), + [anon_sym_Eb] = ACTIONS(143), + [anon_sym_EB] = ACTIONS(143), + [anon_sym_zb] = ACTIONS(143), + [anon_sym_zB] = ACTIONS(143), + [anon_sym_Zb] = ACTIONS(143), + [anon_sym_ZB] = ACTIONS(143), + [anon_sym_kib] = ACTIONS(143), + [anon_sym_kiB] = ACTIONS(143), + [anon_sym_kIB] = ACTIONS(143), + [anon_sym_kIb] = ACTIONS(143), + [anon_sym_Kib] = ACTIONS(143), + [anon_sym_KIb] = ACTIONS(143), + [anon_sym_KIB] = ACTIONS(143), + [anon_sym_mib] = ACTIONS(143), + [anon_sym_miB] = ACTIONS(143), + [anon_sym_mIB] = ACTIONS(143), + [anon_sym_mIb] = ACTIONS(143), + [anon_sym_Mib] = ACTIONS(143), + [anon_sym_MIb] = ACTIONS(143), + [anon_sym_MIB] = ACTIONS(143), + [anon_sym_gib] = ACTIONS(143), + [anon_sym_giB] = ACTIONS(143), + [anon_sym_gIB] = ACTIONS(143), + [anon_sym_gIb] = ACTIONS(143), + [anon_sym_Gib] = ACTIONS(143), + [anon_sym_GIb] = ACTIONS(143), + [anon_sym_GIB] = ACTIONS(143), + [anon_sym_tib] = ACTIONS(143), + [anon_sym_tiB] = ACTIONS(143), + [anon_sym_tIB] = ACTIONS(143), + [anon_sym_tIb] = ACTIONS(143), + [anon_sym_Tib] = ACTIONS(143), + [anon_sym_TIb] = ACTIONS(143), + [anon_sym_TIB] = ACTIONS(143), + [anon_sym_pib] = ACTIONS(143), + [anon_sym_piB] = ACTIONS(143), + [anon_sym_pIB] = ACTIONS(143), + [anon_sym_pIb] = ACTIONS(143), + [anon_sym_Pib] = ACTIONS(143), + [anon_sym_PIb] = ACTIONS(143), + [anon_sym_PIB] = ACTIONS(143), + [anon_sym_eib] = ACTIONS(143), + [anon_sym_eiB] = ACTIONS(143), + [anon_sym_eIB] = ACTIONS(143), + [anon_sym_eIb] = ACTIONS(143), + [anon_sym_Eib] = ACTIONS(143), + [anon_sym_EIb] = ACTIONS(143), + [anon_sym_EIB] = ACTIONS(143), + [anon_sym_zib] = ACTIONS(143), + [anon_sym_ziB] = ACTIONS(143), + [anon_sym_zIB] = ACTIONS(143), + [anon_sym_zIb] = ACTIONS(143), + [anon_sym_Zib] = ACTIONS(143), + [anon_sym_ZIb] = ACTIONS(143), + [anon_sym_ZIB] = ACTIONS(143), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(105), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(145), + }, + [11] = { + [sym_comment] = STATE(11), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACK] = ACTIONS(105), + [anon_sym_LPAREN] = ACTIONS(105), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(105), + [anon_sym_GT_EQ] = ACTIONS(105), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(105), + [anon_sym_BANG_TILDE] = ACTIONS(105), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(147), + [anon_sym_DOT_DOT] = ACTIONS(149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(147), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(105), + [aux_sym_val_number_token4] = ACTIONS(105), + [aux_sym_val_number_token5] = ACTIONS(105), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(105), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_ns] = ACTIONS(151), + [anon_sym_s] = ACTIONS(151), + [anon_sym_us] = ACTIONS(151), + [anon_sym_ms] = ACTIONS(151), + [anon_sym_sec] = ACTIONS(151), + [anon_sym_min] = ACTIONS(151), + [anon_sym_hr] = ACTIONS(151), + [anon_sym_day] = ACTIONS(151), + [anon_sym_wk] = ACTIONS(151), + [anon_sym_b] = ACTIONS(153), [anon_sym_B] = ACTIONS(153), [anon_sym_kb] = ACTIONS(153), [anon_sym_kB] = ACTIONS(153), @@ -41645,7 +41571,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(105), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(105), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), + }, + [12] = { + [sym_comment] = STATE(12), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(115), + [anon_sym_PLUS_PLUS] = ACTIONS(115), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(115), + [anon_sym_BANG_EQ] = ACTIONS(115), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(115), + [anon_sym_GT_EQ] = ACTIONS(115), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(115), + [anon_sym_BANG_TILDE] = ACTIONS(115), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(115), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(115), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(115), + [aux_sym_val_number_token4] = ACTIONS(115), + [aux_sym_val_number_token5] = ACTIONS(115), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(115), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [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_POUND] = ACTIONS(145), }, [13] = { [sym_comment] = STATE(13), @@ -41796,85 +41873,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(115), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [14] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3583), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym_parameter_pipes] = STATE(58), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2160), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_record_entry] = STATE(2863), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3610), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym_parameter_pipes] = STATE(64), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2229), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_record_entry] = STATE(2964), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(14), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_val_record_repeat1] = STATE(2621), + [aux_sym_val_record_repeat1] = STATE(2606), [sym_identifier] = ACTIONS(155), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -41939,85 +42016,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [15] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3583), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3610), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), [sym_parameter_pipes] = STATE(79), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2160), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_record_entry] = STATE(2863), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2229), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_record_entry] = STATE(2964), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(15), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), - [aux_sym_val_record_repeat1] = STATE(2615), + [aux_sym_val_record_repeat1] = STATE(2608), [sym_identifier] = ACTIONS(155), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42082,82 +42159,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [16] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3529), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym_parameter_pipes] = STATE(78), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3508), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym_parameter_pipes] = STATE(80), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(16), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42222,82 +42299,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [17] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3461), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3564), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), [sym_parameter_pipes] = STATE(70), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(17), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42362,82 +42439,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [18] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3479), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym_parameter_pipes] = STATE(49), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3600), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym_parameter_pipes] = STATE(34), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(18), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42502,82 +42579,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [19] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3448), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym_parameter_pipes] = STATE(60), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3594), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym_parameter_pipes] = STATE(49), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(19), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42642,81 +42719,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [20] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3448), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3594), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(20), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42780,81 +42857,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [21] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3529), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3600), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -42883,7 +42960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(203), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(261), [anon_sym_try] = ACTIONS(211), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), @@ -42918,81 +42995,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [22] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3479), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3508), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -43021,7 +43098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(203), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_RBRACE] = ACTIONS(261), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_try] = ACTIONS(211), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), @@ -43056,81 +43133,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [23] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3461), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3564), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -43194,82 +43271,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [24] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2993), - [sym__declaration_last] = STATE(3344), - [sym_decl_alias_last] = STATE(3319), - [sym_stmt_let_last] = STATE(3347), - [sym_stmt_mut_last] = STATE(3347), - [sym_stmt_const_last] = STATE(3347), - [sym__statement_last] = STATE(3344), - [sym_pipeline_last] = STATE(3347), - [sym__block_body] = STATE(3459), - [sym_decl_def] = STATE(697), - [sym_decl_export] = STATE(697), - [sym_decl_extern] = STATE(697), - [sym_decl_module] = STATE(697), - [sym_decl_use] = STATE(697), - [sym__ctrl_statement] = STATE(695), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_for] = STATE(693), - [sym_ctrl_loop] = STATE(693), - [sym_ctrl_error] = STATE(693), - [sym_ctrl_while] = STATE(693), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_stmt_source] = STATE(695), - [sym_stmt_register] = STATE(695), - [sym__stmt_hide] = STATE(695), - [sym_hide_mod] = STATE(690), - [sym_hide_env] = STATE(690), - [sym__stmt_overlay] = STATE(695), - [sym_overlay_list] = STATE(689), - [sym_overlay_hide] = STATE(689), - [sym_overlay_new] = STATE(689), - [sym_overlay_use] = STATE(689), - [sym_assignment] = STATE(695), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(1641), - [sym__var] = STATE(1508), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2875), + [sym__declaration_last] = STATE(3353), + [sym_decl_alias_last] = STATE(3354), + [sym_stmt_let_last] = STATE(3355), + [sym_stmt_mut_last] = STATE(3355), + [sym_stmt_const_last] = STATE(3355), + [sym__statement_last] = STATE(3353), + [sym_pipeline_last] = STATE(3355), + [sym__block_body] = STATE(3589), + [sym_decl_def] = STATE(624), + [sym_decl_export] = STATE(624), + [sym_decl_extern] = STATE(624), + [sym_decl_module] = STATE(624), + [sym_decl_use] = STATE(624), + [sym__ctrl_statement] = STATE(625), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_for] = STATE(626), + [sym_ctrl_loop] = STATE(626), + [sym_ctrl_error] = STATE(626), + [sym_ctrl_while] = STATE(626), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_stmt_source] = STATE(625), + [sym_stmt_register] = STATE(625), + [sym__stmt_hide] = STATE(625), + [sym_hide_mod] = STATE(631), + [sym_hide_env] = STATE(631), + [sym__stmt_overlay] = STATE(625), + [sym_overlay_list] = STATE(639), + [sym_overlay_hide] = STATE(639), + [sym_overlay_new] = STATE(639), + [sym_overlay_use] = STATE(639), + [sym_assignment] = STATE(625), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(1629), + [sym__var] = STATE(1501), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), [sym_comment] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(324), - [aux_sym__block_body_repeat2] = STATE(83), + [aux_sym_pipeline_repeat1] = STATE(312), + [aux_sym__block_body_repeat2] = STATE(84), [ts_builtin_sym_end] = ACTIONS(265), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), @@ -43332,89 +43409,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [25] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3581), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3487), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -43426,16 +43503,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -43468,90 +43545,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [26] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3530), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3500), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -43563,16 +43640,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -43605,83 +43682,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [27] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3563), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3597), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(27), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -43700,16 +43777,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -43742,82 +43819,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [28] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3466), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3523), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -43880,82 +43957,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [29] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3475), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3494), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(29), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -43974,16 +44051,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -44016,82 +44093,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [30] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3502), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3503), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -44154,81 +44231,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [31] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), [sym__block_body] = STATE(3505), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -44291,89 +44368,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [32] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3512), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3602), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(32), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -44427,82 +44504,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, [33] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3545), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3488), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -44565,81 +44642,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [34] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), [sym__block_body] = STATE(3550), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -44702,89 +44779,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [35] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3467), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3520), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -44796,16 +44873,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -44838,90 +44915,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [36] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3565), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3528), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(36), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -44975,82 +45052,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, [37] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3447), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3529), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -45113,89 +45190,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [38] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3524), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3558), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -45207,16 +45284,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -45249,90 +45326,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [39] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3507), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3584), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(39), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -45386,82 +45463,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, [40] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3501), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3580), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -45524,81 +45601,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [41] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3498), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3556), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(316), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_def] = ACTIONS(169), + [anon_sym_def_DASHenv] = ACTIONS(169), + [anon_sym_export_DASHenv] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(173), + [anon_sym_module] = ACTIONS(175), + [anon_sym_use] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_error] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(195), + [anon_sym_loop] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(215), + [anon_sym_source_DASHenv] = ACTIONS(215), + [anon_sym_register] = ACTIONS(217), + [anon_sym_hide] = ACTIONS(219), + [anon_sym_hide_DASHenv] = ACTIONS(221), + [anon_sym_overlay] = ACTIONS(223), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [42] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3519), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -45661,89 +45875,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [42] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3460), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(42), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [43] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3514), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -45797,90 +46011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [43] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3457), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(43), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [44] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3502), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(44), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -45934,83 +46148,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [44] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [45] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3477), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3501), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(45), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -46029,16 +46243,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -46071,82 +46285,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [45] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3576), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(316), + [46] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3585), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -46209,81 +46423,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [46] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3586), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(316), + [47] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3581), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(47), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -46346,82 +46560,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [47] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [48] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3453), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3570), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(48), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -46440,16 +46654,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -46482,90 +46696,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [48] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3582), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [49] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3479), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -46619,82 +46833,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [49] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3455), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(316), + [50] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3481), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(50), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -46757,89 +46971,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [50] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3456), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(50), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [51] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3483), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(51), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -46851,16 +47065,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -46893,83 +47107,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [51] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [52] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3449), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3480), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(52), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -46988,16 +47202,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -47030,82 +47244,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [52] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3464), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(52), - [aux_sym_pipeline_repeat1] = STATE(316), + [53] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3485), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(53), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_def] = ACTIONS(169), + [anon_sym_def_DASHenv] = ACTIONS(169), + [anon_sym_export_DASHenv] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(173), + [anon_sym_module] = ACTIONS(175), + [anon_sym_use] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_error] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(195), + [anon_sym_loop] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(215), + [anon_sym_source_DASHenv] = ACTIONS(215), + [anon_sym_register] = ACTIONS(217), + [anon_sym_hide] = ACTIONS(219), + [anon_sym_hide_DASHenv] = ACTIONS(221), + [anon_sym_overlay] = ACTIONS(223), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [54] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3476), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(54), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_def] = ACTIONS(169), + [anon_sym_def_DASHenv] = ACTIONS(169), + [anon_sym_export_DASHenv] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(173), + [anon_sym_module] = ACTIONS(175), + [anon_sym_use] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_error] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(195), + [anon_sym_loop] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(215), + [anon_sym_source_DASHenv] = ACTIONS(215), + [anon_sym_register] = ACTIONS(217), + [anon_sym_hide] = ACTIONS(219), + [anon_sym_hide_DASHenv] = ACTIONS(221), + [anon_sym_overlay] = ACTIONS(223), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [55] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3627), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(55), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -47168,81 +47656,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [53] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3470), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(53), - [aux_sym_pipeline_repeat1] = STATE(316), + [56] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3498), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(56), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -47305,89 +47793,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [54] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3508), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [57] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3499), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(57), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -47441,90 +47929,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [55] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3462), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [58] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3516), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(58), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -47578,90 +48066,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [56] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3478), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(56), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [59] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3473), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -47673,16 +48161,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -47715,90 +48203,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [57] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3458), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(57), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [60] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3598), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -47810,16 +48298,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -47852,90 +48340,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [58] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3522), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [61] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3504), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -47947,16 +48435,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -47989,90 +48477,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [59] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3578), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(59), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), + [62] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), + [sym__declaration_parenthesized_last] = STATE(3394), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), + [sym__statement_parenthesized_last] = STATE(3394), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3471), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), + [anon_sym_export] = ACTIONS(267), + [anon_sym_alias] = ACTIONS(269), + [anon_sym_let] = ACTIONS(271), + [anon_sym_let_DASHenv] = ACTIONS(271), + [anon_sym_mut] = ACTIONS(273), + [anon_sym_const] = ACTIONS(275), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -48084,16 +48572,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -48126,82 +48614,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [60] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3538), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(60), - [aux_sym_pipeline_repeat1] = STATE(316), + [63] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3521), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(63), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -48264,89 +48752,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [61] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3482), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [64] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3469), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(64), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -48400,90 +48888,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [62] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3463), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [65] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3522), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(65), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -48537,82 +49025,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [63] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3499), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(63), - [aux_sym_pipeline_repeat1] = STATE(316), + [66] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3578), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(66), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -48675,82 +49163,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [64] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3534), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3524), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -48769,16 +49257,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -48811,82 +49299,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [65] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3500), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(65), - [aux_sym_pipeline_repeat1] = STATE(316), + [68] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3509), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(68), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -48949,82 +49437,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3579), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3533), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -49043,6 +49531,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(195), + [anon_sym_loop] = ACTIONS(197), + [anon_sym_while] = ACTIONS(199), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_source] = ACTIONS(215), + [anon_sym_source_DASHenv] = ACTIONS(215), + [anon_sym_register] = ACTIONS(217), + [anon_sym_hide] = ACTIONS(219), + [anon_sym_hide_DASHenv] = ACTIONS(221), + [anon_sym_overlay] = ACTIONS(223), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [70] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3559), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(70), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), + [anon_sym_def] = ACTIONS(169), + [anon_sym_def_DASHenv] = ACTIONS(169), + [anon_sym_export_DASHenv] = ACTIONS(171), + [anon_sym_extern] = ACTIONS(173), + [anon_sym_module] = ACTIONS(175), + [anon_sym_use] = ACTIONS(177), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(185), + [anon_sym_error] = ACTIONS(187), + [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), [anon_sym_for] = ACTIONS(195), @@ -49085,82 +49710,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [67] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3560), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(316), + [71] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3563), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(71), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -49223,82 +49848,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3517), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3566), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -49317,16 +49942,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -49359,83 +49984,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3513), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3497), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -49454,16 +50079,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -49496,219 +50121,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [70] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3567), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(70), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), - [anon_sym_def] = ACTIONS(169), - [anon_sym_def_DASHenv] = ACTIONS(169), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(173), - [anon_sym_module] = ACTIONS(175), - [anon_sym_use] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(185), - [anon_sym_error] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_for] = ACTIONS(195), - [anon_sym_loop] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(215), - [anon_sym_source_DASHenv] = ACTIONS(215), - [anon_sym_register] = ACTIONS(217), - [anon_sym_hide] = ACTIONS(219), - [anon_sym_hide_DASHenv] = ACTIONS(221), - [anon_sym_overlay] = ACTIONS(223), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), - }, - [71] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3568), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(71), - [aux_sym_pipeline_repeat1] = STATE(316), + [74] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3510), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(74), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -49771,82 +50259,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3450), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3466), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -49865,16 +50353,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -49907,357 +50395,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [73] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3483), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(73), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), - [anon_sym_def] = ACTIONS(169), - [anon_sym_def_DASHenv] = ACTIONS(169), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(173), - [anon_sym_module] = ACTIONS(175), - [anon_sym_use] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(185), - [anon_sym_error] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_for] = ACTIONS(195), - [anon_sym_loop] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(215), - [anon_sym_source_DASHenv] = ACTIONS(215), - [anon_sym_register] = ACTIONS(217), - [anon_sym_hide] = ACTIONS(219), - [anon_sym_hide_DASHenv] = ACTIONS(221), - [anon_sym_overlay] = ACTIONS(223), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), - }, - [74] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3544), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(74), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(85), - [anon_sym_export] = ACTIONS(157), - [anon_sym_alias] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), - [anon_sym_let_DASHenv] = ACTIONS(161), - [anon_sym_mut] = ACTIONS(163), - [anon_sym_const] = ACTIONS(165), - [sym_cmd_identifier] = ACTIONS(167), - [anon_sym_def] = ACTIONS(169), - [anon_sym_def_DASHenv] = ACTIONS(169), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(173), - [anon_sym_module] = ACTIONS(175), - [anon_sym_use] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(185), - [anon_sym_error] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_for] = ACTIONS(195), - [anon_sym_loop] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(215), - [anon_sym_source_DASHenv] = ACTIONS(215), - [anon_sym_register] = ACTIONS(217), - [anon_sym_hide] = ACTIONS(219), - [anon_sym_hide_DASHenv] = ACTIONS(221), - [anon_sym_overlay] = ACTIONS(223), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), - }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3572), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3574), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -50276,16 +50490,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -50318,90 +50532,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3575), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), + [77] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3551), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(77), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(85), + [anon_sym_export] = ACTIONS(157), + [anon_sym_alias] = ACTIONS(159), + [anon_sym_let] = ACTIONS(161), + [anon_sym_let_DASHenv] = ACTIONS(161), + [anon_sym_mut] = ACTIONS(163), + [anon_sym_const] = ACTIONS(165), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_def] = ACTIONS(169), [anon_sym_def_DASHenv] = ACTIONS(169), [anon_sym_export_DASHenv] = ACTIONS(171), @@ -50455,82 +50669,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [77] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3592), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(77), - [aux_sym_pipeline_repeat1] = STATE(316), + [78] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3583), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(78), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -50593,81 +50807,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [78] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3591), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(78), - [aux_sym_pipeline_repeat1] = STATE(316), + [79] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3603), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(79), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -50730,81 +50944,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [79] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3580), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(316), + [80] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3588), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -50867,81 +51081,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [80] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2811), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym__block_body] = STATE(3606), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(80), - [aux_sym_pipeline_repeat1] = STATE(316), + [81] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2803), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym__block_body] = STATE(3604), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(309), [aux_sym__block_body_repeat2] = STATE(85), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), @@ -51004,82 +51218,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(2928), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3564), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym__parenthesized_body] = STATE(3613), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(83), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -51098,16 +51312,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -51140,83 +51354,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2876), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym__block_body_statement_parenthesized_last] = STATE(3017), [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), + [sym_decl_alias_parenthesized_last] = STATE(3387), + [sym_stmt_let_parenthesized_last] = STATE(3374), + [sym_stmt_mut_parenthesized_last] = STATE(3374), + [sym_stmt_const_parenthesized_last] = STATE(3374), [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym__parenthesized_body] = STATE(3587), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(84), + [sym_pipeline_parenthesized_last] = STATE(3374), + [sym_decl_def] = STATE(620), + [sym_decl_export] = STATE(620), + [sym_decl_extern] = STATE(620), + [sym_decl_module] = STATE(620), + [sym_decl_use] = STATE(620), + [sym__ctrl_statement] = STATE(694), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_stmt_source] = STATE(694), + [sym_stmt_register] = STATE(694), + [sym__stmt_hide] = STATE(694), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(694), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(694), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [aux_sym__parenthesized_body_repeat1] = STATE(105), [anon_sym_export] = ACTIONS(267), [anon_sym_alias] = ACTIONS(269), [anon_sym_let] = ACTIONS(271), @@ -51235,16 +51448,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(185), [anon_sym_error] = ACTIONS(187), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_for] = ACTIONS(195), [anon_sym_loop] = ACTIONS(197), [anon_sym_while] = ACTIONS(199), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_source] = ACTIONS(215), [anon_sym_source_DASHenv] = ACTIONS(215), @@ -51277,82 +51490,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [83] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2870), - [sym__declaration_last] = STATE(3344), - [sym_decl_alias_last] = STATE(3319), - [sym_stmt_let_last] = STATE(3347), - [sym_stmt_mut_last] = STATE(3347), - [sym_stmt_const_last] = STATE(3347), - [sym__statement_last] = STATE(3344), - [sym_pipeline_last] = STATE(3347), - [sym_decl_def] = STATE(697), - [sym_decl_export] = STATE(697), - [sym_decl_extern] = STATE(697), - [sym_decl_module] = STATE(697), - [sym_decl_use] = STATE(697), - [sym__ctrl_statement] = STATE(695), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_for] = STATE(693), - [sym_ctrl_loop] = STATE(693), - [sym_ctrl_error] = STATE(693), - [sym_ctrl_while] = STATE(693), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_stmt_source] = STATE(695), - [sym_stmt_register] = STATE(695), - [sym__stmt_hide] = STATE(695), - [sym_hide_mod] = STATE(690), - [sym_hide_env] = STATE(690), - [sym__stmt_overlay] = STATE(695), - [sym_overlay_list] = STATE(689), - [sym_overlay_hide] = STATE(689), - [sym_overlay_new] = STATE(689), - [sym_overlay_use] = STATE(689), - [sym_assignment] = STATE(695), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(1641), - [sym__var] = STATE(1508), + [84] = { + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2987), + [sym__declaration_last] = STATE(3353), + [sym_decl_alias_last] = STATE(3354), + [sym_stmt_let_last] = STATE(3355), + [sym_stmt_mut_last] = STATE(3355), + [sym_stmt_const_last] = STATE(3355), + [sym__statement_last] = STATE(3353), + [sym_pipeline_last] = STATE(3355), + [sym_decl_def] = STATE(624), + [sym_decl_export] = STATE(624), + [sym_decl_extern] = STATE(624), + [sym_decl_module] = STATE(624), + [sym_decl_use] = STATE(624), + [sym__ctrl_statement] = STATE(625), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_for] = STATE(626), + [sym_ctrl_loop] = STATE(626), + [sym_ctrl_error] = STATE(626), + [sym_ctrl_while] = STATE(626), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_stmt_source] = STATE(625), + [sym_stmt_register] = STATE(625), + [sym__stmt_hide] = STATE(625), + [sym_hide_mod] = STATE(631), + [sym_hide_env] = STATE(631), + [sym__stmt_overlay] = STATE(625), + [sym_overlay_list] = STATE(639), + [sym_overlay_hide] = STATE(639), + [sym_overlay_new] = STATE(639), + [sym_overlay_use] = STATE(639), + [sym_assignment] = STATE(625), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(1629), + [sym__var] = STATE(1501), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), - [sym_comment] = STATE(83), - [aux_sym_pipeline_repeat1] = STATE(324), - [aux_sym__block_body_repeat2] = STATE(106), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), + [sym_comment] = STATE(84), + [aux_sym_pipeline_repeat1] = STATE(312), + [aux_sym__block_body_repeat2] = STATE(104), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -51414,217 +51627,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), - }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym__block_body_statement_parenthesized_last] = STATE(2919), - [sym__declaration_parenthesized_last] = STATE(3394), - [sym_decl_alias_parenthesized_last] = STATE(3392), - [sym_stmt_let_parenthesized_last] = STATE(3385), - [sym_stmt_mut_parenthesized_last] = STATE(3385), - [sym_stmt_const_parenthesized_last] = STATE(3385), - [sym__statement_parenthesized_last] = STATE(3394), - [sym_pipeline_parenthesized_last] = STATE(3385), - [sym_decl_def] = STATE(641), - [sym_decl_export] = STATE(641), - [sym_decl_extern] = STATE(641), - [sym_decl_module] = STATE(641), - [sym_decl_use] = STATE(641), - [sym__ctrl_statement] = STATE(652), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_stmt_source] = STATE(652), - [sym_stmt_register] = STATE(652), - [sym__stmt_hide] = STATE(652), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(652), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(652), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [aux_sym__parenthesized_body_repeat1] = STATE(104), - [anon_sym_export] = ACTIONS(267), - [anon_sym_alias] = ACTIONS(269), - [anon_sym_let] = ACTIONS(271), - [anon_sym_let_DASHenv] = ACTIONS(271), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(275), - [sym_cmd_identifier] = ACTIONS(277), - [anon_sym_def] = ACTIONS(169), - [anon_sym_def_DASHenv] = ACTIONS(169), - [anon_sym_export_DASHenv] = ACTIONS(171), - [anon_sym_extern] = ACTIONS(173), - [anon_sym_module] = ACTIONS(175), - [anon_sym_use] = ACTIONS(177), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(185), - [anon_sym_error] = ACTIONS(187), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_for] = ACTIONS(195), - [anon_sym_loop] = ACTIONS(197), - [anon_sym_while] = ACTIONS(199), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_source] = ACTIONS(215), - [anon_sym_source_DASHenv] = ACTIONS(215), - [anon_sym_register] = ACTIONS(217), - [anon_sym_hide] = ACTIONS(219), - [anon_sym_hide_DASHenv] = ACTIONS(221), - [anon_sym_overlay] = ACTIONS(223), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [85] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym__block_body_statement_last] = STATE(2788), - [sym__declaration_last] = STATE(3097), - [sym_decl_alias_last] = STATE(3082), - [sym_stmt_let_last] = STATE(3095), - [sym_stmt_mut_last] = STATE(3095), - [sym_stmt_const_last] = STATE(3095), - [sym__statement_last] = STATE(3097), - [sym_pipeline_last] = STATE(3095), - [sym_decl_def] = STATE(541), - [sym_decl_export] = STATE(541), - [sym_decl_extern] = STATE(541), - [sym_decl_module] = STATE(541), - [sym_decl_use] = STATE(541), - [sym__ctrl_statement] = STATE(576), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_stmt_source] = STATE(576), - [sym_stmt_register] = STATE(576), - [sym__stmt_hide] = STATE(576), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(576), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(576), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym__block_body_statement_last] = STATE(2797), + [sym__declaration_last] = STATE(3079), + [sym_decl_alias_last] = STATE(3122), + [sym_stmt_let_last] = STATE(3133), + [sym_stmt_mut_last] = STATE(3133), + [sym_stmt_const_last] = STATE(3133), + [sym__statement_last] = STATE(3079), + [sym_pipeline_last] = STATE(3133), + [sym_decl_def] = STATE(532), + [sym_decl_export] = STATE(532), + [sym_decl_extern] = STATE(532), + [sym_decl_module] = STATE(532), + [sym_decl_use] = STATE(532), + [sym__ctrl_statement] = STATE(528), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_stmt_source] = STATE(528), + [sym_stmt_register] = STATE(528), + [sym__stmt_hide] = STATE(528), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(528), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(528), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(85), - [aux_sym_pipeline_repeat1] = STATE(316), - [aux_sym__block_body_repeat2] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(309), + [aux_sym__block_body_repeat2] = STATE(104), [anon_sym_export] = ACTIONS(157), [anon_sym_alias] = ACTIONS(159), [anon_sym_let] = ACTIONS(161), @@ -51686,10 +51763,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [86] = { [sym_comment] = STATE(86), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(289), + [anon_sym_DOT_DOT] = ACTIONS(289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(289), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_ns] = ACTIONS(291), + [anon_sym_s] = ACTIONS(291), + [anon_sym_us] = ACTIONS(291), + [anon_sym_ms] = ACTIONS(291), + [anon_sym_sec] = ACTIONS(291), + [anon_sym_min] = ACTIONS(291), + [anon_sym_hr] = ACTIONS(291), + [anon_sym_day] = ACTIONS(291), + [anon_sym_wk] = ACTIONS(291), + [anon_sym_b] = ACTIONS(293), + [anon_sym_B] = ACTIONS(293), + [anon_sym_kb] = ACTIONS(293), + [anon_sym_kB] = ACTIONS(293), + [anon_sym_Kb] = ACTIONS(293), + [anon_sym_KB] = ACTIONS(293), + [anon_sym_mb] = ACTIONS(293), + [anon_sym_mB] = ACTIONS(293), + [anon_sym_Mb] = ACTIONS(293), + [anon_sym_MB] = ACTIONS(293), + [anon_sym_gb] = ACTIONS(293), + [anon_sym_gB] = ACTIONS(293), + [anon_sym_Gb] = ACTIONS(293), + [anon_sym_GB] = ACTIONS(293), + [anon_sym_tb] = ACTIONS(293), + [anon_sym_tB] = ACTIONS(293), + [anon_sym_Tb] = ACTIONS(293), + [anon_sym_TB] = ACTIONS(293), + [anon_sym_pb] = ACTIONS(293), + [anon_sym_pB] = ACTIONS(293), + [anon_sym_Pb] = ACTIONS(293), + [anon_sym_PB] = ACTIONS(293), + [anon_sym_eb] = ACTIONS(293), + [anon_sym_eB] = ACTIONS(293), + [anon_sym_Eb] = ACTIONS(293), + [anon_sym_EB] = ACTIONS(293), + [anon_sym_zb] = ACTIONS(293), + [anon_sym_zB] = ACTIONS(293), + [anon_sym_Zb] = ACTIONS(293), + [anon_sym_ZB] = ACTIONS(293), + [anon_sym_kib] = ACTIONS(293), + [anon_sym_kiB] = ACTIONS(293), + [anon_sym_kIB] = ACTIONS(293), + [anon_sym_kIb] = ACTIONS(293), + [anon_sym_Kib] = ACTIONS(293), + [anon_sym_KIb] = ACTIONS(293), + [anon_sym_KIB] = ACTIONS(293), + [anon_sym_mib] = ACTIONS(293), + [anon_sym_miB] = ACTIONS(293), + [anon_sym_mIB] = ACTIONS(293), + [anon_sym_mIb] = ACTIONS(293), + [anon_sym_Mib] = ACTIONS(293), + [anon_sym_MIb] = ACTIONS(293), + [anon_sym_MIB] = ACTIONS(293), + [anon_sym_gib] = ACTIONS(293), + [anon_sym_giB] = ACTIONS(293), + [anon_sym_gIB] = ACTIONS(293), + [anon_sym_gIb] = ACTIONS(293), + [anon_sym_Gib] = ACTIONS(293), + [anon_sym_GIb] = ACTIONS(293), + [anon_sym_GIB] = ACTIONS(293), + [anon_sym_tib] = ACTIONS(293), + [anon_sym_tiB] = ACTIONS(293), + [anon_sym_tIB] = ACTIONS(293), + [anon_sym_tIb] = ACTIONS(293), + [anon_sym_Tib] = ACTIONS(293), + [anon_sym_TIb] = ACTIONS(293), + [anon_sym_TIB] = ACTIONS(293), + [anon_sym_pib] = ACTIONS(293), + [anon_sym_piB] = ACTIONS(293), + [anon_sym_pIB] = ACTIONS(293), + [anon_sym_pIb] = ACTIONS(293), + [anon_sym_Pib] = ACTIONS(293), + [anon_sym_PIb] = ACTIONS(293), + [anon_sym_PIB] = ACTIONS(293), + [anon_sym_eib] = ACTIONS(293), + [anon_sym_eiB] = ACTIONS(293), + [anon_sym_eIB] = ACTIONS(293), + [anon_sym_eIb] = ACTIONS(293), + [anon_sym_Eib] = ACTIONS(293), + [anon_sym_EIb] = ACTIONS(293), + [anon_sym_EIB] = ACTIONS(293), + [anon_sym_zib] = ACTIONS(293), + [anon_sym_ziB] = ACTIONS(293), + [anon_sym_zIB] = ACTIONS(293), + [anon_sym_zIb] = ACTIONS(293), + [anon_sym_Zib] = ACTIONS(293), + [anon_sym_ZIb] = ACTIONS(293), + [anon_sym_ZIB] = ACTIONS(293), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [87] = { + [sym_comment] = STATE(87), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(113), @@ -51823,277 +52035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [87] = { - [sym_comment] = STATE(87), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(281), - [anon_sym_DOT_DOT] = ACTIONS(281), - [anon_sym_DOT_DOT_EQ] = ACTIONS(281), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(283), - [anon_sym_s] = ACTIONS(283), - [anon_sym_us] = ACTIONS(283), - [anon_sym_ms] = ACTIONS(283), - [anon_sym_sec] = ACTIONS(283), - [anon_sym_min] = ACTIONS(283), - [anon_sym_hr] = ACTIONS(283), - [anon_sym_day] = ACTIONS(283), - [anon_sym_wk] = ACTIONS(283), - [anon_sym_b] = ACTIONS(285), - [anon_sym_B] = ACTIONS(285), - [anon_sym_kb] = ACTIONS(285), - [anon_sym_kB] = ACTIONS(285), - [anon_sym_Kb] = ACTIONS(285), - [anon_sym_KB] = ACTIONS(285), - [anon_sym_mb] = ACTIONS(285), - [anon_sym_mB] = ACTIONS(285), - [anon_sym_Mb] = ACTIONS(285), - [anon_sym_MB] = ACTIONS(285), - [anon_sym_gb] = ACTIONS(285), - [anon_sym_gB] = ACTIONS(285), - [anon_sym_Gb] = ACTIONS(285), - [anon_sym_GB] = ACTIONS(285), - [anon_sym_tb] = ACTIONS(285), - [anon_sym_tB] = ACTIONS(285), - [anon_sym_Tb] = ACTIONS(285), - [anon_sym_TB] = ACTIONS(285), - [anon_sym_pb] = ACTIONS(285), - [anon_sym_pB] = ACTIONS(285), - [anon_sym_Pb] = ACTIONS(285), - [anon_sym_PB] = ACTIONS(285), - [anon_sym_eb] = ACTIONS(285), - [anon_sym_eB] = ACTIONS(285), - [anon_sym_Eb] = ACTIONS(285), - [anon_sym_EB] = ACTIONS(285), - [anon_sym_zb] = ACTIONS(285), - [anon_sym_zB] = ACTIONS(285), - [anon_sym_Zb] = ACTIONS(285), - [anon_sym_ZB] = ACTIONS(285), - [anon_sym_kib] = ACTIONS(285), - [anon_sym_kiB] = ACTIONS(285), - [anon_sym_kIB] = ACTIONS(285), - [anon_sym_kIb] = ACTIONS(285), - [anon_sym_Kib] = ACTIONS(285), - [anon_sym_KIb] = ACTIONS(285), - [anon_sym_KIB] = ACTIONS(285), - [anon_sym_mib] = ACTIONS(285), - [anon_sym_miB] = ACTIONS(285), - [anon_sym_mIB] = ACTIONS(285), - [anon_sym_mIb] = ACTIONS(285), - [anon_sym_Mib] = ACTIONS(285), - [anon_sym_MIb] = ACTIONS(285), - [anon_sym_MIB] = ACTIONS(285), - [anon_sym_gib] = ACTIONS(285), - [anon_sym_giB] = ACTIONS(285), - [anon_sym_gIB] = ACTIONS(285), - [anon_sym_gIb] = ACTIONS(285), - [anon_sym_Gib] = ACTIONS(285), - [anon_sym_GIb] = ACTIONS(285), - [anon_sym_GIB] = ACTIONS(285), - [anon_sym_tib] = ACTIONS(285), - [anon_sym_tiB] = ACTIONS(285), - [anon_sym_tIB] = ACTIONS(285), - [anon_sym_tIb] = ACTIONS(285), - [anon_sym_Tib] = ACTIONS(285), - [anon_sym_TIb] = ACTIONS(285), - [anon_sym_TIB] = ACTIONS(285), - [anon_sym_pib] = ACTIONS(285), - [anon_sym_piB] = ACTIONS(285), - [anon_sym_pIB] = ACTIONS(285), - [anon_sym_pIb] = ACTIONS(285), - [anon_sym_Pib] = ACTIONS(285), - [anon_sym_PIb] = ACTIONS(285), - [anon_sym_PIB] = ACTIONS(285), - [anon_sym_eib] = ACTIONS(285), - [anon_sym_eiB] = ACTIONS(285), - [anon_sym_eIB] = ACTIONS(285), - [anon_sym_eIb] = ACTIONS(285), - [anon_sym_Eib] = ACTIONS(285), - [anon_sym_EIb] = ACTIONS(285), - [anon_sym_EIB] = ACTIONS(285), - [anon_sym_zib] = ACTIONS(285), - [anon_sym_ziB] = ACTIONS(285), - [anon_sym_zIB] = ACTIONS(285), - [anon_sym_zIb] = ACTIONS(285), - [anon_sym_Zib] = ACTIONS(285), - [anon_sym_ZIb] = ACTIONS(285), - [anon_sym_ZIB] = ACTIONS(285), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, [88] = { [sym_comment] = STATE(88), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(287), - [anon_sym_DOT_DOT] = ACTIONS(287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(287), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_ns] = ACTIONS(289), - [anon_sym_s] = ACTIONS(289), - [anon_sym_us] = ACTIONS(289), - [anon_sym_ms] = ACTIONS(289), - [anon_sym_sec] = ACTIONS(289), - [anon_sym_min] = ACTIONS(289), - [anon_sym_hr] = ACTIONS(289), - [anon_sym_day] = ACTIONS(289), - [anon_sym_wk] = ACTIONS(289), - [anon_sym_b] = ACTIONS(291), - [anon_sym_B] = ACTIONS(291), - [anon_sym_kb] = ACTIONS(291), - [anon_sym_kB] = ACTIONS(291), - [anon_sym_Kb] = ACTIONS(291), - [anon_sym_KB] = ACTIONS(291), - [anon_sym_mb] = ACTIONS(291), - [anon_sym_mB] = ACTIONS(291), - [anon_sym_Mb] = ACTIONS(291), - [anon_sym_MB] = ACTIONS(291), - [anon_sym_gb] = ACTIONS(291), - [anon_sym_gB] = ACTIONS(291), - [anon_sym_Gb] = ACTIONS(291), - [anon_sym_GB] = ACTIONS(291), - [anon_sym_tb] = ACTIONS(291), - [anon_sym_tB] = ACTIONS(291), - [anon_sym_Tb] = ACTIONS(291), - [anon_sym_TB] = ACTIONS(291), - [anon_sym_pb] = ACTIONS(291), - [anon_sym_pB] = ACTIONS(291), - [anon_sym_Pb] = ACTIONS(291), - [anon_sym_PB] = ACTIONS(291), - [anon_sym_eb] = ACTIONS(291), - [anon_sym_eB] = ACTIONS(291), - [anon_sym_Eb] = ACTIONS(291), - [anon_sym_EB] = ACTIONS(291), - [anon_sym_zb] = ACTIONS(291), - [anon_sym_zB] = ACTIONS(291), - [anon_sym_Zb] = ACTIONS(291), - [anon_sym_ZB] = ACTIONS(291), - [anon_sym_kib] = ACTIONS(291), - [anon_sym_kiB] = ACTIONS(291), - [anon_sym_kIB] = ACTIONS(291), - [anon_sym_kIb] = ACTIONS(291), - [anon_sym_Kib] = ACTIONS(291), - [anon_sym_KIb] = ACTIONS(291), - [anon_sym_KIB] = ACTIONS(291), - [anon_sym_mib] = ACTIONS(291), - [anon_sym_miB] = ACTIONS(291), - [anon_sym_mIB] = ACTIONS(291), - [anon_sym_mIb] = ACTIONS(291), - [anon_sym_Mib] = ACTIONS(291), - [anon_sym_MIb] = ACTIONS(291), - [anon_sym_MIB] = ACTIONS(291), - [anon_sym_gib] = ACTIONS(291), - [anon_sym_giB] = ACTIONS(291), - [anon_sym_gIB] = ACTIONS(291), - [anon_sym_gIb] = ACTIONS(291), - [anon_sym_Gib] = ACTIONS(291), - [anon_sym_GIb] = ACTIONS(291), - [anon_sym_GIB] = ACTIONS(291), - [anon_sym_tib] = ACTIONS(291), - [anon_sym_tiB] = ACTIONS(291), - [anon_sym_tIB] = ACTIONS(291), - [anon_sym_tIb] = ACTIONS(291), - [anon_sym_Tib] = ACTIONS(291), - [anon_sym_TIb] = ACTIONS(291), - [anon_sym_TIB] = ACTIONS(291), - [anon_sym_pib] = ACTIONS(291), - [anon_sym_piB] = ACTIONS(291), - [anon_sym_pIB] = ACTIONS(291), - [anon_sym_pIb] = ACTIONS(291), - [anon_sym_Pib] = ACTIONS(291), - [anon_sym_PIb] = ACTIONS(291), - [anon_sym_PIB] = ACTIONS(291), - [anon_sym_eib] = ACTIONS(291), - [anon_sym_eiB] = ACTIONS(291), - [anon_sym_eIB] = ACTIONS(291), - [anon_sym_eIb] = ACTIONS(291), - [anon_sym_Eib] = ACTIONS(291), - [anon_sym_EIb] = ACTIONS(291), - [anon_sym_EIB] = ACTIONS(291), - [anon_sym_zib] = ACTIONS(291), - [anon_sym_ziB] = ACTIONS(291), - [anon_sym_zIB] = ACTIONS(291), - [anon_sym_zIb] = ACTIONS(291), - [anon_sym_Zib] = ACTIONS(291), - [anon_sym_ZIb] = ACTIONS(291), - [anon_sym_ZIB] = ACTIONS(291), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [89] = { - [sym_comment] = STATE(89), [ts_builtin_sym_end] = ACTIONS(115), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), @@ -52226,48 +52169,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [90] = { - [sym_comment] = STATE(90), - [sym_identifier] = ACTIONS(103), - [anon_sym_COLON] = ACTIONS(105), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_RBRACK] = ACTIONS(105), - [anon_sym_RPAREN] = ACTIONS(105), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(105), - [anon_sym_bit_DASHshr] = ACTIONS(105), - [anon_sym_EQ_EQ] = ACTIONS(105), - [anon_sym_BANG_EQ] = ACTIONS(105), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(105), - [anon_sym_GT_EQ] = ACTIONS(105), - [anon_sym_not_DASHin] = ACTIONS(105), - [anon_sym_starts_DASHwith] = ACTIONS(105), - [anon_sym_ends_DASHwith] = ACTIONS(105), - [anon_sym_EQ_TILDE] = ACTIONS(105), - [anon_sym_BANG_TILDE] = ACTIONS(105), - [anon_sym_bit_DASHand] = ACTIONS(105), - [anon_sym_bit_DASHxor] = ACTIONS(105), - [anon_sym_bit_DASHor] = ACTIONS(105), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(293), + [89] = { + [sym_comment] = STATE(89), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(295), [anon_sym_DOT_DOT] = ACTIONS(295), - [anon_sym_DOT_DOT_EQ] = ACTIONS(293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(295), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), [anon_sym_ns] = ACTIONS(297), [anon_sym_s] = ACTIONS(297), [anon_sym_us] = ACTIONS(297), @@ -52356,10 +52282,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(299), [anon_sym_ZIb] = ACTIONS(299), [anon_sym_ZIB] = ACTIONS(299), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), }, - [91] = { - [sym_comment] = STATE(91), + [90] = { + [sym_comment] = STATE(90), [sym_identifier] = ACTIONS(113), [anon_sym_COLON] = ACTIONS(115), [anon_sym_COMMA] = ACTIONS(115), @@ -52488,414 +52433,415 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(113), [anon_sym_ZIb] = ACTIONS(113), [anon_sym_ZIB] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(143), - }, - [92] = { - [sym_cell_path] = STATE(2241), - [sym_path] = STATE(1816), - [sym_comment] = STATE(92), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_LF] = ACTIONS(303), - [anon_sym_RPAREN] = ACTIONS(301), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(305), - [anon_sym_DASH] = ACTIONS(307), - [anon_sym_in] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(301), - [anon_sym_DOT] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_QMARK2] = ACTIONS(315), - [anon_sym_STAR_STAR] = ACTIONS(317), - [anon_sym_PLUS_PLUS] = ACTIONS(317), - [anon_sym_SLASH] = ACTIONS(313), - [anon_sym_mod] = ACTIONS(313), - [anon_sym_SLASH_SLASH] = ACTIONS(313), - [anon_sym_PLUS] = ACTIONS(307), - [anon_sym_bit_DASHshl] = ACTIONS(319), - [anon_sym_bit_DASHshr] = ACTIONS(319), - [anon_sym_EQ_EQ] = ACTIONS(305), - [anon_sym_BANG_EQ] = ACTIONS(305), - [anon_sym_LT2] = ACTIONS(305), - [anon_sym_LT_EQ] = ACTIONS(305), - [anon_sym_GT_EQ] = ACTIONS(305), - [anon_sym_not_DASHin] = ACTIONS(309), - [anon_sym_starts_DASHwith] = ACTIONS(309), - [anon_sym_ends_DASHwith] = ACTIONS(309), - [anon_sym_EQ_TILDE] = ACTIONS(321), - [anon_sym_BANG_TILDE] = ACTIONS(321), - [anon_sym_bit_DASHand] = ACTIONS(323), - [anon_sym_bit_DASHxor] = ACTIONS(325), - [anon_sym_bit_DASHor] = ACTIONS(327), - [anon_sym_and] = ACTIONS(329), - [anon_sym_xor] = ACTIONS(331), - [anon_sym_or] = ACTIONS(333), - [anon_sym_DOT_DOT_LT] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(335), - [anon_sym_DOT_DOT_EQ] = ACTIONS(335), - [anon_sym_ns] = ACTIONS(337), - [anon_sym_s] = ACTIONS(337), - [anon_sym_us] = ACTIONS(337), - [anon_sym_ms] = ACTIONS(337), - [anon_sym_sec] = ACTIONS(337), - [anon_sym_min] = ACTIONS(337), - [anon_sym_hr] = ACTIONS(337), - [anon_sym_day] = ACTIONS(337), - [anon_sym_wk] = ACTIONS(337), - [anon_sym_b] = ACTIONS(339), - [anon_sym_B] = ACTIONS(339), - [anon_sym_kb] = ACTIONS(339), - [anon_sym_kB] = ACTIONS(339), - [anon_sym_Kb] = ACTIONS(339), - [anon_sym_KB] = ACTIONS(339), - [anon_sym_mb] = ACTIONS(339), - [anon_sym_mB] = ACTIONS(339), - [anon_sym_Mb] = ACTIONS(339), - [anon_sym_MB] = ACTIONS(339), - [anon_sym_gb] = ACTIONS(339), - [anon_sym_gB] = ACTIONS(339), - [anon_sym_Gb] = ACTIONS(339), - [anon_sym_GB] = ACTIONS(339), - [anon_sym_tb] = ACTIONS(339), - [anon_sym_tB] = ACTIONS(339), - [anon_sym_Tb] = ACTIONS(339), - [anon_sym_TB] = ACTIONS(339), - [anon_sym_pb] = ACTIONS(339), - [anon_sym_pB] = ACTIONS(339), - [anon_sym_Pb] = ACTIONS(339), - [anon_sym_PB] = ACTIONS(339), - [anon_sym_eb] = ACTIONS(339), - [anon_sym_eB] = ACTIONS(339), - [anon_sym_Eb] = ACTIONS(339), - [anon_sym_EB] = ACTIONS(339), - [anon_sym_zb] = ACTIONS(339), - [anon_sym_zB] = ACTIONS(339), - [anon_sym_Zb] = ACTIONS(339), - [anon_sym_ZB] = ACTIONS(339), - [anon_sym_kib] = ACTIONS(339), - [anon_sym_kiB] = ACTIONS(339), - [anon_sym_kIB] = ACTIONS(339), - [anon_sym_kIb] = ACTIONS(339), - [anon_sym_Kib] = ACTIONS(339), - [anon_sym_KIb] = ACTIONS(339), - [anon_sym_KIB] = ACTIONS(339), - [anon_sym_mib] = ACTIONS(339), - [anon_sym_miB] = ACTIONS(339), - [anon_sym_mIB] = ACTIONS(339), - [anon_sym_mIb] = ACTIONS(339), - [anon_sym_Mib] = ACTIONS(339), - [anon_sym_MIb] = ACTIONS(339), - [anon_sym_MIB] = ACTIONS(339), - [anon_sym_gib] = ACTIONS(339), - [anon_sym_giB] = ACTIONS(339), - [anon_sym_gIB] = ACTIONS(339), - [anon_sym_gIb] = ACTIONS(339), - [anon_sym_Gib] = ACTIONS(339), - [anon_sym_GIb] = ACTIONS(339), - [anon_sym_GIB] = ACTIONS(339), - [anon_sym_tib] = ACTIONS(339), - [anon_sym_tiB] = ACTIONS(339), - [anon_sym_tIB] = ACTIONS(339), - [anon_sym_tIb] = ACTIONS(339), - [anon_sym_Tib] = ACTIONS(339), - [anon_sym_TIb] = ACTIONS(339), - [anon_sym_TIB] = ACTIONS(339), - [anon_sym_pib] = ACTIONS(339), - [anon_sym_piB] = ACTIONS(339), - [anon_sym_pIB] = ACTIONS(339), - [anon_sym_pIb] = ACTIONS(339), - [anon_sym_Pib] = ACTIONS(339), - [anon_sym_PIb] = ACTIONS(339), - [anon_sym_PIB] = ACTIONS(339), - [anon_sym_eib] = ACTIONS(339), - [anon_sym_eiB] = ACTIONS(339), - [anon_sym_eIB] = ACTIONS(339), - [anon_sym_eIb] = ACTIONS(339), - [anon_sym_Eib] = ACTIONS(339), - [anon_sym_EIb] = ACTIONS(339), - [anon_sym_EIB] = ACTIONS(339), - [anon_sym_zib] = ACTIONS(339), - [anon_sym_ziB] = ACTIONS(339), - [anon_sym_zIB] = ACTIONS(339), - [anon_sym_zIb] = ACTIONS(339), - [anon_sym_Zib] = ACTIONS(339), - [anon_sym_ZIb] = ACTIONS(339), - [anon_sym_ZIB] = ACTIONS(339), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(145), }, - [93] = { - [sym_cell_path] = STATE(2406), - [sym_path] = STATE(1929), - [sym_comment] = STATE(93), - [ts_builtin_sym_end] = ACTIONS(303), - [anon_sym_SEMI] = ACTIONS(301), - [anon_sym_LF] = ACTIONS(303), - [anon_sym_PIPE] = ACTIONS(301), - [anon_sym_GT] = ACTIONS(341), - [anon_sym_DASH] = ACTIONS(343), - [anon_sym_in] = ACTIONS(345), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(349), - [anon_sym_QMARK2] = ACTIONS(351), - [anon_sym_STAR_STAR] = ACTIONS(353), - [anon_sym_PLUS_PLUS] = ACTIONS(353), - [anon_sym_SLASH] = ACTIONS(349), - [anon_sym_mod] = ACTIONS(349), - [anon_sym_SLASH_SLASH] = ACTIONS(349), - [anon_sym_PLUS] = ACTIONS(343), - [anon_sym_bit_DASHshl] = ACTIONS(355), - [anon_sym_bit_DASHshr] = ACTIONS(355), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_LT2] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_not_DASHin] = ACTIONS(345), - [anon_sym_starts_DASHwith] = ACTIONS(345), - [anon_sym_ends_DASHwith] = ACTIONS(345), - [anon_sym_EQ_TILDE] = ACTIONS(357), - [anon_sym_BANG_TILDE] = ACTIONS(357), - [anon_sym_bit_DASHand] = ACTIONS(359), - [anon_sym_bit_DASHxor] = ACTIONS(361), - [anon_sym_bit_DASHor] = ACTIONS(363), - [anon_sym_and] = ACTIONS(365), - [anon_sym_xor] = ACTIONS(367), - [anon_sym_or] = ACTIONS(369), - [anon_sym_DOT_DOT_LT] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_ns] = ACTIONS(373), - [anon_sym_s] = ACTIONS(373), - [anon_sym_us] = ACTIONS(373), - [anon_sym_ms] = ACTIONS(373), - [anon_sym_sec] = ACTIONS(373), - [anon_sym_min] = ACTIONS(373), - [anon_sym_hr] = ACTIONS(373), - [anon_sym_day] = ACTIONS(373), - [anon_sym_wk] = ACTIONS(373), - [anon_sym_b] = ACTIONS(375), - [anon_sym_B] = ACTIONS(375), - [anon_sym_kb] = ACTIONS(375), - [anon_sym_kB] = ACTIONS(375), - [anon_sym_Kb] = ACTIONS(375), - [anon_sym_KB] = ACTIONS(375), - [anon_sym_mb] = ACTIONS(375), - [anon_sym_mB] = ACTIONS(375), - [anon_sym_Mb] = ACTIONS(375), - [anon_sym_MB] = ACTIONS(375), - [anon_sym_gb] = ACTIONS(375), - [anon_sym_gB] = ACTIONS(375), - [anon_sym_Gb] = ACTIONS(375), - [anon_sym_GB] = ACTIONS(375), - [anon_sym_tb] = ACTIONS(375), - [anon_sym_tB] = ACTIONS(375), - [anon_sym_Tb] = ACTIONS(375), - [anon_sym_TB] = ACTIONS(375), - [anon_sym_pb] = ACTIONS(375), - [anon_sym_pB] = ACTIONS(375), - [anon_sym_Pb] = ACTIONS(375), - [anon_sym_PB] = ACTIONS(375), - [anon_sym_eb] = ACTIONS(375), - [anon_sym_eB] = ACTIONS(375), - [anon_sym_Eb] = ACTIONS(375), - [anon_sym_EB] = ACTIONS(375), - [anon_sym_zb] = ACTIONS(375), - [anon_sym_zB] = ACTIONS(375), - [anon_sym_Zb] = ACTIONS(375), - [anon_sym_ZB] = ACTIONS(375), - [anon_sym_kib] = ACTIONS(375), - [anon_sym_kiB] = ACTIONS(375), - [anon_sym_kIB] = ACTIONS(375), - [anon_sym_kIb] = ACTIONS(375), - [anon_sym_Kib] = ACTIONS(375), - [anon_sym_KIb] = ACTIONS(375), - [anon_sym_KIB] = ACTIONS(375), - [anon_sym_mib] = ACTIONS(375), - [anon_sym_miB] = ACTIONS(375), - [anon_sym_mIB] = ACTIONS(375), - [anon_sym_mIb] = ACTIONS(375), - [anon_sym_Mib] = ACTIONS(375), - [anon_sym_MIb] = ACTIONS(375), - [anon_sym_MIB] = ACTIONS(375), - [anon_sym_gib] = ACTIONS(375), - [anon_sym_giB] = ACTIONS(375), - [anon_sym_gIB] = ACTIONS(375), - [anon_sym_gIb] = ACTIONS(375), - [anon_sym_Gib] = ACTIONS(375), - [anon_sym_GIb] = ACTIONS(375), - [anon_sym_GIB] = ACTIONS(375), - [anon_sym_tib] = ACTIONS(375), - [anon_sym_tiB] = ACTIONS(375), - [anon_sym_tIB] = ACTIONS(375), - [anon_sym_tIb] = ACTIONS(375), - [anon_sym_Tib] = ACTIONS(375), - [anon_sym_TIb] = ACTIONS(375), - [anon_sym_TIB] = ACTIONS(375), - [anon_sym_pib] = ACTIONS(375), - [anon_sym_piB] = ACTIONS(375), - [anon_sym_pIB] = ACTIONS(375), - [anon_sym_pIb] = ACTIONS(375), - [anon_sym_Pib] = ACTIONS(375), - [anon_sym_PIb] = ACTIONS(375), - [anon_sym_PIB] = ACTIONS(375), - [anon_sym_eib] = ACTIONS(375), - [anon_sym_eiB] = ACTIONS(375), - [anon_sym_eIB] = ACTIONS(375), - [anon_sym_eIb] = ACTIONS(375), - [anon_sym_Eib] = ACTIONS(375), - [anon_sym_EIb] = ACTIONS(375), - [anon_sym_EIB] = ACTIONS(375), - [anon_sym_zib] = ACTIONS(375), - [anon_sym_ziB] = ACTIONS(375), - [anon_sym_zIB] = ACTIONS(375), - [anon_sym_zIb] = ACTIONS(375), - [anon_sym_Zib] = ACTIONS(375), - [anon_sym_ZIb] = ACTIONS(375), - [anon_sym_ZIB] = ACTIONS(375), - [anon_sym_POUND] = ACTIONS(3), - }, - [94] = { - [sym_comment] = STATE(94), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), + [91] = { + [sym_comment] = STATE(91), + [sym_identifier] = ACTIONS(103), + [anon_sym_COLON] = ACTIONS(105), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACK] = ACTIONS(105), + [anon_sym_RPAREN] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), + [anon_sym_DOLLAR] = ACTIONS(105), [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DASH_DASH] = ACTIONS(105), [anon_sym_DASH] = ACTIONS(103), [anon_sym_in] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(103), [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(105), + [anon_sym_bit_DASHshr] = ACTIONS(105), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ] = ACTIONS(105), [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(105), + [anon_sym_GT_EQ] = ACTIONS(105), + [anon_sym_not_DASHin] = ACTIONS(105), + [anon_sym_starts_DASHwith] = ACTIONS(105), + [anon_sym_ends_DASHwith] = ACTIONS(105), + [anon_sym_EQ_TILDE] = ACTIONS(105), + [anon_sym_BANG_TILDE] = ACTIONS(105), + [anon_sym_bit_DASHand] = ACTIONS(105), + [anon_sym_bit_DASHxor] = ACTIONS(105), + [anon_sym_bit_DASHor] = ACTIONS(105), [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(377), - [anon_sym_ns] = ACTIONS(379), - [anon_sym_s] = ACTIONS(379), - [anon_sym_us] = ACTIONS(379), - [anon_sym_ms] = ACTIONS(379), - [anon_sym_sec] = ACTIONS(379), - [anon_sym_min] = ACTIONS(379), - [anon_sym_hr] = ACTIONS(379), - [anon_sym_day] = ACTIONS(379), - [anon_sym_wk] = ACTIONS(379), - [anon_sym_b] = ACTIONS(381), - [anon_sym_B] = ACTIONS(381), - [anon_sym_kb] = ACTIONS(381), - [anon_sym_kB] = ACTIONS(381), - [anon_sym_Kb] = ACTIONS(381), - [anon_sym_KB] = ACTIONS(381), - [anon_sym_mb] = ACTIONS(381), - [anon_sym_mB] = ACTIONS(381), - [anon_sym_Mb] = ACTIONS(381), - [anon_sym_MB] = ACTIONS(381), - [anon_sym_gb] = ACTIONS(381), - [anon_sym_gB] = ACTIONS(381), - [anon_sym_Gb] = ACTIONS(381), - [anon_sym_GB] = ACTIONS(381), - [anon_sym_tb] = ACTIONS(381), - [anon_sym_tB] = ACTIONS(381), - [anon_sym_Tb] = ACTIONS(381), - [anon_sym_TB] = ACTIONS(381), - [anon_sym_pb] = ACTIONS(381), - [anon_sym_pB] = ACTIONS(381), - [anon_sym_Pb] = ACTIONS(381), - [anon_sym_PB] = ACTIONS(381), - [anon_sym_eb] = ACTIONS(381), - [anon_sym_eB] = ACTIONS(381), - [anon_sym_Eb] = ACTIONS(381), - [anon_sym_EB] = ACTIONS(381), - [anon_sym_zb] = ACTIONS(381), - [anon_sym_zB] = ACTIONS(381), - [anon_sym_Zb] = ACTIONS(381), - [anon_sym_ZB] = ACTIONS(381), - [anon_sym_kib] = ACTIONS(381), - [anon_sym_kiB] = ACTIONS(381), - [anon_sym_kIB] = ACTIONS(381), - [anon_sym_kIb] = ACTIONS(381), - [anon_sym_Kib] = ACTIONS(381), - [anon_sym_KIb] = ACTIONS(381), - [anon_sym_KIB] = ACTIONS(381), - [anon_sym_mib] = ACTIONS(381), - [anon_sym_miB] = ACTIONS(381), - [anon_sym_mIB] = ACTIONS(381), - [anon_sym_mIb] = ACTIONS(381), - [anon_sym_Mib] = ACTIONS(381), - [anon_sym_MIb] = ACTIONS(381), - [anon_sym_MIB] = ACTIONS(381), - [anon_sym_gib] = ACTIONS(381), - [anon_sym_giB] = ACTIONS(381), - [anon_sym_gIB] = ACTIONS(381), - [anon_sym_gIb] = ACTIONS(381), - [anon_sym_Gib] = ACTIONS(381), - [anon_sym_GIb] = ACTIONS(381), - [anon_sym_GIB] = ACTIONS(381), - [anon_sym_tib] = ACTIONS(381), - [anon_sym_tiB] = ACTIONS(381), - [anon_sym_tIB] = ACTIONS(381), - [anon_sym_tIb] = ACTIONS(381), - [anon_sym_Tib] = ACTIONS(381), - [anon_sym_TIb] = ACTIONS(381), - [anon_sym_TIB] = ACTIONS(381), - [anon_sym_pib] = ACTIONS(381), - [anon_sym_piB] = ACTIONS(381), - [anon_sym_pIB] = ACTIONS(381), - [anon_sym_pIb] = ACTIONS(381), - [anon_sym_Pib] = ACTIONS(381), - [anon_sym_PIb] = ACTIONS(381), - [anon_sym_PIB] = ACTIONS(381), - [anon_sym_eib] = ACTIONS(381), - [anon_sym_eiB] = ACTIONS(381), - [anon_sym_eIB] = ACTIONS(381), - [anon_sym_eIb] = ACTIONS(381), - [anon_sym_Eib] = ACTIONS(381), - [anon_sym_EIb] = ACTIONS(381), - [anon_sym_EIB] = ACTIONS(381), - [anon_sym_zib] = ACTIONS(381), - [anon_sym_ziB] = ACTIONS(381), - [anon_sym_zIB] = ACTIONS(381), - [anon_sym_zIb] = ACTIONS(381), - [anon_sym_Zib] = ACTIONS(381), - [anon_sym_ZIb] = ACTIONS(381), - [anon_sym_ZIB] = ACTIONS(381), - [sym_short_flag] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(301), + [anon_sym_DOT_DOT] = ACTIONS(303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(301), + [anon_sym_ns] = ACTIONS(305), + [anon_sym_s] = ACTIONS(305), + [anon_sym_us] = ACTIONS(305), + [anon_sym_ms] = ACTIONS(305), + [anon_sym_sec] = ACTIONS(305), + [anon_sym_min] = ACTIONS(305), + [anon_sym_hr] = ACTIONS(305), + [anon_sym_day] = ACTIONS(305), + [anon_sym_wk] = ACTIONS(305), + [anon_sym_b] = ACTIONS(307), + [anon_sym_B] = ACTIONS(307), + [anon_sym_kb] = ACTIONS(307), + [anon_sym_kB] = ACTIONS(307), + [anon_sym_Kb] = ACTIONS(307), + [anon_sym_KB] = ACTIONS(307), + [anon_sym_mb] = ACTIONS(307), + [anon_sym_mB] = ACTIONS(307), + [anon_sym_Mb] = ACTIONS(307), + [anon_sym_MB] = ACTIONS(307), + [anon_sym_gb] = ACTIONS(307), + [anon_sym_gB] = ACTIONS(307), + [anon_sym_Gb] = ACTIONS(307), + [anon_sym_GB] = ACTIONS(307), + [anon_sym_tb] = ACTIONS(307), + [anon_sym_tB] = ACTIONS(307), + [anon_sym_Tb] = ACTIONS(307), + [anon_sym_TB] = ACTIONS(307), + [anon_sym_pb] = ACTIONS(307), + [anon_sym_pB] = ACTIONS(307), + [anon_sym_Pb] = ACTIONS(307), + [anon_sym_PB] = ACTIONS(307), + [anon_sym_eb] = ACTIONS(307), + [anon_sym_eB] = ACTIONS(307), + [anon_sym_Eb] = ACTIONS(307), + [anon_sym_EB] = ACTIONS(307), + [anon_sym_zb] = ACTIONS(307), + [anon_sym_zB] = ACTIONS(307), + [anon_sym_Zb] = ACTIONS(307), + [anon_sym_ZB] = ACTIONS(307), + [anon_sym_kib] = ACTIONS(307), + [anon_sym_kiB] = ACTIONS(307), + [anon_sym_kIB] = ACTIONS(307), + [anon_sym_kIb] = ACTIONS(307), + [anon_sym_Kib] = ACTIONS(307), + [anon_sym_KIb] = ACTIONS(307), + [anon_sym_KIB] = ACTIONS(307), + [anon_sym_mib] = ACTIONS(307), + [anon_sym_miB] = ACTIONS(307), + [anon_sym_mIB] = ACTIONS(307), + [anon_sym_mIb] = ACTIONS(307), + [anon_sym_Mib] = ACTIONS(307), + [anon_sym_MIb] = ACTIONS(307), + [anon_sym_MIB] = ACTIONS(307), + [anon_sym_gib] = ACTIONS(307), + [anon_sym_giB] = ACTIONS(307), + [anon_sym_gIB] = ACTIONS(307), + [anon_sym_gIb] = ACTIONS(307), + [anon_sym_Gib] = ACTIONS(307), + [anon_sym_GIb] = ACTIONS(307), + [anon_sym_GIB] = ACTIONS(307), + [anon_sym_tib] = ACTIONS(307), + [anon_sym_tiB] = ACTIONS(307), + [anon_sym_tIB] = ACTIONS(307), + [anon_sym_tIb] = ACTIONS(307), + [anon_sym_Tib] = ACTIONS(307), + [anon_sym_TIb] = ACTIONS(307), + [anon_sym_TIB] = ACTIONS(307), + [anon_sym_pib] = ACTIONS(307), + [anon_sym_piB] = ACTIONS(307), + [anon_sym_pIB] = ACTIONS(307), + [anon_sym_pIb] = ACTIONS(307), + [anon_sym_Pib] = ACTIONS(307), + [anon_sym_PIb] = ACTIONS(307), + [anon_sym_PIB] = ACTIONS(307), + [anon_sym_eib] = ACTIONS(307), + [anon_sym_eiB] = ACTIONS(307), + [anon_sym_eIB] = ACTIONS(307), + [anon_sym_eIb] = ACTIONS(307), + [anon_sym_Eib] = ACTIONS(307), + [anon_sym_EIb] = ACTIONS(307), + [anon_sym_EIB] = ACTIONS(307), + [anon_sym_zib] = ACTIONS(307), + [anon_sym_ziB] = ACTIONS(307), + [anon_sym_zIB] = ACTIONS(307), + [anon_sym_zIb] = ACTIONS(307), + [anon_sym_Zib] = ACTIONS(307), + [anon_sym_ZIb] = ACTIONS(307), + [anon_sym_ZIB] = ACTIONS(307), + [anon_sym_POUND] = ACTIONS(145), + }, + [92] = { + [sym_cell_path] = STATE(2174), + [sym_path] = STATE(1793), + [sym_comment] = STATE(92), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_DASH] = ACTIONS(315), + [anon_sym_in] = ACTIONS(317), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_DOT] = ACTIONS(319), + [anon_sym_STAR] = ACTIONS(321), + [anon_sym_QMARK2] = ACTIONS(323), + [anon_sym_STAR_STAR] = ACTIONS(325), + [anon_sym_PLUS_PLUS] = ACTIONS(325), + [anon_sym_SLASH] = ACTIONS(321), + [anon_sym_mod] = ACTIONS(321), + [anon_sym_SLASH_SLASH] = ACTIONS(321), + [anon_sym_PLUS] = ACTIONS(315), + [anon_sym_bit_DASHshl] = ACTIONS(327), + [anon_sym_bit_DASHshr] = ACTIONS(327), + [anon_sym_EQ_EQ] = ACTIONS(313), + [anon_sym_BANG_EQ] = ACTIONS(313), + [anon_sym_LT2] = ACTIONS(313), + [anon_sym_LT_EQ] = ACTIONS(313), + [anon_sym_GT_EQ] = ACTIONS(313), + [anon_sym_not_DASHin] = ACTIONS(317), + [anon_sym_starts_DASHwith] = ACTIONS(317), + [anon_sym_ends_DASHwith] = ACTIONS(317), + [anon_sym_EQ_TILDE] = ACTIONS(329), + [anon_sym_BANG_TILDE] = ACTIONS(329), + [anon_sym_bit_DASHand] = ACTIONS(331), + [anon_sym_bit_DASHxor] = ACTIONS(333), + [anon_sym_bit_DASHor] = ACTIONS(335), + [anon_sym_and] = ACTIONS(337), + [anon_sym_xor] = ACTIONS(339), + [anon_sym_or] = ACTIONS(341), + [anon_sym_DOT_DOT_LT] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(343), + [anon_sym_ns] = ACTIONS(345), + [anon_sym_s] = ACTIONS(345), + [anon_sym_us] = ACTIONS(345), + [anon_sym_ms] = ACTIONS(345), + [anon_sym_sec] = ACTIONS(345), + [anon_sym_min] = ACTIONS(345), + [anon_sym_hr] = ACTIONS(345), + [anon_sym_day] = ACTIONS(345), + [anon_sym_wk] = ACTIONS(345), + [anon_sym_b] = ACTIONS(347), + [anon_sym_B] = ACTIONS(347), + [anon_sym_kb] = ACTIONS(347), + [anon_sym_kB] = ACTIONS(347), + [anon_sym_Kb] = ACTIONS(347), + [anon_sym_KB] = ACTIONS(347), + [anon_sym_mb] = ACTIONS(347), + [anon_sym_mB] = ACTIONS(347), + [anon_sym_Mb] = ACTIONS(347), + [anon_sym_MB] = ACTIONS(347), + [anon_sym_gb] = ACTIONS(347), + [anon_sym_gB] = ACTIONS(347), + [anon_sym_Gb] = ACTIONS(347), + [anon_sym_GB] = ACTIONS(347), + [anon_sym_tb] = ACTIONS(347), + [anon_sym_tB] = ACTIONS(347), + [anon_sym_Tb] = ACTIONS(347), + [anon_sym_TB] = ACTIONS(347), + [anon_sym_pb] = ACTIONS(347), + [anon_sym_pB] = ACTIONS(347), + [anon_sym_Pb] = ACTIONS(347), + [anon_sym_PB] = ACTIONS(347), + [anon_sym_eb] = ACTIONS(347), + [anon_sym_eB] = ACTIONS(347), + [anon_sym_Eb] = ACTIONS(347), + [anon_sym_EB] = ACTIONS(347), + [anon_sym_zb] = ACTIONS(347), + [anon_sym_zB] = ACTIONS(347), + [anon_sym_Zb] = ACTIONS(347), + [anon_sym_ZB] = ACTIONS(347), + [anon_sym_kib] = ACTIONS(347), + [anon_sym_kiB] = ACTIONS(347), + [anon_sym_kIB] = ACTIONS(347), + [anon_sym_kIb] = ACTIONS(347), + [anon_sym_Kib] = ACTIONS(347), + [anon_sym_KIb] = ACTIONS(347), + [anon_sym_KIB] = ACTIONS(347), + [anon_sym_mib] = ACTIONS(347), + [anon_sym_miB] = ACTIONS(347), + [anon_sym_mIB] = ACTIONS(347), + [anon_sym_mIb] = ACTIONS(347), + [anon_sym_Mib] = ACTIONS(347), + [anon_sym_MIb] = ACTIONS(347), + [anon_sym_MIB] = ACTIONS(347), + [anon_sym_gib] = ACTIONS(347), + [anon_sym_giB] = ACTIONS(347), + [anon_sym_gIB] = ACTIONS(347), + [anon_sym_gIb] = ACTIONS(347), + [anon_sym_Gib] = ACTIONS(347), + [anon_sym_GIb] = ACTIONS(347), + [anon_sym_GIB] = ACTIONS(347), + [anon_sym_tib] = ACTIONS(347), + [anon_sym_tiB] = ACTIONS(347), + [anon_sym_tIB] = ACTIONS(347), + [anon_sym_tIb] = ACTIONS(347), + [anon_sym_Tib] = ACTIONS(347), + [anon_sym_TIb] = ACTIONS(347), + [anon_sym_TIB] = ACTIONS(347), + [anon_sym_pib] = ACTIONS(347), + [anon_sym_piB] = ACTIONS(347), + [anon_sym_pIB] = ACTIONS(347), + [anon_sym_pIb] = ACTIONS(347), + [anon_sym_Pib] = ACTIONS(347), + [anon_sym_PIb] = ACTIONS(347), + [anon_sym_PIB] = ACTIONS(347), + [anon_sym_eib] = ACTIONS(347), + [anon_sym_eiB] = ACTIONS(347), + [anon_sym_eIB] = ACTIONS(347), + [anon_sym_eIb] = ACTIONS(347), + [anon_sym_Eib] = ACTIONS(347), + [anon_sym_EIb] = ACTIONS(347), + [anon_sym_EIB] = ACTIONS(347), + [anon_sym_zib] = ACTIONS(347), + [anon_sym_ziB] = ACTIONS(347), + [anon_sym_zIB] = ACTIONS(347), + [anon_sym_zIb] = ACTIONS(347), + [anon_sym_Zib] = ACTIONS(347), + [anon_sym_ZIb] = ACTIONS(347), + [anon_sym_ZIB] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), }, - [95] = { - [sym_comment] = STATE(95), + [93] = { + [sym_cell_path] = STATE(2283), + [sym_path] = STATE(1844), + [sym_comment] = STATE(93), + [ts_builtin_sym_end] = ACTIONS(311), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LF] = ACTIONS(311), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(351), + [anon_sym_in] = ACTIONS(353), + [anon_sym_DOT] = ACTIONS(355), + [anon_sym_STAR] = ACTIONS(357), + [anon_sym_QMARK2] = ACTIONS(359), + [anon_sym_STAR_STAR] = ACTIONS(361), + [anon_sym_PLUS_PLUS] = ACTIONS(361), + [anon_sym_SLASH] = ACTIONS(357), + [anon_sym_mod] = ACTIONS(357), + [anon_sym_SLASH_SLASH] = ACTIONS(357), + [anon_sym_PLUS] = ACTIONS(351), + [anon_sym_bit_DASHshl] = ACTIONS(363), + [anon_sym_bit_DASHshr] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(349), + [anon_sym_BANG_EQ] = ACTIONS(349), + [anon_sym_LT2] = ACTIONS(349), + [anon_sym_LT_EQ] = ACTIONS(349), + [anon_sym_GT_EQ] = ACTIONS(349), + [anon_sym_not_DASHin] = ACTIONS(353), + [anon_sym_starts_DASHwith] = ACTIONS(353), + [anon_sym_ends_DASHwith] = ACTIONS(353), + [anon_sym_EQ_TILDE] = ACTIONS(365), + [anon_sym_BANG_TILDE] = ACTIONS(365), + [anon_sym_bit_DASHand] = ACTIONS(367), + [anon_sym_bit_DASHxor] = ACTIONS(369), + [anon_sym_bit_DASHor] = ACTIONS(371), + [anon_sym_and] = ACTIONS(373), + [anon_sym_xor] = ACTIONS(375), + [anon_sym_or] = ACTIONS(377), + [anon_sym_DOT_DOT_LT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_ns] = ACTIONS(381), + [anon_sym_s] = ACTIONS(381), + [anon_sym_us] = ACTIONS(381), + [anon_sym_ms] = ACTIONS(381), + [anon_sym_sec] = ACTIONS(381), + [anon_sym_min] = ACTIONS(381), + [anon_sym_hr] = ACTIONS(381), + [anon_sym_day] = ACTIONS(381), + [anon_sym_wk] = ACTIONS(381), + [anon_sym_b] = ACTIONS(383), + [anon_sym_B] = ACTIONS(383), + [anon_sym_kb] = ACTIONS(383), + [anon_sym_kB] = ACTIONS(383), + [anon_sym_Kb] = ACTIONS(383), + [anon_sym_KB] = ACTIONS(383), + [anon_sym_mb] = ACTIONS(383), + [anon_sym_mB] = ACTIONS(383), + [anon_sym_Mb] = ACTIONS(383), + [anon_sym_MB] = ACTIONS(383), + [anon_sym_gb] = ACTIONS(383), + [anon_sym_gB] = ACTIONS(383), + [anon_sym_Gb] = ACTIONS(383), + [anon_sym_GB] = ACTIONS(383), + [anon_sym_tb] = ACTIONS(383), + [anon_sym_tB] = ACTIONS(383), + [anon_sym_Tb] = ACTIONS(383), + [anon_sym_TB] = ACTIONS(383), + [anon_sym_pb] = ACTIONS(383), + [anon_sym_pB] = ACTIONS(383), + [anon_sym_Pb] = ACTIONS(383), + [anon_sym_PB] = ACTIONS(383), + [anon_sym_eb] = ACTIONS(383), + [anon_sym_eB] = ACTIONS(383), + [anon_sym_Eb] = ACTIONS(383), + [anon_sym_EB] = ACTIONS(383), + [anon_sym_zb] = ACTIONS(383), + [anon_sym_zB] = ACTIONS(383), + [anon_sym_Zb] = ACTIONS(383), + [anon_sym_ZB] = ACTIONS(383), + [anon_sym_kib] = ACTIONS(383), + [anon_sym_kiB] = ACTIONS(383), + [anon_sym_kIB] = ACTIONS(383), + [anon_sym_kIb] = ACTIONS(383), + [anon_sym_Kib] = ACTIONS(383), + [anon_sym_KIb] = ACTIONS(383), + [anon_sym_KIB] = ACTIONS(383), + [anon_sym_mib] = ACTIONS(383), + [anon_sym_miB] = ACTIONS(383), + [anon_sym_mIB] = ACTIONS(383), + [anon_sym_mIb] = ACTIONS(383), + [anon_sym_Mib] = ACTIONS(383), + [anon_sym_MIb] = ACTIONS(383), + [anon_sym_MIB] = ACTIONS(383), + [anon_sym_gib] = ACTIONS(383), + [anon_sym_giB] = ACTIONS(383), + [anon_sym_gIB] = ACTIONS(383), + [anon_sym_gIb] = ACTIONS(383), + [anon_sym_Gib] = ACTIONS(383), + [anon_sym_GIb] = ACTIONS(383), + [anon_sym_GIB] = ACTIONS(383), + [anon_sym_tib] = ACTIONS(383), + [anon_sym_tiB] = ACTIONS(383), + [anon_sym_tIB] = ACTIONS(383), + [anon_sym_tIb] = ACTIONS(383), + [anon_sym_Tib] = ACTIONS(383), + [anon_sym_TIb] = ACTIONS(383), + [anon_sym_TIB] = ACTIONS(383), + [anon_sym_pib] = ACTIONS(383), + [anon_sym_piB] = ACTIONS(383), + [anon_sym_pIB] = ACTIONS(383), + [anon_sym_pIb] = ACTIONS(383), + [anon_sym_Pib] = ACTIONS(383), + [anon_sym_PIb] = ACTIONS(383), + [anon_sym_PIB] = ACTIONS(383), + [anon_sym_eib] = ACTIONS(383), + [anon_sym_eiB] = ACTIONS(383), + [anon_sym_eIB] = ACTIONS(383), + [anon_sym_eIb] = ACTIONS(383), + [anon_sym_Eib] = ACTIONS(383), + [anon_sym_EIb] = ACTIONS(383), + [anon_sym_EIB] = ACTIONS(383), + [anon_sym_zib] = ACTIONS(383), + [anon_sym_ziB] = ACTIONS(383), + [anon_sym_zIB] = ACTIONS(383), + [anon_sym_zIb] = ACTIONS(383), + [anon_sym_Zib] = ACTIONS(383), + [anon_sym_ZIb] = ACTIONS(383), + [anon_sym_ZIB] = ACTIONS(383), + [anon_sym_POUND] = ACTIONS(3), + }, + [94] = { + [sym_comment] = STATE(94), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), [anon_sym_RPAREN] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(113), [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), [anon_sym_DASH] = ACTIONS(113), [anon_sym_in] = ACTIONS(113), [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_QMARK2] = ACTIONS(113), [anon_sym_STAR_STAR] = ACTIONS(113), [anon_sym_PLUS_PLUS] = ACTIONS(113), [anon_sym_SLASH] = ACTIONS(113), @@ -53011,20 +52957,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(113), [anon_sym_ZIb] = ACTIONS(113), [anon_sym_ZIB] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [96] = { - [sym_comment] = STATE(96), + [95] = { + [sym_comment] = STATE(95), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), [anon_sym_RPAREN] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(113), [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH_DASH] = ACTIONS(113), [anon_sym_DASH] = ACTIONS(113), [anon_sym_in] = ACTIONS(113), [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(113), + [anon_sym_QMARK2] = ACTIONS(113), [anon_sym_STAR_STAR] = ACTIONS(113), [anon_sym_PLUS_PLUS] = ACTIONS(113), [anon_sym_SLASH] = ACTIONS(113), @@ -53140,11 +53088,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(113), [anon_sym_ZIb] = ACTIONS(113), [anon_sym_ZIB] = ACTIONS(113), - [sym_short_flag] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [96] = { + [sym_comment] = STATE(96), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_EQ] = ACTIONS(385), + [anon_sym_ns] = ACTIONS(387), + [anon_sym_s] = ACTIONS(387), + [anon_sym_us] = ACTIONS(387), + [anon_sym_ms] = ACTIONS(387), + [anon_sym_sec] = ACTIONS(387), + [anon_sym_min] = ACTIONS(387), + [anon_sym_hr] = ACTIONS(387), + [anon_sym_day] = ACTIONS(387), + [anon_sym_wk] = ACTIONS(387), + [anon_sym_b] = ACTIONS(389), + [anon_sym_B] = ACTIONS(389), + [anon_sym_kb] = ACTIONS(389), + [anon_sym_kB] = ACTIONS(389), + [anon_sym_Kb] = ACTIONS(389), + [anon_sym_KB] = ACTIONS(389), + [anon_sym_mb] = ACTIONS(389), + [anon_sym_mB] = ACTIONS(389), + [anon_sym_Mb] = ACTIONS(389), + [anon_sym_MB] = ACTIONS(389), + [anon_sym_gb] = ACTIONS(389), + [anon_sym_gB] = ACTIONS(389), + [anon_sym_Gb] = ACTIONS(389), + [anon_sym_GB] = ACTIONS(389), + [anon_sym_tb] = ACTIONS(389), + [anon_sym_tB] = ACTIONS(389), + [anon_sym_Tb] = ACTIONS(389), + [anon_sym_TB] = ACTIONS(389), + [anon_sym_pb] = ACTIONS(389), + [anon_sym_pB] = ACTIONS(389), + [anon_sym_Pb] = ACTIONS(389), + [anon_sym_PB] = ACTIONS(389), + [anon_sym_eb] = ACTIONS(389), + [anon_sym_eB] = ACTIONS(389), + [anon_sym_Eb] = ACTIONS(389), + [anon_sym_EB] = ACTIONS(389), + [anon_sym_zb] = ACTIONS(389), + [anon_sym_zB] = ACTIONS(389), + [anon_sym_Zb] = ACTIONS(389), + [anon_sym_ZB] = ACTIONS(389), + [anon_sym_kib] = ACTIONS(389), + [anon_sym_kiB] = ACTIONS(389), + [anon_sym_kIB] = ACTIONS(389), + [anon_sym_kIb] = ACTIONS(389), + [anon_sym_Kib] = ACTIONS(389), + [anon_sym_KIb] = ACTIONS(389), + [anon_sym_KIB] = ACTIONS(389), + [anon_sym_mib] = ACTIONS(389), + [anon_sym_miB] = ACTIONS(389), + [anon_sym_mIB] = ACTIONS(389), + [anon_sym_mIb] = ACTIONS(389), + [anon_sym_Mib] = ACTIONS(389), + [anon_sym_MIb] = ACTIONS(389), + [anon_sym_MIB] = ACTIONS(389), + [anon_sym_gib] = ACTIONS(389), + [anon_sym_giB] = ACTIONS(389), + [anon_sym_gIB] = ACTIONS(389), + [anon_sym_gIb] = ACTIONS(389), + [anon_sym_Gib] = ACTIONS(389), + [anon_sym_GIb] = ACTIONS(389), + [anon_sym_GIB] = ACTIONS(389), + [anon_sym_tib] = ACTIONS(389), + [anon_sym_tiB] = ACTIONS(389), + [anon_sym_tIB] = ACTIONS(389), + [anon_sym_tIb] = ACTIONS(389), + [anon_sym_Tib] = ACTIONS(389), + [anon_sym_TIb] = ACTIONS(389), + [anon_sym_TIB] = ACTIONS(389), + [anon_sym_pib] = ACTIONS(389), + [anon_sym_piB] = ACTIONS(389), + [anon_sym_pIB] = ACTIONS(389), + [anon_sym_pIb] = ACTIONS(389), + [anon_sym_Pib] = ACTIONS(389), + [anon_sym_PIb] = ACTIONS(389), + [anon_sym_PIB] = ACTIONS(389), + [anon_sym_eib] = ACTIONS(389), + [anon_sym_eiB] = ACTIONS(389), + [anon_sym_eIB] = ACTIONS(389), + [anon_sym_eIb] = ACTIONS(389), + [anon_sym_Eib] = ACTIONS(389), + [anon_sym_EIb] = ACTIONS(389), + [anon_sym_EIB] = ACTIONS(389), + [anon_sym_zib] = ACTIONS(389), + [anon_sym_ziB] = ACTIONS(389), + [anon_sym_zIB] = ACTIONS(389), + [anon_sym_zIb] = ACTIONS(389), + [anon_sym_Zib] = ACTIONS(389), + [anon_sym_ZIb] = ACTIONS(389), + [anon_sym_ZIB] = ACTIONS(389), + [sym_short_flag] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, [97] = { [sym_comment] = STATE(97), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_ns] = ACTIONS(393), + [anon_sym_s] = ACTIONS(393), + [anon_sym_us] = ACTIONS(393), + [anon_sym_ms] = ACTIONS(393), + [anon_sym_sec] = ACTIONS(393), + [anon_sym_min] = ACTIONS(393), + [anon_sym_hr] = ACTIONS(393), + [anon_sym_day] = ACTIONS(393), + [anon_sym_wk] = ACTIONS(393), + [anon_sym_b] = ACTIONS(395), + [anon_sym_B] = ACTIONS(395), + [anon_sym_kb] = ACTIONS(395), + [anon_sym_kB] = ACTIONS(395), + [anon_sym_Kb] = ACTIONS(395), + [anon_sym_KB] = ACTIONS(395), + [anon_sym_mb] = ACTIONS(395), + [anon_sym_mB] = ACTIONS(395), + [anon_sym_Mb] = ACTIONS(395), + [anon_sym_MB] = ACTIONS(395), + [anon_sym_gb] = ACTIONS(395), + [anon_sym_gB] = ACTIONS(395), + [anon_sym_Gb] = ACTIONS(395), + [anon_sym_GB] = ACTIONS(395), + [anon_sym_tb] = ACTIONS(395), + [anon_sym_tB] = ACTIONS(395), + [anon_sym_Tb] = ACTIONS(395), + [anon_sym_TB] = ACTIONS(395), + [anon_sym_pb] = ACTIONS(395), + [anon_sym_pB] = ACTIONS(395), + [anon_sym_Pb] = ACTIONS(395), + [anon_sym_PB] = ACTIONS(395), + [anon_sym_eb] = ACTIONS(395), + [anon_sym_eB] = ACTIONS(395), + [anon_sym_Eb] = ACTIONS(395), + [anon_sym_EB] = ACTIONS(395), + [anon_sym_zb] = ACTIONS(395), + [anon_sym_zB] = ACTIONS(395), + [anon_sym_Zb] = ACTIONS(395), + [anon_sym_ZB] = ACTIONS(395), + [anon_sym_kib] = ACTIONS(395), + [anon_sym_kiB] = ACTIONS(395), + [anon_sym_kIB] = ACTIONS(395), + [anon_sym_kIb] = ACTIONS(395), + [anon_sym_Kib] = ACTIONS(395), + [anon_sym_KIb] = ACTIONS(395), + [anon_sym_KIB] = ACTIONS(395), + [anon_sym_mib] = ACTIONS(395), + [anon_sym_miB] = ACTIONS(395), + [anon_sym_mIB] = ACTIONS(395), + [anon_sym_mIb] = ACTIONS(395), + [anon_sym_Mib] = ACTIONS(395), + [anon_sym_MIb] = ACTIONS(395), + [anon_sym_MIB] = ACTIONS(395), + [anon_sym_gib] = ACTIONS(395), + [anon_sym_giB] = ACTIONS(395), + [anon_sym_gIB] = ACTIONS(395), + [anon_sym_gIb] = ACTIONS(395), + [anon_sym_Gib] = ACTIONS(395), + [anon_sym_GIb] = ACTIONS(395), + [anon_sym_GIB] = ACTIONS(395), + [anon_sym_tib] = ACTIONS(395), + [anon_sym_tiB] = ACTIONS(395), + [anon_sym_tIB] = ACTIONS(395), + [anon_sym_tIb] = ACTIONS(395), + [anon_sym_Tib] = ACTIONS(395), + [anon_sym_TIb] = ACTIONS(395), + [anon_sym_TIB] = ACTIONS(395), + [anon_sym_pib] = ACTIONS(395), + [anon_sym_piB] = ACTIONS(395), + [anon_sym_pIB] = ACTIONS(395), + [anon_sym_pIb] = ACTIONS(395), + [anon_sym_Pib] = ACTIONS(395), + [anon_sym_PIb] = ACTIONS(395), + [anon_sym_PIB] = ACTIONS(395), + [anon_sym_eib] = ACTIONS(395), + [anon_sym_eiB] = ACTIONS(395), + [anon_sym_eIB] = ACTIONS(395), + [anon_sym_eIb] = ACTIONS(395), + [anon_sym_Eib] = ACTIONS(395), + [anon_sym_EIb] = ACTIONS(395), + [anon_sym_EIB] = ACTIONS(395), + [anon_sym_zib] = ACTIONS(395), + [anon_sym_ziB] = ACTIONS(395), + [anon_sym_zIB] = ACTIONS(395), + [anon_sym_zIb] = ACTIONS(395), + [anon_sym_Zib] = ACTIONS(395), + [anon_sym_ZIb] = ACTIONS(395), + [anon_sym_ZIB] = ACTIONS(395), + [sym_short_flag] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [98] = { + [sym_comment] = STATE(98), [sym_identifier] = ACTIONS(113), [anon_sym_COMMA] = ACTIONS(115), [anon_sym_GT] = ACTIONS(113), @@ -53270,136 +53476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(115), [sym__str_single_quotes] = ACTIONS(115), [sym__str_back_ticks] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(143), - }, - [98] = { - [sym_comment] = STATE(98), - [anon_sym_COMMA] = ACTIONS(105), - [anon_sym_PIPE] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(105), - [anon_sym_in] = ACTIONS(105), - [anon_sym_if] = ACTIONS(105), - [anon_sym_LBRACE] = ACTIONS(105), - [anon_sym_RBRACE] = ACTIONS(105), - [anon_sym_EQ_GT] = ACTIONS(105), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(105), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(105), - [anon_sym_bit_DASHshr] = ACTIONS(105), - [anon_sym_EQ_EQ] = ACTIONS(105), - [anon_sym_BANG_EQ] = ACTIONS(105), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(105), - [anon_sym_GT_EQ] = ACTIONS(105), - [anon_sym_not_DASHin] = ACTIONS(105), - [anon_sym_starts_DASHwith] = ACTIONS(105), - [anon_sym_ends_DASHwith] = ACTIONS(105), - [anon_sym_EQ_TILDE] = ACTIONS(105), - [anon_sym_BANG_TILDE] = ACTIONS(105), - [anon_sym_bit_DASHand] = ACTIONS(105), - [anon_sym_bit_DASHxor] = ACTIONS(105), - [anon_sym_bit_DASHor] = ACTIONS(105), - [anon_sym_and] = ACTIONS(105), - [anon_sym_xor] = ACTIONS(105), - [anon_sym_or] = ACTIONS(105), - [anon_sym_DOT_DOT_LT] = ACTIONS(383), - [anon_sym_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT_EQ] = ACTIONS(383), - [anon_sym_ns] = ACTIONS(387), - [anon_sym_s] = ACTIONS(387), - [anon_sym_us] = ACTIONS(387), - [anon_sym_ms] = ACTIONS(387), - [anon_sym_sec] = ACTIONS(387), - [anon_sym_min] = ACTIONS(387), - [anon_sym_hr] = ACTIONS(387), - [anon_sym_day] = ACTIONS(387), - [anon_sym_wk] = ACTIONS(387), - [anon_sym_b] = ACTIONS(389), - [anon_sym_B] = ACTIONS(391), - [anon_sym_kb] = ACTIONS(391), - [anon_sym_kB] = ACTIONS(391), - [anon_sym_Kb] = ACTIONS(391), - [anon_sym_KB] = ACTIONS(391), - [anon_sym_mb] = ACTIONS(391), - [anon_sym_mB] = ACTIONS(391), - [anon_sym_Mb] = ACTIONS(391), - [anon_sym_MB] = ACTIONS(391), - [anon_sym_gb] = ACTIONS(391), - [anon_sym_gB] = ACTIONS(391), - [anon_sym_Gb] = ACTIONS(391), - [anon_sym_GB] = ACTIONS(391), - [anon_sym_tb] = ACTIONS(391), - [anon_sym_tB] = ACTIONS(391), - [anon_sym_Tb] = ACTIONS(391), - [anon_sym_TB] = ACTIONS(391), - [anon_sym_pb] = ACTIONS(391), - [anon_sym_pB] = ACTIONS(391), - [anon_sym_Pb] = ACTIONS(391), - [anon_sym_PB] = ACTIONS(391), - [anon_sym_eb] = ACTIONS(391), - [anon_sym_eB] = ACTIONS(391), - [anon_sym_Eb] = ACTIONS(391), - [anon_sym_EB] = ACTIONS(391), - [anon_sym_zb] = ACTIONS(391), - [anon_sym_zB] = ACTIONS(391), - [anon_sym_Zb] = ACTIONS(391), - [anon_sym_ZB] = ACTIONS(391), - [anon_sym_kib] = ACTIONS(391), - [anon_sym_kiB] = ACTIONS(391), - [anon_sym_kIB] = ACTIONS(391), - [anon_sym_kIb] = ACTIONS(391), - [anon_sym_Kib] = ACTIONS(391), - [anon_sym_KIb] = ACTIONS(391), - [anon_sym_KIB] = ACTIONS(391), - [anon_sym_mib] = ACTIONS(391), - [anon_sym_miB] = ACTIONS(391), - [anon_sym_mIB] = ACTIONS(391), - [anon_sym_mIb] = ACTIONS(391), - [anon_sym_Mib] = ACTIONS(391), - [anon_sym_MIb] = ACTIONS(391), - [anon_sym_MIB] = ACTIONS(391), - [anon_sym_gib] = ACTIONS(391), - [anon_sym_giB] = ACTIONS(391), - [anon_sym_gIB] = ACTIONS(391), - [anon_sym_gIb] = ACTIONS(391), - [anon_sym_Gib] = ACTIONS(391), - [anon_sym_GIb] = ACTIONS(391), - [anon_sym_GIB] = ACTIONS(391), - [anon_sym_tib] = ACTIONS(391), - [anon_sym_tiB] = ACTIONS(391), - [anon_sym_tIB] = ACTIONS(391), - [anon_sym_tIb] = ACTIONS(391), - [anon_sym_Tib] = ACTIONS(391), - [anon_sym_TIb] = ACTIONS(391), - [anon_sym_TIB] = ACTIONS(391), - [anon_sym_pib] = ACTIONS(391), - [anon_sym_piB] = ACTIONS(391), - [anon_sym_pIB] = ACTIONS(391), - [anon_sym_pIb] = ACTIONS(391), - [anon_sym_Pib] = ACTIONS(391), - [anon_sym_PIb] = ACTIONS(391), - [anon_sym_PIB] = ACTIONS(391), - [anon_sym_eib] = ACTIONS(391), - [anon_sym_eiB] = ACTIONS(391), - [anon_sym_eIB] = ACTIONS(391), - [anon_sym_eIb] = ACTIONS(391), - [anon_sym_Eib] = ACTIONS(391), - [anon_sym_EIb] = ACTIONS(391), - [anon_sym_EIB] = ACTIONS(391), - [anon_sym_zib] = ACTIONS(391), - [anon_sym_ziB] = ACTIONS(391), - [anon_sym_zIB] = ACTIONS(391), - [anon_sym_zIb] = ACTIONS(391), - [anon_sym_Zib] = ACTIONS(391), - [anon_sym_ZIb] = ACTIONS(391), - [anon_sym_ZIB] = ACTIONS(391), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [99] = { [sym_comment] = STATE(99), @@ -53532,146 +53609,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [100] = { [sym_comment] = STATE(100), - [ts_builtin_sym_end] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LF] = ACTIONS(115), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_in] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_QMARK2] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(113), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_bit_DASHshl] = ACTIONS(113), - [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(113), - [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(113), - [anon_sym_not_DASHin] = ACTIONS(113), - [anon_sym_starts_DASHwith] = ACTIONS(113), - [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(113), - [anon_sym_BANG_TILDE] = ACTIONS(113), - [anon_sym_bit_DASHand] = ACTIONS(113), - [anon_sym_bit_DASHxor] = ACTIONS(113), - [anon_sym_bit_DASHor] = ACTIONS(113), - [anon_sym_and] = ACTIONS(113), - [anon_sym_xor] = ACTIONS(113), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(113), - [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(113), - [anon_sym_ns] = ACTIONS(113), - [anon_sym_s] = ACTIONS(113), - [anon_sym_us] = ACTIONS(113), - [anon_sym_ms] = ACTIONS(113), - [anon_sym_sec] = ACTIONS(113), - [anon_sym_min] = ACTIONS(113), - [anon_sym_hr] = ACTIONS(113), - [anon_sym_day] = ACTIONS(113), - [anon_sym_wk] = ACTIONS(113), - [anon_sym_b] = ACTIONS(113), - [anon_sym_B] = ACTIONS(113), - [anon_sym_kb] = ACTIONS(113), - [anon_sym_kB] = ACTIONS(113), - [anon_sym_Kb] = ACTIONS(113), - [anon_sym_KB] = ACTIONS(113), - [anon_sym_mb] = ACTIONS(113), - [anon_sym_mB] = ACTIONS(113), - [anon_sym_Mb] = ACTIONS(113), - [anon_sym_MB] = ACTIONS(113), - [anon_sym_gb] = ACTIONS(113), - [anon_sym_gB] = ACTIONS(113), - [anon_sym_Gb] = ACTIONS(113), - [anon_sym_GB] = ACTIONS(113), - [anon_sym_tb] = ACTIONS(113), - [anon_sym_tB] = ACTIONS(113), - [anon_sym_Tb] = ACTIONS(113), - [anon_sym_TB] = ACTIONS(113), - [anon_sym_pb] = ACTIONS(113), - [anon_sym_pB] = ACTIONS(113), - [anon_sym_Pb] = ACTIONS(113), - [anon_sym_PB] = ACTIONS(113), - [anon_sym_eb] = ACTIONS(113), - [anon_sym_eB] = ACTIONS(113), - [anon_sym_Eb] = ACTIONS(113), - [anon_sym_EB] = ACTIONS(113), - [anon_sym_zb] = ACTIONS(113), - [anon_sym_zB] = ACTIONS(113), - [anon_sym_Zb] = ACTIONS(113), - [anon_sym_ZB] = ACTIONS(113), - [anon_sym_kib] = ACTIONS(113), - [anon_sym_kiB] = ACTIONS(113), - [anon_sym_kIB] = ACTIONS(113), - [anon_sym_kIb] = ACTIONS(113), - [anon_sym_Kib] = ACTIONS(113), - [anon_sym_KIb] = ACTIONS(113), - [anon_sym_KIB] = ACTIONS(113), - [anon_sym_mib] = ACTIONS(113), - [anon_sym_miB] = ACTIONS(113), - [anon_sym_mIB] = ACTIONS(113), - [anon_sym_mIb] = ACTIONS(113), - [anon_sym_Mib] = ACTIONS(113), - [anon_sym_MIb] = ACTIONS(113), - [anon_sym_MIB] = ACTIONS(113), - [anon_sym_gib] = ACTIONS(113), - [anon_sym_giB] = ACTIONS(113), - [anon_sym_gIB] = ACTIONS(113), - [anon_sym_gIb] = ACTIONS(113), - [anon_sym_Gib] = ACTIONS(113), - [anon_sym_GIb] = ACTIONS(113), - [anon_sym_GIB] = ACTIONS(113), - [anon_sym_tib] = ACTIONS(113), - [anon_sym_tiB] = ACTIONS(113), - [anon_sym_tIB] = ACTIONS(113), - [anon_sym_tIb] = ACTIONS(113), - [anon_sym_Tib] = ACTIONS(113), - [anon_sym_TIb] = ACTIONS(113), - [anon_sym_TIB] = ACTIONS(113), - [anon_sym_pib] = ACTIONS(113), - [anon_sym_piB] = ACTIONS(113), - [anon_sym_pIB] = ACTIONS(113), - [anon_sym_pIb] = ACTIONS(113), - [anon_sym_Pib] = ACTIONS(113), - [anon_sym_PIb] = ACTIONS(113), - [anon_sym_PIB] = ACTIONS(113), - [anon_sym_eib] = ACTIONS(113), - [anon_sym_eiB] = ACTIONS(113), - [anon_sym_eIB] = ACTIONS(113), - [anon_sym_eIb] = ACTIONS(113), - [anon_sym_Eib] = ACTIONS(113), - [anon_sym_EIb] = ACTIONS(113), - [anon_sym_EIB] = ACTIONS(113), - [anon_sym_zib] = ACTIONS(113), - [anon_sym_ziB] = ACTIONS(113), - [anon_sym_zIB] = ACTIONS(113), - [anon_sym_zIb] = ACTIONS(113), - [anon_sym_Zib] = ACTIONS(113), - [anon_sym_ZIb] = ACTIONS(113), - [anon_sym_ZIB] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(3), - }, - [101] = { - [sym_comment] = STATE(101), - [sym_identifier] = ACTIONS(103), [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_PIPE] = ACTIONS(105), [anon_sym_GT] = ACTIONS(103), [anon_sym_DASH] = ACTIONS(105), - [anon_sym_in] = ACTIONS(103), + [anon_sym_in] = ACTIONS(105), + [anon_sym_if] = ACTIONS(105), + [anon_sym_LBRACE] = ACTIONS(105), [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_EQ_GT] = ACTIONS(105), [anon_sym_STAR] = ACTIONS(103), [anon_sym_STAR_STAR] = ACTIONS(105), [anon_sym_PLUS_PLUS] = ACTIONS(105), [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(105), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_PLUS] = ACTIONS(103), [anon_sym_bit_DASHshl] = ACTIONS(105), @@ -53689,153 +53640,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand] = ACTIONS(105), [anon_sym_bit_DASHxor] = ACTIONS(105), [anon_sym_bit_DASHor] = ACTIONS(105), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(393), - [anon_sym_ns] = ACTIONS(397), - [anon_sym_s] = ACTIONS(397), - [anon_sym_us] = ACTIONS(397), - [anon_sym_ms] = ACTIONS(397), - [anon_sym_sec] = ACTIONS(397), - [anon_sym_min] = ACTIONS(397), - [anon_sym_hr] = ACTIONS(397), - [anon_sym_day] = ACTIONS(397), - [anon_sym_wk] = ACTIONS(397), - [anon_sym_b] = ACTIONS(399), - [anon_sym_B] = ACTIONS(399), - [anon_sym_kb] = ACTIONS(399), - [anon_sym_kB] = ACTIONS(399), - [anon_sym_Kb] = ACTIONS(399), - [anon_sym_KB] = ACTIONS(399), - [anon_sym_mb] = ACTIONS(399), - [anon_sym_mB] = ACTIONS(399), - [anon_sym_Mb] = ACTIONS(399), - [anon_sym_MB] = ACTIONS(399), - [anon_sym_gb] = ACTIONS(399), - [anon_sym_gB] = ACTIONS(399), - [anon_sym_Gb] = ACTIONS(399), - [anon_sym_GB] = ACTIONS(399), - [anon_sym_tb] = ACTIONS(399), - [anon_sym_tB] = ACTIONS(399), - [anon_sym_Tb] = ACTIONS(399), - [anon_sym_TB] = ACTIONS(399), - [anon_sym_pb] = ACTIONS(399), - [anon_sym_pB] = ACTIONS(399), - [anon_sym_Pb] = ACTIONS(399), - [anon_sym_PB] = ACTIONS(399), - [anon_sym_eb] = ACTIONS(399), - [anon_sym_eB] = ACTIONS(399), - [anon_sym_Eb] = ACTIONS(399), - [anon_sym_EB] = ACTIONS(399), - [anon_sym_zb] = ACTIONS(399), - [anon_sym_zB] = ACTIONS(399), - [anon_sym_Zb] = ACTIONS(399), - [anon_sym_ZB] = ACTIONS(399), - [anon_sym_kib] = ACTIONS(399), - [anon_sym_kiB] = ACTIONS(399), - [anon_sym_kIB] = ACTIONS(399), - [anon_sym_kIb] = ACTIONS(399), - [anon_sym_Kib] = ACTIONS(399), - [anon_sym_KIb] = ACTIONS(399), - [anon_sym_KIB] = ACTIONS(399), - [anon_sym_mib] = ACTIONS(399), - [anon_sym_miB] = ACTIONS(399), - [anon_sym_mIB] = ACTIONS(399), - [anon_sym_mIb] = ACTIONS(399), - [anon_sym_Mib] = ACTIONS(399), - [anon_sym_MIb] = ACTIONS(399), - [anon_sym_MIB] = ACTIONS(399), - [anon_sym_gib] = ACTIONS(399), - [anon_sym_giB] = ACTIONS(399), - [anon_sym_gIB] = ACTIONS(399), - [anon_sym_gIb] = ACTIONS(399), - [anon_sym_Gib] = ACTIONS(399), - [anon_sym_GIb] = ACTIONS(399), - [anon_sym_GIB] = ACTIONS(399), - [anon_sym_tib] = ACTIONS(399), - [anon_sym_tiB] = ACTIONS(399), - [anon_sym_tIB] = ACTIONS(399), - [anon_sym_tIb] = ACTIONS(399), - [anon_sym_Tib] = ACTIONS(399), - [anon_sym_TIb] = ACTIONS(399), - [anon_sym_TIB] = ACTIONS(399), - [anon_sym_pib] = ACTIONS(399), - [anon_sym_piB] = ACTIONS(399), - [anon_sym_pIB] = ACTIONS(399), - [anon_sym_pIb] = ACTIONS(399), - [anon_sym_Pib] = ACTIONS(399), - [anon_sym_PIb] = ACTIONS(399), - [anon_sym_PIB] = ACTIONS(399), - [anon_sym_eib] = ACTIONS(399), - [anon_sym_eiB] = ACTIONS(399), - [anon_sym_eIB] = ACTIONS(399), - [anon_sym_eIb] = ACTIONS(399), - [anon_sym_Eib] = ACTIONS(399), - [anon_sym_EIb] = ACTIONS(399), - [anon_sym_EIB] = ACTIONS(399), - [anon_sym_zib] = ACTIONS(399), - [anon_sym_ziB] = ACTIONS(399), - [anon_sym_zIB] = ACTIONS(399), - [anon_sym_zIb] = ACTIONS(399), - [anon_sym_Zib] = ACTIONS(399), - [anon_sym_ZIb] = ACTIONS(399), - [anon_sym_ZIB] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(105), - [sym__str_single_quotes] = ACTIONS(105), - [sym__str_back_ticks] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(143), - }, - [102] = { - [sym_comment] = STATE(102), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(401), - [anon_sym_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_ns] = ACTIONS(403), - [anon_sym_s] = ACTIONS(403), - [anon_sym_us] = ACTIONS(403), - [anon_sym_ms] = ACTIONS(403), - [anon_sym_sec] = ACTIONS(403), - [anon_sym_min] = ACTIONS(403), - [anon_sym_hr] = ACTIONS(403), - [anon_sym_day] = ACTIONS(403), - [anon_sym_wk] = ACTIONS(403), - [anon_sym_b] = ACTIONS(405), + [anon_sym_and] = ACTIONS(105), + [anon_sym_xor] = ACTIONS(105), + [anon_sym_or] = ACTIONS(105), + [anon_sym_DOT_DOT_LT] = ACTIONS(397), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_ns] = ACTIONS(401), + [anon_sym_s] = ACTIONS(401), + [anon_sym_us] = ACTIONS(401), + [anon_sym_ms] = ACTIONS(401), + [anon_sym_sec] = ACTIONS(401), + [anon_sym_min] = ACTIONS(401), + [anon_sym_hr] = ACTIONS(401), + [anon_sym_day] = ACTIONS(401), + [anon_sym_wk] = ACTIONS(401), + [anon_sym_b] = ACTIONS(403), [anon_sym_B] = ACTIONS(405), [anon_sym_kb] = ACTIONS(405), [anon_sym_kB] = ACTIONS(405), @@ -53914,11 +53734,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(405), [anon_sym_ZIb] = ACTIONS(405), [anon_sym_ZIB] = ACTIONS(405), - [sym_short_flag] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(145), }, - [103] = { - [sym_comment] = STATE(103), + [101] = { + [sym_comment] = STATE(101), [anon_sym_COMMA] = ACTIONS(115), [anon_sym_PIPE] = ACTIONS(115), [anon_sym_GT] = ACTIONS(113), @@ -54044,138 +53863,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_Zib] = ACTIONS(115), [anon_sym_ZIb] = ACTIONS(115), [anon_sym_ZIB] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), + }, + [102] = { + [sym_comment] = STATE(102), + [sym_identifier] = ACTIONS(103), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(105), + [anon_sym_in] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(105), + [anon_sym_bit_DASHshr] = ACTIONS(105), + [anon_sym_EQ_EQ] = ACTIONS(105), + [anon_sym_BANG_EQ] = ACTIONS(105), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(105), + [anon_sym_GT_EQ] = ACTIONS(105), + [anon_sym_not_DASHin] = ACTIONS(105), + [anon_sym_starts_DASHwith] = ACTIONS(105), + [anon_sym_ends_DASHwith] = ACTIONS(105), + [anon_sym_EQ_TILDE] = ACTIONS(105), + [anon_sym_BANG_TILDE] = ACTIONS(105), + [anon_sym_bit_DASHand] = ACTIONS(105), + [anon_sym_bit_DASHxor] = ACTIONS(105), + [anon_sym_bit_DASHor] = ACTIONS(105), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(407), + [anon_sym_DOT_DOT] = ACTIONS(409), + [anon_sym_DOT_DOT_EQ] = ACTIONS(407), + [anon_sym_ns] = ACTIONS(411), + [anon_sym_s] = ACTIONS(411), + [anon_sym_us] = ACTIONS(411), + [anon_sym_ms] = ACTIONS(411), + [anon_sym_sec] = ACTIONS(411), + [anon_sym_min] = ACTIONS(411), + [anon_sym_hr] = ACTIONS(411), + [anon_sym_day] = ACTIONS(411), + [anon_sym_wk] = ACTIONS(411), + [anon_sym_b] = ACTIONS(413), + [anon_sym_B] = ACTIONS(413), + [anon_sym_kb] = ACTIONS(413), + [anon_sym_kB] = ACTIONS(413), + [anon_sym_Kb] = ACTIONS(413), + [anon_sym_KB] = ACTIONS(413), + [anon_sym_mb] = ACTIONS(413), + [anon_sym_mB] = ACTIONS(413), + [anon_sym_Mb] = ACTIONS(413), + [anon_sym_MB] = ACTIONS(413), + [anon_sym_gb] = ACTIONS(413), + [anon_sym_gB] = ACTIONS(413), + [anon_sym_Gb] = ACTIONS(413), + [anon_sym_GB] = ACTIONS(413), + [anon_sym_tb] = ACTIONS(413), + [anon_sym_tB] = ACTIONS(413), + [anon_sym_Tb] = ACTIONS(413), + [anon_sym_TB] = ACTIONS(413), + [anon_sym_pb] = ACTIONS(413), + [anon_sym_pB] = ACTIONS(413), + [anon_sym_Pb] = ACTIONS(413), + [anon_sym_PB] = ACTIONS(413), + [anon_sym_eb] = ACTIONS(413), + [anon_sym_eB] = ACTIONS(413), + [anon_sym_Eb] = ACTIONS(413), + [anon_sym_EB] = ACTIONS(413), + [anon_sym_zb] = ACTIONS(413), + [anon_sym_zB] = ACTIONS(413), + [anon_sym_Zb] = ACTIONS(413), + [anon_sym_ZB] = ACTIONS(413), + [anon_sym_kib] = ACTIONS(413), + [anon_sym_kiB] = ACTIONS(413), + [anon_sym_kIB] = ACTIONS(413), + [anon_sym_kIb] = ACTIONS(413), + [anon_sym_Kib] = ACTIONS(413), + [anon_sym_KIb] = ACTIONS(413), + [anon_sym_KIB] = ACTIONS(413), + [anon_sym_mib] = ACTIONS(413), + [anon_sym_miB] = ACTIONS(413), + [anon_sym_mIB] = ACTIONS(413), + [anon_sym_mIb] = ACTIONS(413), + [anon_sym_Mib] = ACTIONS(413), + [anon_sym_MIb] = ACTIONS(413), + [anon_sym_MIB] = ACTIONS(413), + [anon_sym_gib] = ACTIONS(413), + [anon_sym_giB] = ACTIONS(413), + [anon_sym_gIB] = ACTIONS(413), + [anon_sym_gIb] = ACTIONS(413), + [anon_sym_Gib] = ACTIONS(413), + [anon_sym_GIb] = ACTIONS(413), + [anon_sym_GIB] = ACTIONS(413), + [anon_sym_tib] = ACTIONS(413), + [anon_sym_tiB] = ACTIONS(413), + [anon_sym_tIB] = ACTIONS(413), + [anon_sym_tIb] = ACTIONS(413), + [anon_sym_Tib] = ACTIONS(413), + [anon_sym_TIb] = ACTIONS(413), + [anon_sym_TIB] = ACTIONS(413), + [anon_sym_pib] = ACTIONS(413), + [anon_sym_piB] = ACTIONS(413), + [anon_sym_pIB] = ACTIONS(413), + [anon_sym_pIb] = ACTIONS(413), + [anon_sym_Pib] = ACTIONS(413), + [anon_sym_PIb] = ACTIONS(413), + [anon_sym_PIB] = ACTIONS(413), + [anon_sym_eib] = ACTIONS(413), + [anon_sym_eiB] = ACTIONS(413), + [anon_sym_eIB] = ACTIONS(413), + [anon_sym_eIb] = ACTIONS(413), + [anon_sym_Eib] = ACTIONS(413), + [anon_sym_EIb] = ACTIONS(413), + [anon_sym_EIB] = ACTIONS(413), + [anon_sym_zib] = ACTIONS(413), + [anon_sym_ziB] = ACTIONS(413), + [anon_sym_zIB] = ACTIONS(413), + [anon_sym_zIb] = ACTIONS(413), + [anon_sym_Zib] = ACTIONS(413), + [anon_sym_ZIb] = ACTIONS(413), + [anon_sym_ZIB] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym__str_single_quotes] = ACTIONS(105), + [sym__str_back_ticks] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(145), + }, + [103] = { + [sym_comment] = STATE(103), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_DOT] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_QMARK2] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [anon_sym_ns] = ACTIONS(113), + [anon_sym_s] = ACTIONS(113), + [anon_sym_us] = ACTIONS(113), + [anon_sym_ms] = ACTIONS(113), + [anon_sym_sec] = ACTIONS(113), + [anon_sym_min] = ACTIONS(113), + [anon_sym_hr] = ACTIONS(113), + [anon_sym_day] = ACTIONS(113), + [anon_sym_wk] = ACTIONS(113), + [anon_sym_b] = ACTIONS(113), + [anon_sym_B] = ACTIONS(113), + [anon_sym_kb] = ACTIONS(113), + [anon_sym_kB] = ACTIONS(113), + [anon_sym_Kb] = ACTIONS(113), + [anon_sym_KB] = ACTIONS(113), + [anon_sym_mb] = ACTIONS(113), + [anon_sym_mB] = ACTIONS(113), + [anon_sym_Mb] = ACTIONS(113), + [anon_sym_MB] = ACTIONS(113), + [anon_sym_gb] = ACTIONS(113), + [anon_sym_gB] = ACTIONS(113), + [anon_sym_Gb] = ACTIONS(113), + [anon_sym_GB] = ACTIONS(113), + [anon_sym_tb] = ACTIONS(113), + [anon_sym_tB] = ACTIONS(113), + [anon_sym_Tb] = ACTIONS(113), + [anon_sym_TB] = ACTIONS(113), + [anon_sym_pb] = ACTIONS(113), + [anon_sym_pB] = ACTIONS(113), + [anon_sym_Pb] = ACTIONS(113), + [anon_sym_PB] = ACTIONS(113), + [anon_sym_eb] = ACTIONS(113), + [anon_sym_eB] = ACTIONS(113), + [anon_sym_Eb] = ACTIONS(113), + [anon_sym_EB] = ACTIONS(113), + [anon_sym_zb] = ACTIONS(113), + [anon_sym_zB] = ACTIONS(113), + [anon_sym_Zb] = ACTIONS(113), + [anon_sym_ZB] = ACTIONS(113), + [anon_sym_kib] = ACTIONS(113), + [anon_sym_kiB] = ACTIONS(113), + [anon_sym_kIB] = ACTIONS(113), + [anon_sym_kIb] = ACTIONS(113), + [anon_sym_Kib] = ACTIONS(113), + [anon_sym_KIb] = ACTIONS(113), + [anon_sym_KIB] = ACTIONS(113), + [anon_sym_mib] = ACTIONS(113), + [anon_sym_miB] = ACTIONS(113), + [anon_sym_mIB] = ACTIONS(113), + [anon_sym_mIb] = ACTIONS(113), + [anon_sym_Mib] = ACTIONS(113), + [anon_sym_MIb] = ACTIONS(113), + [anon_sym_MIB] = ACTIONS(113), + [anon_sym_gib] = ACTIONS(113), + [anon_sym_giB] = ACTIONS(113), + [anon_sym_gIB] = ACTIONS(113), + [anon_sym_gIb] = ACTIONS(113), + [anon_sym_Gib] = ACTIONS(113), + [anon_sym_GIb] = ACTIONS(113), + [anon_sym_GIB] = ACTIONS(113), + [anon_sym_tib] = ACTIONS(113), + [anon_sym_tiB] = ACTIONS(113), + [anon_sym_tIB] = ACTIONS(113), + [anon_sym_tIb] = ACTIONS(113), + [anon_sym_Tib] = ACTIONS(113), + [anon_sym_TIb] = ACTIONS(113), + [anon_sym_TIB] = ACTIONS(113), + [anon_sym_pib] = ACTIONS(113), + [anon_sym_piB] = ACTIONS(113), + [anon_sym_pIB] = ACTIONS(113), + [anon_sym_pIb] = ACTIONS(113), + [anon_sym_Pib] = ACTIONS(113), + [anon_sym_PIb] = ACTIONS(113), + [anon_sym_PIB] = ACTIONS(113), + [anon_sym_eib] = ACTIONS(113), + [anon_sym_eiB] = ACTIONS(113), + [anon_sym_eIB] = ACTIONS(113), + [anon_sym_eIb] = ACTIONS(113), + [anon_sym_Eib] = ACTIONS(113), + [anon_sym_EIb] = ACTIONS(113), + [anon_sym_EIB] = ACTIONS(113), + [anon_sym_zib] = ACTIONS(113), + [anon_sym_ziB] = ACTIONS(113), + [anon_sym_zIB] = ACTIONS(113), + [anon_sym_zIb] = ACTIONS(113), + [anon_sym_Zib] = ACTIONS(113), + [anon_sym_ZIb] = ACTIONS(113), + [anon_sym_ZIB] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), }, [104] = { - [sym__block_body_statement_parenthesized] = STATE(558), - [sym__declaration_parenthesized] = STATE(724), - [sym_decl_alias_parenthesized] = STATE(712), - [sym_stmt_let_parenthesized] = STATE(725), - [sym_stmt_mut_parenthesized] = STATE(725), - [sym_stmt_const_parenthesized] = STATE(725), - [sym__statement_parenthesized] = STATE(724), - [sym_pipeline_parenthesized] = STATE(725), - [sym_decl_def] = STATE(712), - [sym_decl_export] = STATE(712), - [sym_decl_extern] = STATE(712), - [sym_decl_module] = STATE(712), - [sym_decl_use] = STATE(712), - [sym__ctrl_statement] = STATE(725), - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3465), - [sym_stmt_source] = STATE(725), - [sym_stmt_register] = STATE(725), - [sym__stmt_hide] = STATE(725), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(725), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(725), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), + [sym__block_body_statement] = STATE(531), + [sym__declaration] = STATE(725), + [sym_decl_alias] = STATE(703), + [sym_stmt_let] = STATE(705), + [sym_stmt_mut] = STATE(705), + [sym_stmt_const] = STATE(705), + [sym__statement] = STATE(725), + [sym_pipeline] = STATE(705), + [sym_decl_def] = STATE(703), + [sym_decl_export] = STATE(703), + [sym_decl_extern] = STATE(703), + [sym_decl_module] = STATE(703), + [sym_decl_use] = STATE(703), + [sym__ctrl_statement] = STATE(705), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3411), + [sym_stmt_source] = STATE(705), + [sym_stmt_register] = STATE(705), + [sym__stmt_hide] = STATE(705), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(705), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(705), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(312), - [aux_sym__parenthesized_body_repeat1] = STATE(104), - [anon_sym_export] = ACTIONS(407), - [anon_sym_alias] = ACTIONS(410), - [anon_sym_let] = ACTIONS(413), - [anon_sym_let_DASHenv] = ACTIONS(413), - [anon_sym_mut] = ACTIONS(416), - [anon_sym_const] = ACTIONS(419), - [sym_cmd_identifier] = ACTIONS(422), - [anon_sym_def] = ACTIONS(425), - [anon_sym_def_DASHenv] = ACTIONS(425), - [anon_sym_export_DASHenv] = ACTIONS(428), - [anon_sym_extern] = ACTIONS(431), - [anon_sym_module] = ACTIONS(434), - [anon_sym_use] = ACTIONS(437), - [anon_sym_LBRACK] = ACTIONS(440), - [anon_sym_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR] = ACTIONS(446), - [anon_sym_error] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(452), - [anon_sym_break] = ACTIONS(455), - [anon_sym_continue] = ACTIONS(458), - [anon_sym_for] = ACTIONS(461), - [anon_sym_loop] = ACTIONS(464), - [anon_sym_while] = ACTIONS(467), - [anon_sym_do] = ACTIONS(470), - [anon_sym_if] = ACTIONS(473), - [anon_sym_match] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_try] = ACTIONS(482), - [anon_sym_return] = ACTIONS(485), - [anon_sym_source] = ACTIONS(488), - [anon_sym_source_DASHenv] = ACTIONS(488), - [anon_sym_register] = ACTIONS(491), - [anon_sym_hide] = ACTIONS(494), - [anon_sym_hide_DASHenv] = ACTIONS(497), - [anon_sym_overlay] = ACTIONS(500), - [anon_sym_where] = ACTIONS(503), - [anon_sym_not] = ACTIONS(506), - [anon_sym_DOT_DOT_LT] = ACTIONS(509), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(509), - [sym_val_nothing] = ACTIONS(515), - [anon_sym_true] = ACTIONS(518), - [anon_sym_false] = ACTIONS(518), - [aux_sym_val_number_token1] = ACTIONS(521), - [aux_sym_val_number_token2] = ACTIONS(521), - [aux_sym_val_number_token3] = ACTIONS(524), - [aux_sym_val_number_token4] = ACTIONS(524), - [aux_sym_val_number_token5] = ACTIONS(524), - [anon_sym_inf] = ACTIONS(521), - [anon_sym_DASHinf] = ACTIONS(524), - [anon_sym_NaN] = ACTIONS(521), - [anon_sym_0b] = ACTIONS(527), - [anon_sym_0o] = ACTIONS(527), - [anon_sym_0x] = ACTIONS(527), - [sym_val_date] = ACTIONS(530), - [anon_sym_DQUOTE] = ACTIONS(533), - [sym__str_single_quotes] = ACTIONS(536), - [sym__str_back_ticks] = ACTIONS(536), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(539), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(545), - [anon_sym_POUND] = ACTIONS(143), + [aux_sym_pipeline_repeat1] = STATE(311), + [aux_sym__block_body_repeat2] = STATE(104), + [anon_sym_export] = ACTIONS(415), + [anon_sym_alias] = ACTIONS(418), + [anon_sym_let] = ACTIONS(421), + [anon_sym_let_DASHenv] = ACTIONS(421), + [anon_sym_mut] = ACTIONS(424), + [anon_sym_const] = ACTIONS(427), + [sym_cmd_identifier] = ACTIONS(430), + [anon_sym_def] = ACTIONS(433), + [anon_sym_def_DASHenv] = ACTIONS(433), + [anon_sym_export_DASHenv] = ACTIONS(436), + [anon_sym_extern] = ACTIONS(439), + [anon_sym_module] = ACTIONS(442), + [anon_sym_use] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(448), + [anon_sym_LPAREN] = ACTIONS(451), + [anon_sym_DOLLAR] = ACTIONS(454), + [anon_sym_error] = ACTIONS(457), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_break] = ACTIONS(463), + [anon_sym_continue] = ACTIONS(466), + [anon_sym_for] = ACTIONS(469), + [anon_sym_loop] = ACTIONS(472), + [anon_sym_while] = ACTIONS(475), + [anon_sym_do] = ACTIONS(478), + [anon_sym_if] = ACTIONS(481), + [anon_sym_match] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(487), + [anon_sym_try] = ACTIONS(490), + [anon_sym_return] = ACTIONS(493), + [anon_sym_source] = ACTIONS(496), + [anon_sym_source_DASHenv] = ACTIONS(496), + [anon_sym_register] = ACTIONS(499), + [anon_sym_hide] = ACTIONS(502), + [anon_sym_hide_DASHenv] = ACTIONS(505), + [anon_sym_overlay] = ACTIONS(508), + [anon_sym_where] = ACTIONS(511), + [anon_sym_not] = ACTIONS(514), + [anon_sym_DOT_DOT_LT] = ACTIONS(517), + [anon_sym_DOT_DOT] = ACTIONS(520), + [anon_sym_DOT_DOT_EQ] = ACTIONS(517), + [sym_val_nothing] = ACTIONS(523), + [anon_sym_true] = ACTIONS(526), + [anon_sym_false] = ACTIONS(526), + [aux_sym_val_number_token1] = ACTIONS(529), + [aux_sym_val_number_token2] = ACTIONS(529), + [aux_sym_val_number_token3] = ACTIONS(532), + [aux_sym_val_number_token4] = ACTIONS(532), + [aux_sym_val_number_token5] = ACTIONS(532), + [anon_sym_inf] = ACTIONS(529), + [anon_sym_DASHinf] = ACTIONS(532), + [anon_sym_NaN] = ACTIONS(529), + [anon_sym_0b] = ACTIONS(535), + [anon_sym_0o] = ACTIONS(535), + [anon_sym_0x] = ACTIONS(535), + [sym_val_date] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(541), + [sym__str_single_quotes] = ACTIONS(544), + [sym__str_back_ticks] = ACTIONS(544), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(547), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(553), + [anon_sym_POUND] = ACTIONS(145), }, [105] = { + [sym__block_body_statement_parenthesized] = STATE(600), + [sym__declaration_parenthesized] = STATE(707), + [sym_decl_alias_parenthesized] = STATE(706), + [sym_stmt_let_parenthesized] = STATE(702), + [sym_stmt_mut_parenthesized] = STATE(702), + [sym_stmt_const_parenthesized] = STATE(702), + [sym__statement_parenthesized] = STATE(707), + [sym_pipeline_parenthesized] = STATE(702), + [sym_decl_def] = STATE(706), + [sym_decl_export] = STATE(706), + [sym_decl_extern] = STATE(706), + [sym_decl_module] = STATE(706), + [sym_decl_use] = STATE(706), + [sym__ctrl_statement] = STATE(702), + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_for] = STATE(527), + [sym_ctrl_loop] = STATE(527), + [sym_ctrl_error] = STATE(527), + [sym_ctrl_while] = STATE(527), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3553), + [sym_stmt_source] = STATE(702), + [sym_stmt_register] = STATE(702), + [sym__stmt_hide] = STATE(702), + [sym_hide_mod] = STATE(529), + [sym_hide_env] = STATE(529), + [sym__stmt_overlay] = STATE(702), + [sym_overlay_list] = STATE(530), + [sym_overlay_hide] = STATE(530), + [sym_overlay_new] = STATE(530), + [sym_overlay_use] = STATE(530), + [sym_assignment] = STATE(702), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(1599), + [sym__var] = STATE(1486), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), [sym_comment] = STATE(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(318), + [aux_sym__parenthesized_body_repeat1] = STATE(105), + [anon_sym_export] = ACTIONS(556), + [anon_sym_alias] = ACTIONS(559), + [anon_sym_let] = ACTIONS(562), + [anon_sym_let_DASHenv] = ACTIONS(562), + [anon_sym_mut] = ACTIONS(565), + [anon_sym_const] = ACTIONS(568), + [sym_cmd_identifier] = ACTIONS(571), + [anon_sym_def] = ACTIONS(574), + [anon_sym_def_DASHenv] = ACTIONS(574), + [anon_sym_export_DASHenv] = ACTIONS(577), + [anon_sym_extern] = ACTIONS(580), + [anon_sym_module] = ACTIONS(583), + [anon_sym_use] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(589), + [anon_sym_LPAREN] = ACTIONS(592), + [anon_sym_DOLLAR] = ACTIONS(595), + [anon_sym_error] = ACTIONS(598), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_break] = ACTIONS(604), + [anon_sym_continue] = ACTIONS(607), + [anon_sym_for] = ACTIONS(610), + [anon_sym_loop] = ACTIONS(613), + [anon_sym_while] = ACTIONS(616), + [anon_sym_do] = ACTIONS(619), + [anon_sym_if] = ACTIONS(622), + [anon_sym_match] = ACTIONS(625), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_try] = ACTIONS(631), + [anon_sym_return] = ACTIONS(634), + [anon_sym_source] = ACTIONS(637), + [anon_sym_source_DASHenv] = ACTIONS(637), + [anon_sym_register] = ACTIONS(640), + [anon_sym_hide] = ACTIONS(643), + [anon_sym_hide_DASHenv] = ACTIONS(646), + [anon_sym_overlay] = ACTIONS(649), + [anon_sym_where] = ACTIONS(652), + [anon_sym_not] = ACTIONS(655), + [anon_sym_DOT_DOT_LT] = ACTIONS(658), + [anon_sym_DOT_DOT] = ACTIONS(661), + [anon_sym_DOT_DOT_EQ] = ACTIONS(658), + [sym_val_nothing] = ACTIONS(664), + [anon_sym_true] = ACTIONS(667), + [anon_sym_false] = ACTIONS(667), + [aux_sym_val_number_token1] = ACTIONS(670), + [aux_sym_val_number_token2] = ACTIONS(670), + [aux_sym_val_number_token3] = ACTIONS(673), + [aux_sym_val_number_token4] = ACTIONS(673), + [aux_sym_val_number_token5] = ACTIONS(673), + [anon_sym_inf] = ACTIONS(670), + [anon_sym_DASHinf] = ACTIONS(673), + [anon_sym_NaN] = ACTIONS(670), + [anon_sym_0b] = ACTIONS(676), + [anon_sym_0o] = ACTIONS(676), + [anon_sym_0x] = ACTIONS(676), + [sym_val_date] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(682), + [sym__str_single_quotes] = ACTIONS(685), + [sym__str_back_ticks] = ACTIONS(685), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(691), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(145), + }, + [106] = { + [sym_comment] = STATE(106), [anon_sym_SEMI] = ACTIONS(103), [anon_sym_LF] = ACTIONS(105), [anon_sym_RPAREN] = ACTIONS(103), @@ -54209,227 +54414,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(335), - [anon_sym_DOT_DOT_EQ] = ACTIONS(335), - [anon_sym_ns] = ACTIONS(337), - [anon_sym_s] = ACTIONS(337), - [anon_sym_us] = ACTIONS(337), - [anon_sym_ms] = ACTIONS(337), - [anon_sym_sec] = ACTIONS(337), - [anon_sym_min] = ACTIONS(337), - [anon_sym_hr] = ACTIONS(337), - [anon_sym_day] = ACTIONS(337), - [anon_sym_wk] = ACTIONS(337), - [anon_sym_b] = ACTIONS(339), - [anon_sym_B] = ACTIONS(339), - [anon_sym_kb] = ACTIONS(339), - [anon_sym_kB] = ACTIONS(339), - [anon_sym_Kb] = ACTIONS(339), - [anon_sym_KB] = ACTIONS(339), - [anon_sym_mb] = ACTIONS(339), - [anon_sym_mB] = ACTIONS(339), - [anon_sym_Mb] = ACTIONS(339), - [anon_sym_MB] = ACTIONS(339), - [anon_sym_gb] = ACTIONS(339), - [anon_sym_gB] = ACTIONS(339), - [anon_sym_Gb] = ACTIONS(339), - [anon_sym_GB] = ACTIONS(339), - [anon_sym_tb] = ACTIONS(339), - [anon_sym_tB] = ACTIONS(339), - [anon_sym_Tb] = ACTIONS(339), - [anon_sym_TB] = ACTIONS(339), - [anon_sym_pb] = ACTIONS(339), - [anon_sym_pB] = ACTIONS(339), - [anon_sym_Pb] = ACTIONS(339), - [anon_sym_PB] = ACTIONS(339), - [anon_sym_eb] = ACTIONS(339), - [anon_sym_eB] = ACTIONS(339), - [anon_sym_Eb] = ACTIONS(339), - [anon_sym_EB] = ACTIONS(339), - [anon_sym_zb] = ACTIONS(339), - [anon_sym_zB] = ACTIONS(339), - [anon_sym_Zb] = ACTIONS(339), - [anon_sym_ZB] = ACTIONS(339), - [anon_sym_kib] = ACTIONS(339), - [anon_sym_kiB] = ACTIONS(339), - [anon_sym_kIB] = ACTIONS(339), - [anon_sym_kIb] = ACTIONS(339), - [anon_sym_Kib] = ACTIONS(339), - [anon_sym_KIb] = ACTIONS(339), - [anon_sym_KIB] = ACTIONS(339), - [anon_sym_mib] = ACTIONS(339), - [anon_sym_miB] = ACTIONS(339), - [anon_sym_mIB] = ACTIONS(339), - [anon_sym_mIb] = ACTIONS(339), - [anon_sym_Mib] = ACTIONS(339), - [anon_sym_MIb] = ACTIONS(339), - [anon_sym_MIB] = ACTIONS(339), - [anon_sym_gib] = ACTIONS(339), - [anon_sym_giB] = ACTIONS(339), - [anon_sym_gIB] = ACTIONS(339), - [anon_sym_gIb] = ACTIONS(339), - [anon_sym_Gib] = ACTIONS(339), - [anon_sym_GIb] = ACTIONS(339), - [anon_sym_GIB] = ACTIONS(339), - [anon_sym_tib] = ACTIONS(339), - [anon_sym_tiB] = ACTIONS(339), - [anon_sym_tIB] = ACTIONS(339), - [anon_sym_tIb] = ACTIONS(339), - [anon_sym_Tib] = ACTIONS(339), - [anon_sym_TIb] = ACTIONS(339), - [anon_sym_TIB] = ACTIONS(339), - [anon_sym_pib] = ACTIONS(339), - [anon_sym_piB] = ACTIONS(339), - [anon_sym_pIB] = ACTIONS(339), - [anon_sym_pIb] = ACTIONS(339), - [anon_sym_Pib] = ACTIONS(339), - [anon_sym_PIb] = ACTIONS(339), - [anon_sym_PIB] = ACTIONS(339), - [anon_sym_eib] = ACTIONS(339), - [anon_sym_eiB] = ACTIONS(339), - [anon_sym_eIB] = ACTIONS(339), - [anon_sym_eIb] = ACTIONS(339), - [anon_sym_Eib] = ACTIONS(339), - [anon_sym_EIb] = ACTIONS(339), - [anon_sym_EIB] = ACTIONS(339), - [anon_sym_zib] = ACTIONS(339), - [anon_sym_ziB] = ACTIONS(339), - [anon_sym_zIB] = ACTIONS(339), - [anon_sym_zIb] = ACTIONS(339), - [anon_sym_Zib] = ACTIONS(339), - [anon_sym_ZIb] = ACTIONS(339), - [anon_sym_ZIB] = ACTIONS(339), + [anon_sym_DOT_DOT_LT] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(343), + [anon_sym_DOT_DOT_EQ] = ACTIONS(343), + [anon_sym_ns] = ACTIONS(345), + [anon_sym_s] = ACTIONS(345), + [anon_sym_us] = ACTIONS(345), + [anon_sym_ms] = ACTIONS(345), + [anon_sym_sec] = ACTIONS(345), + [anon_sym_min] = ACTIONS(345), + [anon_sym_hr] = ACTIONS(345), + [anon_sym_day] = ACTIONS(345), + [anon_sym_wk] = ACTIONS(345), + [anon_sym_b] = ACTIONS(347), + [anon_sym_B] = ACTIONS(347), + [anon_sym_kb] = ACTIONS(347), + [anon_sym_kB] = ACTIONS(347), + [anon_sym_Kb] = ACTIONS(347), + [anon_sym_KB] = ACTIONS(347), + [anon_sym_mb] = ACTIONS(347), + [anon_sym_mB] = ACTIONS(347), + [anon_sym_Mb] = ACTIONS(347), + [anon_sym_MB] = ACTIONS(347), + [anon_sym_gb] = ACTIONS(347), + [anon_sym_gB] = ACTIONS(347), + [anon_sym_Gb] = ACTIONS(347), + [anon_sym_GB] = ACTIONS(347), + [anon_sym_tb] = ACTIONS(347), + [anon_sym_tB] = ACTIONS(347), + [anon_sym_Tb] = ACTIONS(347), + [anon_sym_TB] = ACTIONS(347), + [anon_sym_pb] = ACTIONS(347), + [anon_sym_pB] = ACTIONS(347), + [anon_sym_Pb] = ACTIONS(347), + [anon_sym_PB] = ACTIONS(347), + [anon_sym_eb] = ACTIONS(347), + [anon_sym_eB] = ACTIONS(347), + [anon_sym_Eb] = ACTIONS(347), + [anon_sym_EB] = ACTIONS(347), + [anon_sym_zb] = ACTIONS(347), + [anon_sym_zB] = ACTIONS(347), + [anon_sym_Zb] = ACTIONS(347), + [anon_sym_ZB] = ACTIONS(347), + [anon_sym_kib] = ACTIONS(347), + [anon_sym_kiB] = ACTIONS(347), + [anon_sym_kIB] = ACTIONS(347), + [anon_sym_kIb] = ACTIONS(347), + [anon_sym_Kib] = ACTIONS(347), + [anon_sym_KIb] = ACTIONS(347), + [anon_sym_KIB] = ACTIONS(347), + [anon_sym_mib] = ACTIONS(347), + [anon_sym_miB] = ACTIONS(347), + [anon_sym_mIB] = ACTIONS(347), + [anon_sym_mIb] = ACTIONS(347), + [anon_sym_Mib] = ACTIONS(347), + [anon_sym_MIb] = ACTIONS(347), + [anon_sym_MIB] = ACTIONS(347), + [anon_sym_gib] = ACTIONS(347), + [anon_sym_giB] = ACTIONS(347), + [anon_sym_gIB] = ACTIONS(347), + [anon_sym_gIb] = ACTIONS(347), + [anon_sym_Gib] = ACTIONS(347), + [anon_sym_GIb] = ACTIONS(347), + [anon_sym_GIB] = ACTIONS(347), + [anon_sym_tib] = ACTIONS(347), + [anon_sym_tiB] = ACTIONS(347), + [anon_sym_tIB] = ACTIONS(347), + [anon_sym_tIb] = ACTIONS(347), + [anon_sym_Tib] = ACTIONS(347), + [anon_sym_TIb] = ACTIONS(347), + [anon_sym_TIB] = ACTIONS(347), + [anon_sym_pib] = ACTIONS(347), + [anon_sym_piB] = ACTIONS(347), + [anon_sym_pIB] = ACTIONS(347), + [anon_sym_pIb] = ACTIONS(347), + [anon_sym_Pib] = ACTIONS(347), + [anon_sym_PIb] = ACTIONS(347), + [anon_sym_PIB] = ACTIONS(347), + [anon_sym_eib] = ACTIONS(347), + [anon_sym_eiB] = ACTIONS(347), + [anon_sym_eIB] = ACTIONS(347), + [anon_sym_eIb] = ACTIONS(347), + [anon_sym_Eib] = ACTIONS(347), + [anon_sym_EIb] = ACTIONS(347), + [anon_sym_EIB] = ACTIONS(347), + [anon_sym_zib] = ACTIONS(347), + [anon_sym_ziB] = ACTIONS(347), + [anon_sym_zIB] = ACTIONS(347), + [anon_sym_zIb] = ACTIONS(347), + [anon_sym_Zib] = ACTIONS(347), + [anon_sym_ZIb] = ACTIONS(347), + [anon_sym_ZIB] = ACTIONS(347), [anon_sym_POUND] = ACTIONS(3), }, - [106] = { - [sym__block_body_statement] = STATE(560), - [sym__declaration] = STATE(723), - [sym_decl_alias] = STATE(720), - [sym_stmt_let] = STATE(719), - [sym_stmt_mut] = STATE(719), - [sym_stmt_const] = STATE(719), - [sym__statement] = STATE(723), - [sym_pipeline] = STATE(719), - [sym_decl_def] = STATE(720), - [sym_decl_export] = STATE(720), - [sym_decl_extern] = STATE(720), - [sym_decl_module] = STATE(720), - [sym_decl_use] = STATE(720), - [sym__ctrl_statement] = STATE(719), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_for] = STATE(554), - [sym_ctrl_loop] = STATE(554), - [sym_ctrl_error] = STATE(554), - [sym_ctrl_while] = STATE(554), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3340), - [sym_stmt_source] = STATE(719), - [sym_stmt_register] = STATE(719), - [sym__stmt_hide] = STATE(719), - [sym_hide_mod] = STATE(551), - [sym_hide_env] = STATE(551), - [sym__stmt_overlay] = STATE(719), - [sym_overlay_list] = STATE(543), - [sym_overlay_hide] = STATE(543), - [sym_overlay_new] = STATE(543), - [sym_overlay_use] = STATE(543), - [sym_assignment] = STATE(719), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(1571), - [sym__var] = STATE(1473), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(322), - [aux_sym__block_body_repeat2] = STATE(106), - [anon_sym_export] = ACTIONS(548), - [anon_sym_alias] = ACTIONS(551), - [anon_sym_let] = ACTIONS(554), - [anon_sym_let_DASHenv] = ACTIONS(554), - [anon_sym_mut] = ACTIONS(557), - [anon_sym_const] = ACTIONS(560), - [sym_cmd_identifier] = ACTIONS(563), - [anon_sym_def] = ACTIONS(566), - [anon_sym_def_DASHenv] = ACTIONS(566), - [anon_sym_export_DASHenv] = ACTIONS(569), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_module] = ACTIONS(575), - [anon_sym_use] = ACTIONS(578), - [anon_sym_LBRACK] = ACTIONS(581), - [anon_sym_LPAREN] = ACTIONS(584), - [anon_sym_DOLLAR] = ACTIONS(587), - [anon_sym_error] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(599), - [anon_sym_for] = ACTIONS(602), - [anon_sym_loop] = ACTIONS(605), - [anon_sym_while] = ACTIONS(608), - [anon_sym_do] = ACTIONS(611), - [anon_sym_if] = ACTIONS(614), - [anon_sym_match] = ACTIONS(617), - [anon_sym_LBRACE] = ACTIONS(620), - [anon_sym_try] = ACTIONS(623), - [anon_sym_return] = ACTIONS(626), - [anon_sym_source] = ACTIONS(629), - [anon_sym_source_DASHenv] = ACTIONS(629), - [anon_sym_register] = ACTIONS(632), - [anon_sym_hide] = ACTIONS(635), - [anon_sym_hide_DASHenv] = ACTIONS(638), - [anon_sym_overlay] = ACTIONS(641), - [anon_sym_where] = ACTIONS(644), - [anon_sym_not] = ACTIONS(647), - [anon_sym_DOT_DOT_LT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(650), - [sym_val_nothing] = ACTIONS(656), - [anon_sym_true] = ACTIONS(659), - [anon_sym_false] = ACTIONS(659), - [aux_sym_val_number_token1] = ACTIONS(662), - [aux_sym_val_number_token2] = ACTIONS(662), - [aux_sym_val_number_token3] = ACTIONS(665), - [aux_sym_val_number_token4] = ACTIONS(665), - [aux_sym_val_number_token5] = ACTIONS(665), - [anon_sym_inf] = ACTIONS(662), - [anon_sym_DASHinf] = ACTIONS(665), - [anon_sym_NaN] = ACTIONS(662), - [anon_sym_0b] = ACTIONS(668), - [anon_sym_0o] = ACTIONS(668), - [anon_sym_0x] = ACTIONS(668), - [sym_val_date] = ACTIONS(671), - [anon_sym_DQUOTE] = ACTIONS(674), - [sym__str_single_quotes] = ACTIONS(677), - [sym__str_back_ticks] = ACTIONS(677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(680), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(683), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_POUND] = ACTIONS(143), - }, [107] = { [sym_comment] = STATE(107), [ts_builtin_sym_end] = ACTIONS(105), @@ -54464,97 +54541,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(103), [anon_sym_xor] = ACTIONS(103), [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(371), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(371), - [anon_sym_ns] = ACTIONS(373), - [anon_sym_s] = ACTIONS(373), - [anon_sym_us] = ACTIONS(373), - [anon_sym_ms] = ACTIONS(373), - [anon_sym_sec] = ACTIONS(373), - [anon_sym_min] = ACTIONS(373), - [anon_sym_hr] = ACTIONS(373), - [anon_sym_day] = ACTIONS(373), - [anon_sym_wk] = ACTIONS(373), - [anon_sym_b] = ACTIONS(375), - [anon_sym_B] = ACTIONS(375), - [anon_sym_kb] = ACTIONS(375), - [anon_sym_kB] = ACTIONS(375), - [anon_sym_Kb] = ACTIONS(375), - [anon_sym_KB] = ACTIONS(375), - [anon_sym_mb] = ACTIONS(375), - [anon_sym_mB] = ACTIONS(375), - [anon_sym_Mb] = ACTIONS(375), - [anon_sym_MB] = ACTIONS(375), - [anon_sym_gb] = ACTIONS(375), - [anon_sym_gB] = ACTIONS(375), - [anon_sym_Gb] = ACTIONS(375), - [anon_sym_GB] = ACTIONS(375), - [anon_sym_tb] = ACTIONS(375), - [anon_sym_tB] = ACTIONS(375), - [anon_sym_Tb] = ACTIONS(375), - [anon_sym_TB] = ACTIONS(375), - [anon_sym_pb] = ACTIONS(375), - [anon_sym_pB] = ACTIONS(375), - [anon_sym_Pb] = ACTIONS(375), - [anon_sym_PB] = ACTIONS(375), - [anon_sym_eb] = ACTIONS(375), - [anon_sym_eB] = ACTIONS(375), - [anon_sym_Eb] = ACTIONS(375), - [anon_sym_EB] = ACTIONS(375), - [anon_sym_zb] = ACTIONS(375), - [anon_sym_zB] = ACTIONS(375), - [anon_sym_Zb] = ACTIONS(375), - [anon_sym_ZB] = ACTIONS(375), - [anon_sym_kib] = ACTIONS(375), - [anon_sym_kiB] = ACTIONS(375), - [anon_sym_kIB] = ACTIONS(375), - [anon_sym_kIb] = ACTIONS(375), - [anon_sym_Kib] = ACTIONS(375), - [anon_sym_KIb] = ACTIONS(375), - [anon_sym_KIB] = ACTIONS(375), - [anon_sym_mib] = ACTIONS(375), - [anon_sym_miB] = ACTIONS(375), - [anon_sym_mIB] = ACTIONS(375), - [anon_sym_mIb] = ACTIONS(375), - [anon_sym_Mib] = ACTIONS(375), - [anon_sym_MIb] = ACTIONS(375), - [anon_sym_MIB] = ACTIONS(375), - [anon_sym_gib] = ACTIONS(375), - [anon_sym_giB] = ACTIONS(375), - [anon_sym_gIB] = ACTIONS(375), - [anon_sym_gIb] = ACTIONS(375), - [anon_sym_Gib] = ACTIONS(375), - [anon_sym_GIb] = ACTIONS(375), - [anon_sym_GIB] = ACTIONS(375), - [anon_sym_tib] = ACTIONS(375), - [anon_sym_tiB] = ACTIONS(375), - [anon_sym_tIB] = ACTIONS(375), - [anon_sym_tIb] = ACTIONS(375), - [anon_sym_Tib] = ACTIONS(375), - [anon_sym_TIb] = ACTIONS(375), - [anon_sym_TIB] = ACTIONS(375), - [anon_sym_pib] = ACTIONS(375), - [anon_sym_piB] = ACTIONS(375), - [anon_sym_pIB] = ACTIONS(375), - [anon_sym_pIb] = ACTIONS(375), - [anon_sym_Pib] = ACTIONS(375), - [anon_sym_PIb] = ACTIONS(375), - [anon_sym_PIB] = ACTIONS(375), - [anon_sym_eib] = ACTIONS(375), - [anon_sym_eiB] = ACTIONS(375), - [anon_sym_eIB] = ACTIONS(375), - [anon_sym_eIb] = ACTIONS(375), - [anon_sym_Eib] = ACTIONS(375), - [anon_sym_EIb] = ACTIONS(375), - [anon_sym_EIB] = ACTIONS(375), - [anon_sym_zib] = ACTIONS(375), - [anon_sym_ziB] = ACTIONS(375), - [anon_sym_zIB] = ACTIONS(375), - [anon_sym_zIb] = ACTIONS(375), - [anon_sym_Zib] = ACTIONS(375), - [anon_sym_ZIb] = ACTIONS(375), - [anon_sym_ZIB] = ACTIONS(375), + [anon_sym_DOT_DOT_LT] = ACTIONS(379), + [anon_sym_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), + [anon_sym_ns] = ACTIONS(381), + [anon_sym_s] = ACTIONS(381), + [anon_sym_us] = ACTIONS(381), + [anon_sym_ms] = ACTIONS(381), + [anon_sym_sec] = ACTIONS(381), + [anon_sym_min] = ACTIONS(381), + [anon_sym_hr] = ACTIONS(381), + [anon_sym_day] = ACTIONS(381), + [anon_sym_wk] = ACTIONS(381), + [anon_sym_b] = ACTIONS(383), + [anon_sym_B] = ACTIONS(383), + [anon_sym_kb] = ACTIONS(383), + [anon_sym_kB] = ACTIONS(383), + [anon_sym_Kb] = ACTIONS(383), + [anon_sym_KB] = ACTIONS(383), + [anon_sym_mb] = ACTIONS(383), + [anon_sym_mB] = ACTIONS(383), + [anon_sym_Mb] = ACTIONS(383), + [anon_sym_MB] = ACTIONS(383), + [anon_sym_gb] = ACTIONS(383), + [anon_sym_gB] = ACTIONS(383), + [anon_sym_Gb] = ACTIONS(383), + [anon_sym_GB] = ACTIONS(383), + [anon_sym_tb] = ACTIONS(383), + [anon_sym_tB] = ACTIONS(383), + [anon_sym_Tb] = ACTIONS(383), + [anon_sym_TB] = ACTIONS(383), + [anon_sym_pb] = ACTIONS(383), + [anon_sym_pB] = ACTIONS(383), + [anon_sym_Pb] = ACTIONS(383), + [anon_sym_PB] = ACTIONS(383), + [anon_sym_eb] = ACTIONS(383), + [anon_sym_eB] = ACTIONS(383), + [anon_sym_Eb] = ACTIONS(383), + [anon_sym_EB] = ACTIONS(383), + [anon_sym_zb] = ACTIONS(383), + [anon_sym_zB] = ACTIONS(383), + [anon_sym_Zb] = ACTIONS(383), + [anon_sym_ZB] = ACTIONS(383), + [anon_sym_kib] = ACTIONS(383), + [anon_sym_kiB] = ACTIONS(383), + [anon_sym_kIB] = ACTIONS(383), + [anon_sym_kIb] = ACTIONS(383), + [anon_sym_Kib] = ACTIONS(383), + [anon_sym_KIb] = ACTIONS(383), + [anon_sym_KIB] = ACTIONS(383), + [anon_sym_mib] = ACTIONS(383), + [anon_sym_miB] = ACTIONS(383), + [anon_sym_mIB] = ACTIONS(383), + [anon_sym_mIb] = ACTIONS(383), + [anon_sym_Mib] = ACTIONS(383), + [anon_sym_MIb] = ACTIONS(383), + [anon_sym_MIB] = ACTIONS(383), + [anon_sym_gib] = ACTIONS(383), + [anon_sym_giB] = ACTIONS(383), + [anon_sym_gIB] = ACTIONS(383), + [anon_sym_gIb] = ACTIONS(383), + [anon_sym_Gib] = ACTIONS(383), + [anon_sym_GIb] = ACTIONS(383), + [anon_sym_GIB] = ACTIONS(383), + [anon_sym_tib] = ACTIONS(383), + [anon_sym_tiB] = ACTIONS(383), + [anon_sym_tIB] = ACTIONS(383), + [anon_sym_tIb] = ACTIONS(383), + [anon_sym_Tib] = ACTIONS(383), + [anon_sym_TIb] = ACTIONS(383), + [anon_sym_TIB] = ACTIONS(383), + [anon_sym_pib] = ACTIONS(383), + [anon_sym_piB] = ACTIONS(383), + [anon_sym_pIB] = ACTIONS(383), + [anon_sym_pIb] = ACTIONS(383), + [anon_sym_Pib] = ACTIONS(383), + [anon_sym_PIb] = ACTIONS(383), + [anon_sym_PIB] = ACTIONS(383), + [anon_sym_eib] = ACTIONS(383), + [anon_sym_eiB] = ACTIONS(383), + [anon_sym_eIB] = ACTIONS(383), + [anon_sym_eIb] = ACTIONS(383), + [anon_sym_Eib] = ACTIONS(383), + [anon_sym_EIb] = ACTIONS(383), + [anon_sym_EIB] = ACTIONS(383), + [anon_sym_zib] = ACTIONS(383), + [anon_sym_ziB] = ACTIONS(383), + [anon_sym_zIB] = ACTIONS(383), + [anon_sym_zIb] = ACTIONS(383), + [anon_sym_Zib] = ACTIONS(383), + [anon_sym_ZIb] = ACTIONS(383), + [anon_sym_ZIB] = ACTIONS(383), [anon_sym_POUND] = ACTIONS(3), }, [108] = { @@ -54681,7 +54758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ZIb] = ACTIONS(115), [anon_sym_ZIB] = ACTIONS(115), [sym_short_flag] = ACTIONS(115), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [109] = { [sym_comment] = STATE(109), @@ -54715,896 +54792,698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(105), [anon_sym_xor] = ACTIONS(105), [anon_sym_or] = ACTIONS(105), - [anon_sym_DOT_DOT_LT] = ACTIONS(689), - [anon_sym_DOT_DOT] = ACTIONS(691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(689), - [anon_sym_ns] = ACTIONS(693), - [anon_sym_s] = ACTIONS(693), - [anon_sym_us] = ACTIONS(693), - [anon_sym_ms] = ACTIONS(693), - [anon_sym_sec] = ACTIONS(693), - [anon_sym_min] = ACTIONS(693), - [anon_sym_hr] = ACTIONS(693), - [anon_sym_day] = ACTIONS(693), - [anon_sym_wk] = ACTIONS(693), - [anon_sym_b] = ACTIONS(695), - [anon_sym_B] = ACTIONS(697), - [anon_sym_kb] = ACTIONS(697), - [anon_sym_kB] = ACTIONS(697), - [anon_sym_Kb] = ACTIONS(697), - [anon_sym_KB] = ACTIONS(697), - [anon_sym_mb] = ACTIONS(697), - [anon_sym_mB] = ACTIONS(697), - [anon_sym_Mb] = ACTIONS(697), - [anon_sym_MB] = ACTIONS(697), - [anon_sym_gb] = ACTIONS(697), - [anon_sym_gB] = ACTIONS(697), - [anon_sym_Gb] = ACTIONS(697), - [anon_sym_GB] = ACTIONS(697), - [anon_sym_tb] = ACTIONS(697), - [anon_sym_tB] = ACTIONS(697), - [anon_sym_Tb] = ACTIONS(697), - [anon_sym_TB] = ACTIONS(697), - [anon_sym_pb] = ACTIONS(697), - [anon_sym_pB] = ACTIONS(697), - [anon_sym_Pb] = ACTIONS(697), - [anon_sym_PB] = ACTIONS(697), - [anon_sym_eb] = ACTIONS(697), - [anon_sym_eB] = ACTIONS(697), - [anon_sym_Eb] = ACTIONS(697), - [anon_sym_EB] = ACTIONS(697), - [anon_sym_zb] = ACTIONS(697), - [anon_sym_zB] = ACTIONS(697), - [anon_sym_Zb] = ACTIONS(697), - [anon_sym_ZB] = ACTIONS(697), - [anon_sym_kib] = ACTIONS(697), - [anon_sym_kiB] = ACTIONS(697), - [anon_sym_kIB] = ACTIONS(697), - [anon_sym_kIb] = ACTIONS(697), - [anon_sym_Kib] = ACTIONS(697), - [anon_sym_KIb] = ACTIONS(697), - [anon_sym_KIB] = ACTIONS(697), - [anon_sym_mib] = ACTIONS(697), - [anon_sym_miB] = ACTIONS(697), - [anon_sym_mIB] = ACTIONS(697), - [anon_sym_mIb] = ACTIONS(697), - [anon_sym_Mib] = ACTIONS(697), - [anon_sym_MIb] = ACTIONS(697), - [anon_sym_MIB] = ACTIONS(697), - [anon_sym_gib] = ACTIONS(697), - [anon_sym_giB] = ACTIONS(697), - [anon_sym_gIB] = ACTIONS(697), - [anon_sym_gIb] = ACTIONS(697), - [anon_sym_Gib] = ACTIONS(697), - [anon_sym_GIb] = ACTIONS(697), - [anon_sym_GIB] = ACTIONS(697), - [anon_sym_tib] = ACTIONS(697), - [anon_sym_tiB] = ACTIONS(697), - [anon_sym_tIB] = ACTIONS(697), - [anon_sym_tIb] = ACTIONS(697), - [anon_sym_Tib] = ACTIONS(697), - [anon_sym_TIb] = ACTIONS(697), - [anon_sym_TIB] = ACTIONS(697), - [anon_sym_pib] = ACTIONS(697), - [anon_sym_piB] = ACTIONS(697), - [anon_sym_pIB] = ACTIONS(697), - [anon_sym_pIb] = ACTIONS(697), - [anon_sym_Pib] = ACTIONS(697), - [anon_sym_PIb] = ACTIONS(697), - [anon_sym_PIB] = ACTIONS(697), - [anon_sym_eib] = ACTIONS(697), - [anon_sym_eiB] = ACTIONS(697), - [anon_sym_eIB] = ACTIONS(697), - [anon_sym_eIb] = ACTIONS(697), - [anon_sym_Eib] = ACTIONS(697), - [anon_sym_EIb] = ACTIONS(697), - [anon_sym_EIB] = ACTIONS(697), - [anon_sym_zib] = ACTIONS(697), - [anon_sym_ziB] = ACTIONS(697), - [anon_sym_zIB] = ACTIONS(697), - [anon_sym_zIb] = ACTIONS(697), - [anon_sym_Zib] = ACTIONS(697), - [anon_sym_ZIb] = ACTIONS(697), - [anon_sym_ZIB] = ACTIONS(697), + [anon_sym_DOT_DOT_LT] = ACTIONS(697), + [anon_sym_DOT_DOT] = ACTIONS(699), + [anon_sym_DOT_DOT_EQ] = ACTIONS(697), + [anon_sym_ns] = ACTIONS(701), + [anon_sym_s] = ACTIONS(701), + [anon_sym_us] = ACTIONS(701), + [anon_sym_ms] = ACTIONS(701), + [anon_sym_sec] = ACTIONS(701), + [anon_sym_min] = ACTIONS(701), + [anon_sym_hr] = ACTIONS(701), + [anon_sym_day] = ACTIONS(701), + [anon_sym_wk] = ACTIONS(701), + [anon_sym_b] = ACTIONS(703), + [anon_sym_B] = ACTIONS(705), + [anon_sym_kb] = ACTIONS(705), + [anon_sym_kB] = ACTIONS(705), + [anon_sym_Kb] = ACTIONS(705), + [anon_sym_KB] = ACTIONS(705), + [anon_sym_mb] = ACTIONS(705), + [anon_sym_mB] = ACTIONS(705), + [anon_sym_Mb] = ACTIONS(705), + [anon_sym_MB] = ACTIONS(705), + [anon_sym_gb] = ACTIONS(705), + [anon_sym_gB] = ACTIONS(705), + [anon_sym_Gb] = ACTIONS(705), + [anon_sym_GB] = ACTIONS(705), + [anon_sym_tb] = ACTIONS(705), + [anon_sym_tB] = ACTIONS(705), + [anon_sym_Tb] = ACTIONS(705), + [anon_sym_TB] = ACTIONS(705), + [anon_sym_pb] = ACTIONS(705), + [anon_sym_pB] = ACTIONS(705), + [anon_sym_Pb] = ACTIONS(705), + [anon_sym_PB] = ACTIONS(705), + [anon_sym_eb] = ACTIONS(705), + [anon_sym_eB] = ACTIONS(705), + [anon_sym_Eb] = ACTIONS(705), + [anon_sym_EB] = ACTIONS(705), + [anon_sym_zb] = ACTIONS(705), + [anon_sym_zB] = ACTIONS(705), + [anon_sym_Zb] = ACTIONS(705), + [anon_sym_ZB] = ACTIONS(705), + [anon_sym_kib] = ACTIONS(705), + [anon_sym_kiB] = ACTIONS(705), + [anon_sym_kIB] = ACTIONS(705), + [anon_sym_kIb] = ACTIONS(705), + [anon_sym_Kib] = ACTIONS(705), + [anon_sym_KIb] = ACTIONS(705), + [anon_sym_KIB] = ACTIONS(705), + [anon_sym_mib] = ACTIONS(705), + [anon_sym_miB] = ACTIONS(705), + [anon_sym_mIB] = ACTIONS(705), + [anon_sym_mIb] = ACTIONS(705), + [anon_sym_Mib] = ACTIONS(705), + [anon_sym_MIb] = ACTIONS(705), + [anon_sym_MIB] = ACTIONS(705), + [anon_sym_gib] = ACTIONS(705), + [anon_sym_giB] = ACTIONS(705), + [anon_sym_gIB] = ACTIONS(705), + [anon_sym_gIb] = ACTIONS(705), + [anon_sym_Gib] = ACTIONS(705), + [anon_sym_GIb] = ACTIONS(705), + [anon_sym_GIB] = ACTIONS(705), + [anon_sym_tib] = ACTIONS(705), + [anon_sym_tiB] = ACTIONS(705), + [anon_sym_tIB] = ACTIONS(705), + [anon_sym_tIb] = ACTIONS(705), + [anon_sym_Tib] = ACTIONS(705), + [anon_sym_TIb] = ACTIONS(705), + [anon_sym_TIB] = ACTIONS(705), + [anon_sym_pib] = ACTIONS(705), + [anon_sym_piB] = ACTIONS(705), + [anon_sym_pIB] = ACTIONS(705), + [anon_sym_pIb] = ACTIONS(705), + [anon_sym_Pib] = ACTIONS(705), + [anon_sym_PIb] = ACTIONS(705), + [anon_sym_PIB] = ACTIONS(705), + [anon_sym_eib] = ACTIONS(705), + [anon_sym_eiB] = ACTIONS(705), + [anon_sym_eIB] = ACTIONS(705), + [anon_sym_eIb] = ACTIONS(705), + [anon_sym_Eib] = ACTIONS(705), + [anon_sym_EIb] = ACTIONS(705), + [anon_sym_EIB] = ACTIONS(705), + [anon_sym_zib] = ACTIONS(705), + [anon_sym_ziB] = ACTIONS(705), + [anon_sym_zIB] = ACTIONS(705), + [anon_sym_zIb] = ACTIONS(705), + [anon_sym_Zib] = ACTIONS(705), + [anon_sym_ZIb] = ACTIONS(705), + [anon_sym_ZIB] = ACTIONS(705), [sym_short_flag] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [110] = { - [sym_path] = STATE(140), + [sym_cell_path] = STATE(166), + [sym_path] = STATE(120), [sym_comment] = STATE(110), - [aux_sym_cell_path_repeat1] = STATE(110), - [anon_sym_export] = ACTIONS(699), - [anon_sym_alias] = ACTIONS(699), - [anon_sym_let] = ACTIONS(699), - [anon_sym_let_DASHenv] = ACTIONS(699), - [anon_sym_mut] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [sym_cmd_identifier] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_def] = ACTIONS(699), - [anon_sym_def_DASHenv] = ACTIONS(699), - [anon_sym_export_DASHenv] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_module] = ACTIONS(699), - [anon_sym_use] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_error] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(699), - [anon_sym_loop] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_match] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(703), - [anon_sym_try] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_source] = ACTIONS(699), - [anon_sym_source_DASHenv] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_hide] = ACTIONS(699), - [anon_sym_hide_DASHenv] = ACTIONS(699), - [anon_sym_overlay] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_where] = ACTIONS(699), - [anon_sym_STAR_STAR] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_mod] = ACTIONS(699), - [anon_sym_SLASH_SLASH] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_bit_DASHshl] = ACTIONS(699), - [anon_sym_bit_DASHshr] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT2] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_not_DASHin] = ACTIONS(699), - [anon_sym_starts_DASHwith] = ACTIONS(699), - [anon_sym_ends_DASHwith] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(699), - [anon_sym_BANG_TILDE] = ACTIONS(699), - [anon_sym_bit_DASHand] = ACTIONS(699), - [anon_sym_bit_DASHxor] = ACTIONS(699), - [anon_sym_bit_DASHor] = ACTIONS(699), - [anon_sym_and] = ACTIONS(699), - [anon_sym_xor] = ACTIONS(699), - [anon_sym_or] = ACTIONS(699), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), + [anon_sym_export] = ACTIONS(707), + [anon_sym_alias] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_let_DASHenv] = ACTIONS(707), + [anon_sym_mut] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [sym_cmd_identifier] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_def] = ACTIONS(707), + [anon_sym_def_DASHenv] = ACTIONS(707), + [anon_sym_export_DASHenv] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_error] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_in] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_source] = ACTIONS(707), + [anon_sym_source_DASHenv] = ACTIONS(707), + [anon_sym_register] = ACTIONS(707), + [anon_sym_hide] = ACTIONS(707), + [anon_sym_hide_DASHenv] = ACTIONS(707), + [anon_sym_overlay] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_SLASH_SLASH] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_bit_DASHshl] = ACTIONS(707), + [anon_sym_bit_DASHshr] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_LT2] = ACTIONS(707), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_not_DASHin] = ACTIONS(707), + [anon_sym_starts_DASHwith] = ACTIONS(707), + [anon_sym_ends_DASHwith] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_BANG_TILDE] = ACTIONS(707), + [anon_sym_bit_DASHand] = ACTIONS(707), + [anon_sym_bit_DASHxor] = ACTIONS(707), + [anon_sym_bit_DASHor] = ACTIONS(707), + [anon_sym_and] = ACTIONS(707), + [anon_sym_xor] = ACTIONS(707), + [anon_sym_or] = ACTIONS(707), + [anon_sym_not] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), [anon_sym_POUND] = ACTIONS(3), }, [111] = { - [sym_cell_path] = STATE(158), - [sym_path] = STATE(116), + [sym_cell_path] = STATE(188), + [sym_path] = STATE(120), [sym_comment] = STATE(111), - [anon_sym_export] = ACTIONS(706), - [anon_sym_alias] = ACTIONS(706), - [anon_sym_let] = ACTIONS(706), - [anon_sym_let_DASHenv] = ACTIONS(706), - [anon_sym_mut] = ACTIONS(706), - [anon_sym_const] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [sym_cmd_identifier] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_def] = ACTIONS(706), - [anon_sym_def_DASHenv] = ACTIONS(706), - [anon_sym_export_DASHenv] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(706), - [anon_sym_module] = ACTIONS(706), - [anon_sym_use] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_error] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_in] = ACTIONS(706), - [anon_sym_loop] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_match] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_source] = ACTIONS(706), - [anon_sym_source_DASHenv] = ACTIONS(706), - [anon_sym_register] = ACTIONS(706), - [anon_sym_hide] = ACTIONS(706), - [anon_sym_hide_DASHenv] = ACTIONS(706), - [anon_sym_overlay] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_where] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_mod] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_bit_DASHshl] = ACTIONS(706), - [anon_sym_bit_DASHshr] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_LT2] = ACTIONS(706), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_not_DASHin] = ACTIONS(706), - [anon_sym_starts_DASHwith] = ACTIONS(706), - [anon_sym_ends_DASHwith] = ACTIONS(706), - [anon_sym_EQ_TILDE] = ACTIONS(706), - [anon_sym_BANG_TILDE] = ACTIONS(706), - [anon_sym_bit_DASHand] = ACTIONS(706), - [anon_sym_bit_DASHxor] = ACTIONS(706), - [anon_sym_bit_DASHor] = ACTIONS(706), - [anon_sym_and] = ACTIONS(706), - [anon_sym_xor] = ACTIONS(706), - [anon_sym_or] = ACTIONS(706), - [anon_sym_not] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), + [anon_sym_export] = ACTIONS(713), + [anon_sym_alias] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_let_DASHenv] = ACTIONS(713), + [anon_sym_mut] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [sym_cmd_identifier] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_def] = ACTIONS(713), + [anon_sym_def_DASHenv] = ACTIONS(713), + [anon_sym_export_DASHenv] = ACTIONS(713), + [anon_sym_extern] = ACTIONS(713), + [anon_sym_module] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_error] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_source] = ACTIONS(713), + [anon_sym_source_DASHenv] = ACTIONS(713), + [anon_sym_register] = ACTIONS(713), + [anon_sym_hide] = ACTIONS(713), + [anon_sym_hide_DASHenv] = ACTIONS(713), + [anon_sym_overlay] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_SLASH_SLASH] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_bit_DASHshl] = ACTIONS(713), + [anon_sym_bit_DASHshr] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_LT2] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_not_DASHin] = ACTIONS(713), + [anon_sym_starts_DASHwith] = ACTIONS(713), + [anon_sym_ends_DASHwith] = ACTIONS(713), + [anon_sym_EQ_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_bit_DASHand] = ACTIONS(713), + [anon_sym_bit_DASHxor] = ACTIONS(713), + [anon_sym_bit_DASHor] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_not] = ACTIONS(713), + [anon_sym_DOT_DOT_LT] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(713), + [sym_val_nothing] = ACTIONS(713), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [aux_sym_val_number_token1] = ACTIONS(713), + [aux_sym_val_number_token2] = ACTIONS(713), + [aux_sym_val_number_token3] = ACTIONS(713), + [aux_sym_val_number_token4] = ACTIONS(713), + [aux_sym_val_number_token5] = ACTIONS(713), + [anon_sym_inf] = ACTIONS(713), + [anon_sym_DASHinf] = ACTIONS(713), + [anon_sym_NaN] = ACTIONS(713), + [anon_sym_0b] = ACTIONS(713), + [anon_sym_0o] = ACTIONS(713), + [anon_sym_0x] = ACTIONS(713), + [sym_val_date] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym__str_single_quotes] = ACTIONS(713), + [sym__str_back_ticks] = ACTIONS(713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), [anon_sym_POUND] = ACTIONS(3), }, [112] = { - [sym_cell_path] = STATE(193), - [sym_path] = STATE(116), + [sym_cell_path] = STATE(200), + [sym_path] = STATE(120), [sym_comment] = STATE(112), - [anon_sym_export] = ACTIONS(712), - [anon_sym_alias] = ACTIONS(712), - [anon_sym_let] = ACTIONS(712), - [anon_sym_let_DASHenv] = ACTIONS(712), - [anon_sym_mut] = ACTIONS(712), - [anon_sym_const] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [sym_cmd_identifier] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_def] = ACTIONS(712), - [anon_sym_def_DASHenv] = ACTIONS(712), - [anon_sym_export_DASHenv] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(712), - [anon_sym_module] = ACTIONS(712), - [anon_sym_use] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_error] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_break] = ACTIONS(712), - [anon_sym_continue] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [anon_sym_loop] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_match] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_source] = ACTIONS(712), - [anon_sym_source_DASHenv] = ACTIONS(712), - [anon_sym_register] = ACTIONS(712), - [anon_sym_hide] = ACTIONS(712), - [anon_sym_hide_DASHenv] = ACTIONS(712), - [anon_sym_overlay] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_where] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_mod] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_bit_DASHshl] = ACTIONS(712), - [anon_sym_bit_DASHshr] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT2] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_not_DASHin] = ACTIONS(712), - [anon_sym_starts_DASHwith] = ACTIONS(712), - [anon_sym_ends_DASHwith] = ACTIONS(712), - [anon_sym_EQ_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_bit_DASHand] = ACTIONS(712), - [anon_sym_bit_DASHxor] = ACTIONS(712), - [anon_sym_bit_DASHor] = ACTIONS(712), - [anon_sym_and] = ACTIONS(712), - [anon_sym_xor] = ACTIONS(712), - [anon_sym_or] = ACTIONS(712), - [anon_sym_not] = ACTIONS(712), - [anon_sym_DOT_DOT_LT] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(712), - [sym_val_nothing] = ACTIONS(712), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [aux_sym_val_number_token1] = ACTIONS(712), - [aux_sym_val_number_token2] = ACTIONS(712), - [aux_sym_val_number_token3] = ACTIONS(712), - [aux_sym_val_number_token4] = ACTIONS(712), - [aux_sym_val_number_token5] = ACTIONS(712), - [anon_sym_inf] = ACTIONS(712), - [anon_sym_DASHinf] = ACTIONS(712), - [anon_sym_NaN] = ACTIONS(712), - [anon_sym_0b] = ACTIONS(712), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [sym__str_single_quotes] = ACTIONS(712), - [sym__str_back_ticks] = ACTIONS(712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), + [anon_sym_export] = ACTIONS(717), + [anon_sym_alias] = ACTIONS(717), + [anon_sym_let] = ACTIONS(717), + [anon_sym_let_DASHenv] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(717), + [sym_cmd_identifier] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_def] = ACTIONS(717), + [anon_sym_def_DASHenv] = ACTIONS(717), + [anon_sym_export_DASHenv] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_use] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_error] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_in] = ACTIONS(717), + [anon_sym_loop] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_match] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_source] = ACTIONS(717), + [anon_sym_source_DASHenv] = ACTIONS(717), + [anon_sym_register] = ACTIONS(717), + [anon_sym_hide] = ACTIONS(717), + [anon_sym_hide_DASHenv] = ACTIONS(717), + [anon_sym_overlay] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_where] = ACTIONS(717), + [anon_sym_STAR_STAR] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_mod] = ACTIONS(717), + [anon_sym_SLASH_SLASH] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_bit_DASHshl] = ACTIONS(717), + [anon_sym_bit_DASHshr] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(717), + [anon_sym_BANG_EQ] = ACTIONS(717), + [anon_sym_LT2] = ACTIONS(717), + [anon_sym_LT_EQ] = ACTIONS(717), + [anon_sym_GT_EQ] = ACTIONS(717), + [anon_sym_not_DASHin] = ACTIONS(717), + [anon_sym_starts_DASHwith] = ACTIONS(717), + [anon_sym_ends_DASHwith] = ACTIONS(717), + [anon_sym_EQ_TILDE] = ACTIONS(717), + [anon_sym_BANG_TILDE] = ACTIONS(717), + [anon_sym_bit_DASHand] = ACTIONS(717), + [anon_sym_bit_DASHxor] = ACTIONS(717), + [anon_sym_bit_DASHor] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_xor] = ACTIONS(717), + [anon_sym_or] = ACTIONS(717), + [anon_sym_not] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), [anon_sym_POUND] = ACTIONS(3), }, [113] = { - [sym_cell_path] = STATE(148), - [sym_path] = STATE(116), + [sym_cell_path] = STATE(186), + [sym_path] = STATE(120), [sym_comment] = STATE(113), - [anon_sym_export] = ACTIONS(716), - [anon_sym_alias] = ACTIONS(716), - [anon_sym_let] = ACTIONS(716), - [anon_sym_let_DASHenv] = ACTIONS(716), - [anon_sym_mut] = ACTIONS(716), - [anon_sym_const] = ACTIONS(716), - [anon_sym_SEMI] = ACTIONS(716), - [sym_cmd_identifier] = ACTIONS(716), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_def] = ACTIONS(716), - [anon_sym_def_DASHenv] = ACTIONS(716), - [anon_sym_export_DASHenv] = ACTIONS(716), - [anon_sym_extern] = ACTIONS(716), - [anon_sym_module] = ACTIONS(716), - [anon_sym_use] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(716), - [anon_sym_error] = ACTIONS(716), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_break] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(716), - [anon_sym_for] = ACTIONS(716), - [anon_sym_in] = ACTIONS(716), - [anon_sym_loop] = ACTIONS(716), - [anon_sym_while] = ACTIONS(716), - [anon_sym_do] = ACTIONS(716), - [anon_sym_if] = ACTIONS(716), - [anon_sym_match] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(716), - [anon_sym_return] = ACTIONS(716), - [anon_sym_source] = ACTIONS(716), - [anon_sym_source_DASHenv] = ACTIONS(716), - [anon_sym_register] = ACTIONS(716), - [anon_sym_hide] = ACTIONS(716), - [anon_sym_hide_DASHenv] = ACTIONS(716), - [anon_sym_overlay] = ACTIONS(716), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_where] = ACTIONS(716), - [anon_sym_STAR_STAR] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), - [anon_sym_mod] = ACTIONS(716), - [anon_sym_SLASH_SLASH] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_bit_DASHshl] = ACTIONS(716), - [anon_sym_bit_DASHshr] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(716), - [anon_sym_LT2] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_not_DASHin] = ACTIONS(716), - [anon_sym_starts_DASHwith] = ACTIONS(716), - [anon_sym_ends_DASHwith] = ACTIONS(716), - [anon_sym_EQ_TILDE] = ACTIONS(716), - [anon_sym_BANG_TILDE] = ACTIONS(716), - [anon_sym_bit_DASHand] = ACTIONS(716), - [anon_sym_bit_DASHxor] = ACTIONS(716), - [anon_sym_bit_DASHor] = ACTIONS(716), - [anon_sym_and] = ACTIONS(716), - [anon_sym_xor] = ACTIONS(716), - [anon_sym_or] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_DOT_DOT_LT] = ACTIONS(716), - [anon_sym_DOT_DOT] = ACTIONS(716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(716), - [sym_val_nothing] = ACTIONS(716), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [aux_sym_val_number_token1] = ACTIONS(716), - [aux_sym_val_number_token2] = ACTIONS(716), - [aux_sym_val_number_token3] = ACTIONS(716), - [aux_sym_val_number_token4] = ACTIONS(716), - [aux_sym_val_number_token5] = ACTIONS(716), - [anon_sym_inf] = ACTIONS(716), - [anon_sym_DASHinf] = ACTIONS(716), - [anon_sym_NaN] = ACTIONS(716), - [anon_sym_0b] = ACTIONS(716), - [anon_sym_0o] = ACTIONS(716), - [anon_sym_0x] = ACTIONS(716), - [sym_val_date] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(716), - [sym__str_single_quotes] = ACTIONS(716), - [sym__str_back_ticks] = ACTIONS(716), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), + [anon_sym_export] = ACTIONS(721), + [anon_sym_alias] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_let_DASHenv] = ACTIONS(721), + [anon_sym_mut] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [sym_cmd_identifier] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_def] = ACTIONS(721), + [anon_sym_def_DASHenv] = ACTIONS(721), + [anon_sym_export_DASHenv] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_module] = ACTIONS(721), + [anon_sym_use] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_error] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_in] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_while] = ACTIONS(721), + [anon_sym_do] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_source] = ACTIONS(721), + [anon_sym_source_DASHenv] = ACTIONS(721), + [anon_sym_register] = ACTIONS(721), + [anon_sym_hide] = ACTIONS(721), + [anon_sym_hide_DASHenv] = ACTIONS(721), + [anon_sym_overlay] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_where] = ACTIONS(721), + [anon_sym_STAR_STAR] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_SLASH_SLASH] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_bit_DASHshl] = ACTIONS(721), + [anon_sym_bit_DASHshr] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [anon_sym_LT2] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(721), + [anon_sym_GT_EQ] = ACTIONS(721), + [anon_sym_not_DASHin] = ACTIONS(721), + [anon_sym_starts_DASHwith] = ACTIONS(721), + [anon_sym_ends_DASHwith] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_BANG_TILDE] = ACTIONS(721), + [anon_sym_bit_DASHand] = ACTIONS(721), + [anon_sym_bit_DASHxor] = ACTIONS(721), + [anon_sym_bit_DASHor] = ACTIONS(721), + [anon_sym_and] = ACTIONS(721), + [anon_sym_xor] = ACTIONS(721), + [anon_sym_or] = ACTIONS(721), + [anon_sym_not] = ACTIONS(721), + [anon_sym_DOT_DOT_LT] = ACTIONS(721), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(721), + [sym_val_nothing] = ACTIONS(721), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [aux_sym_val_number_token1] = ACTIONS(721), + [aux_sym_val_number_token2] = ACTIONS(721), + [aux_sym_val_number_token3] = ACTIONS(721), + [aux_sym_val_number_token4] = ACTIONS(721), + [aux_sym_val_number_token5] = ACTIONS(721), + [anon_sym_inf] = ACTIONS(721), + [anon_sym_DASHinf] = ACTIONS(721), + [anon_sym_NaN] = ACTIONS(721), + [anon_sym_0b] = ACTIONS(721), + [anon_sym_0o] = ACTIONS(721), + [anon_sym_0x] = ACTIONS(721), + [sym_val_date] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym__str_single_quotes] = ACTIONS(721), + [sym__str_back_ticks] = ACTIONS(721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(721), [anon_sym_POUND] = ACTIONS(3), }, [114] = { - [sym_cell_path] = STATE(173), - [sym_path] = STATE(116), + [sym_cell_path] = STATE(202), + [sym_path] = STATE(120), [sym_comment] = STATE(114), - [anon_sym_export] = ACTIONS(720), - [anon_sym_alias] = ACTIONS(720), - [anon_sym_let] = ACTIONS(720), - [anon_sym_let_DASHenv] = ACTIONS(720), - [anon_sym_mut] = ACTIONS(720), - [anon_sym_const] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(720), - [sym_cmd_identifier] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_def] = ACTIONS(720), - [anon_sym_def_DASHenv] = ACTIONS(720), - [anon_sym_export_DASHenv] = ACTIONS(720), - [anon_sym_extern] = ACTIONS(720), - [anon_sym_module] = ACTIONS(720), - [anon_sym_use] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [anon_sym_error] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_break] = ACTIONS(720), - [anon_sym_continue] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_in] = ACTIONS(720), - [anon_sym_loop] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_do] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_match] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(720), - [anon_sym_return] = ACTIONS(720), - [anon_sym_source] = ACTIONS(720), - [anon_sym_source_DASHenv] = ACTIONS(720), - [anon_sym_register] = ACTIONS(720), - [anon_sym_hide] = ACTIONS(720), - [anon_sym_hide_DASHenv] = ACTIONS(720), - [anon_sym_overlay] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_where] = ACTIONS(720), - [anon_sym_STAR_STAR] = ACTIONS(720), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_mod] = ACTIONS(720), - [anon_sym_SLASH_SLASH] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_bit_DASHshl] = ACTIONS(720), - [anon_sym_bit_DASHshr] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_LT2] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_not_DASHin] = ACTIONS(720), - [anon_sym_starts_DASHwith] = ACTIONS(720), - [anon_sym_ends_DASHwith] = ACTIONS(720), - [anon_sym_EQ_TILDE] = ACTIONS(720), - [anon_sym_BANG_TILDE] = ACTIONS(720), - [anon_sym_bit_DASHand] = ACTIONS(720), - [anon_sym_bit_DASHxor] = ACTIONS(720), - [anon_sym_bit_DASHor] = ACTIONS(720), - [anon_sym_and] = ACTIONS(720), - [anon_sym_xor] = ACTIONS(720), - [anon_sym_or] = ACTIONS(720), - [anon_sym_not] = ACTIONS(720), - [anon_sym_DOT_DOT_LT] = ACTIONS(720), - [anon_sym_DOT_DOT] = ACTIONS(720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(720), - [sym_val_nothing] = ACTIONS(720), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [aux_sym_val_number_token1] = ACTIONS(720), - [aux_sym_val_number_token2] = ACTIONS(720), - [aux_sym_val_number_token3] = ACTIONS(720), - [aux_sym_val_number_token4] = ACTIONS(720), - [aux_sym_val_number_token5] = ACTIONS(720), - [anon_sym_inf] = ACTIONS(720), - [anon_sym_DASHinf] = ACTIONS(720), - [anon_sym_NaN] = ACTIONS(720), - [anon_sym_0b] = ACTIONS(720), - [anon_sym_0o] = ACTIONS(720), - [anon_sym_0x] = ACTIONS(720), - [sym_val_date] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym__str_single_quotes] = ACTIONS(720), - [sym__str_back_ticks] = ACTIONS(720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(720), - [anon_sym_CARET] = ACTIONS(720), + [anon_sym_export] = ACTIONS(725), + [anon_sym_alias] = ACTIONS(725), + [anon_sym_let] = ACTIONS(725), + [anon_sym_let_DASHenv] = ACTIONS(725), + [anon_sym_mut] = ACTIONS(725), + [anon_sym_const] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [sym_cmd_identifier] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_def] = ACTIONS(725), + [anon_sym_def_DASHenv] = ACTIONS(725), + [anon_sym_export_DASHenv] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(725), + [anon_sym_module] = ACTIONS(725), + [anon_sym_use] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_error] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [anon_sym_loop] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_source] = ACTIONS(725), + [anon_sym_source_DASHenv] = ACTIONS(725), + [anon_sym_register] = ACTIONS(725), + [anon_sym_hide] = ACTIONS(725), + [anon_sym_hide_DASHenv] = ACTIONS(725), + [anon_sym_overlay] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_where] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_mod] = ACTIONS(725), + [anon_sym_SLASH_SLASH] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_bit_DASHshl] = ACTIONS(725), + [anon_sym_bit_DASHshr] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_LT2] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_not_DASHin] = ACTIONS(725), + [anon_sym_starts_DASHwith] = ACTIONS(725), + [anon_sym_ends_DASHwith] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_bit_DASHand] = ACTIONS(725), + [anon_sym_bit_DASHxor] = ACTIONS(725), + [anon_sym_bit_DASHor] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_not] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), [anon_sym_POUND] = ACTIONS(3), }, [115] = { - [sym_cell_path] = STATE(160), - [sym_path] = STATE(116), + [sym_path] = STATE(140), [sym_comment] = STATE(115), - [anon_sym_export] = ACTIONS(724), - [anon_sym_alias] = ACTIONS(724), - [anon_sym_let] = ACTIONS(724), - [anon_sym_let_DASHenv] = ACTIONS(724), - [anon_sym_mut] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [sym_cmd_identifier] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_def] = ACTIONS(724), - [anon_sym_def_DASHenv] = ACTIONS(724), - [anon_sym_export_DASHenv] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_module] = ACTIONS(724), - [anon_sym_use] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_error] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_break] = ACTIONS(724), - [anon_sym_continue] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_in] = ACTIONS(724), - [anon_sym_loop] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_do] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_match] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(724), - [anon_sym_return] = ACTIONS(724), - [anon_sym_source] = ACTIONS(724), - [anon_sym_source_DASHenv] = ACTIONS(724), - [anon_sym_register] = ACTIONS(724), - [anon_sym_hide] = ACTIONS(724), - [anon_sym_hide_DASHenv] = ACTIONS(724), - [anon_sym_overlay] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_where] = ACTIONS(724), - [anon_sym_STAR_STAR] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_mod] = ACTIONS(724), - [anon_sym_SLASH_SLASH] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_bit_DASHshl] = ACTIONS(724), - [anon_sym_bit_DASHshr] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(724), - [anon_sym_BANG_EQ] = ACTIONS(724), - [anon_sym_LT2] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(724), - [anon_sym_not_DASHin] = ACTIONS(724), - [anon_sym_starts_DASHwith] = ACTIONS(724), - [anon_sym_ends_DASHwith] = ACTIONS(724), - [anon_sym_EQ_TILDE] = ACTIONS(724), - [anon_sym_BANG_TILDE] = ACTIONS(724), - [anon_sym_bit_DASHand] = ACTIONS(724), - [anon_sym_bit_DASHxor] = ACTIONS(724), - [anon_sym_bit_DASHor] = ACTIONS(724), - [anon_sym_and] = ACTIONS(724), - [anon_sym_xor] = ACTIONS(724), - [anon_sym_or] = ACTIONS(724), - [anon_sym_not] = ACTIONS(724), - [anon_sym_DOT_DOT_LT] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(724), - [sym_val_nothing] = ACTIONS(724), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [aux_sym_val_number_token1] = ACTIONS(724), - [aux_sym_val_number_token2] = ACTIONS(724), - [aux_sym_val_number_token3] = ACTIONS(724), - [aux_sym_val_number_token4] = ACTIONS(724), - [aux_sym_val_number_token5] = ACTIONS(724), - [anon_sym_inf] = ACTIONS(724), - [anon_sym_DASHinf] = ACTIONS(724), - [anon_sym_NaN] = ACTIONS(724), - [anon_sym_0b] = ACTIONS(724), - [anon_sym_0o] = ACTIONS(724), - [anon_sym_0x] = ACTIONS(724), - [sym_val_date] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [sym__str_single_quotes] = ACTIONS(724), - [sym__str_back_ticks] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(724), - [anon_sym_CARET] = ACTIONS(724), + [aux_sym_cell_path_repeat1] = STATE(115), + [anon_sym_export] = ACTIONS(729), + [anon_sym_alias] = ACTIONS(729), + [anon_sym_let] = ACTIONS(729), + [anon_sym_let_DASHenv] = ACTIONS(729), + [anon_sym_mut] = ACTIONS(729), + [anon_sym_const] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [sym_cmd_identifier] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_def] = ACTIONS(729), + [anon_sym_def_DASHenv] = ACTIONS(729), + [anon_sym_export_DASHenv] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_module] = ACTIONS(729), + [anon_sym_use] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_error] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_in] = ACTIONS(729), + [anon_sym_loop] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_match] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(733), + [anon_sym_try] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_source] = ACTIONS(729), + [anon_sym_source_DASHenv] = ACTIONS(729), + [anon_sym_register] = ACTIONS(729), + [anon_sym_hide] = ACTIONS(729), + [anon_sym_hide_DASHenv] = ACTIONS(729), + [anon_sym_overlay] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_where] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_SLASH_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_bit_DASHshl] = ACTIONS(729), + [anon_sym_bit_DASHshr] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_LT2] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_not_DASHin] = ACTIONS(729), + [anon_sym_starts_DASHwith] = ACTIONS(729), + [anon_sym_ends_DASHwith] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_bit_DASHand] = ACTIONS(729), + [anon_sym_bit_DASHxor] = ACTIONS(729), + [anon_sym_bit_DASHor] = ACTIONS(729), + [anon_sym_and] = ACTIONS(729), + [anon_sym_xor] = ACTIONS(729), + [anon_sym_or] = ACTIONS(729), + [anon_sym_not] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), [anon_sym_POUND] = ACTIONS(3), }, [116] = { - [sym_path] = STATE(140), + [sym_cell_path] = STATE(178), + [sym_path] = STATE(120), [sym_comment] = STATE(116), - [aux_sym_cell_path_repeat1] = STATE(117), - [anon_sym_export] = ACTIONS(728), - [anon_sym_alias] = ACTIONS(728), - [anon_sym_let] = ACTIONS(728), - [anon_sym_let_DASHenv] = ACTIONS(728), - [anon_sym_mut] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [sym_cmd_identifier] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_def] = ACTIONS(728), - [anon_sym_def_DASHenv] = ACTIONS(728), - [anon_sym_export_DASHenv] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(728), - [anon_sym_module] = ACTIONS(728), - [anon_sym_use] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_error] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_in] = ACTIONS(728), - [anon_sym_loop] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_do] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_match] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_source] = ACTIONS(728), - [anon_sym_source_DASHenv] = ACTIONS(728), - [anon_sym_register] = ACTIONS(728), - [anon_sym_hide] = ACTIONS(728), - [anon_sym_hide_DASHenv] = ACTIONS(728), - [anon_sym_overlay] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_where] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_bit_DASHshl] = ACTIONS(728), - [anon_sym_bit_DASHshr] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(728), - [anon_sym_BANG_EQ] = ACTIONS(728), - [anon_sym_LT2] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(728), - [anon_sym_not_DASHin] = ACTIONS(728), - [anon_sym_starts_DASHwith] = ACTIONS(728), - [anon_sym_ends_DASHwith] = ACTIONS(728), - [anon_sym_EQ_TILDE] = ACTIONS(728), - [anon_sym_BANG_TILDE] = ACTIONS(728), - [anon_sym_bit_DASHand] = ACTIONS(728), - [anon_sym_bit_DASHxor] = ACTIONS(728), - [anon_sym_bit_DASHor] = ACTIONS(728), - [anon_sym_and] = ACTIONS(728), - [anon_sym_xor] = ACTIONS(728), - [anon_sym_or] = ACTIONS(728), - [anon_sym_not] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(3), - }, - [117] = { - [sym_path] = STATE(140), - [sym_comment] = STATE(117), - [aux_sym_cell_path_repeat1] = STATE(110), - [anon_sym_export] = ACTIONS(732), - [anon_sym_alias] = ACTIONS(732), - [anon_sym_let] = ACTIONS(732), - [anon_sym_let_DASHenv] = ACTIONS(732), - [anon_sym_mut] = ACTIONS(732), - [anon_sym_const] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [sym_cmd_identifier] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_def] = ACTIONS(732), - [anon_sym_def_DASHenv] = ACTIONS(732), - [anon_sym_export_DASHenv] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(732), - [anon_sym_module] = ACTIONS(732), - [anon_sym_use] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_error] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [anon_sym_loop] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_match] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(710), - [anon_sym_try] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_source] = ACTIONS(732), - [anon_sym_source_DASHenv] = ACTIONS(732), - [anon_sym_register] = ACTIONS(732), - [anon_sym_hide] = ACTIONS(732), - [anon_sym_hide_DASHenv] = ACTIONS(732), - [anon_sym_overlay] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_where] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_mod] = ACTIONS(732), - [anon_sym_SLASH_SLASH] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_bit_DASHshl] = ACTIONS(732), - [anon_sym_bit_DASHshr] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_LT2] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_not_DASHin] = ACTIONS(732), - [anon_sym_starts_DASHwith] = ACTIONS(732), - [anon_sym_ends_DASHwith] = ACTIONS(732), - [anon_sym_EQ_TILDE] = ACTIONS(732), - [anon_sym_BANG_TILDE] = ACTIONS(732), - [anon_sym_bit_DASHand] = ACTIONS(732), - [anon_sym_bit_DASHxor] = ACTIONS(732), - [anon_sym_bit_DASHor] = ACTIONS(732), - [anon_sym_and] = ACTIONS(732), - [anon_sym_xor] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [anon_sym_not] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(3), - }, - [118] = { - [sym_cell_path] = STATE(175), - [sym_path] = STATE(116), - [sym_comment] = STATE(118), [anon_sym_export] = ACTIONS(736), [anon_sym_alias] = ACTIONS(736), [anon_sym_let] = ACTIONS(736), @@ -55638,7 +55517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(736), [anon_sym_LBRACE] = ACTIONS(736), [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(711), [anon_sym_try] = ACTIONS(736), [anon_sym_return] = ACTIONS(736), [anon_sym_source] = ACTIONS(736), @@ -55700,10 +55579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [119] = { - [sym_cell_path] = STATE(192), - [sym_path] = STATE(116), - [sym_comment] = STATE(119), + [117] = { + [sym_path] = STATE(140), + [sym_comment] = STATE(117), + [aux_sym_cell_path_repeat1] = STATE(115), [anon_sym_export] = ACTIONS(740), [anon_sym_alias] = ACTIONS(740), [anon_sym_let] = ACTIONS(740), @@ -55737,7 +55616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(740), [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(711), [anon_sym_try] = ACTIONS(740), [anon_sym_return] = ACTIONS(740), [anon_sym_source] = ACTIONS(740), @@ -55799,10 +55678,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [120] = { - [sym_cell_path] = STATE(204), - [sym_path] = STATE(116), - [sym_comment] = STATE(120), + [118] = { + [sym_cell_path] = STATE(162), + [sym_path] = STATE(120), + [sym_comment] = STATE(118), [anon_sym_export] = ACTIONS(744), [anon_sym_alias] = ACTIONS(744), [anon_sym_let] = ACTIONS(744), @@ -55836,7 +55715,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(744), [anon_sym_LBRACE] = ACTIONS(744), [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(710), + [anon_sym_DOT] = ACTIONS(711), [anon_sym_try] = ACTIONS(744), [anon_sym_return] = ACTIONS(744), [anon_sym_source] = ACTIONS(744), @@ -55898,8 +55777,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [121] = { - [sym_comment] = STATE(121), + [119] = { + [sym_cell_path] = STATE(180), + [sym_path] = STATE(120), + [sym_comment] = STATE(119), [anon_sym_export] = ACTIONS(748), [anon_sym_alias] = ACTIONS(748), [anon_sym_let] = ACTIONS(748), @@ -55933,7 +55814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(748), [anon_sym_LBRACE] = ACTIONS(748), [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(711), [anon_sym_try] = ACTIONS(748), [anon_sym_return] = ACTIONS(748), [anon_sym_source] = ACTIONS(748), @@ -55944,7 +55825,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(748), [anon_sym_STAR] = ACTIONS(748), [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(752), [anon_sym_STAR_STAR] = ACTIONS(748), [anon_sym_PLUS_PLUS] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(748), @@ -55996,402 +55876,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, - [122] = { - [sym_cell_path] = STATE(243), - [sym_path] = STATE(134), - [sym_comment] = STATE(122), - [ts_builtin_sym_end] = ACTIONS(726), - [anon_sym_export] = ACTIONS(724), - [anon_sym_alias] = ACTIONS(724), - [anon_sym_let] = ACTIONS(724), - [anon_sym_let_DASHenv] = ACTIONS(724), - [anon_sym_mut] = ACTIONS(724), - [anon_sym_const] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [sym_cmd_identifier] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_def] = ACTIONS(724), - [anon_sym_def_DASHenv] = ACTIONS(724), - [anon_sym_export_DASHenv] = ACTIONS(724), - [anon_sym_extern] = ACTIONS(724), - [anon_sym_module] = ACTIONS(724), - [anon_sym_use] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_error] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_break] = ACTIONS(724), - [anon_sym_continue] = ACTIONS(724), - [anon_sym_for] = ACTIONS(724), - [anon_sym_in] = ACTIONS(724), - [anon_sym_loop] = ACTIONS(724), - [anon_sym_while] = ACTIONS(724), - [anon_sym_do] = ACTIONS(724), - [anon_sym_if] = ACTIONS(724), - [anon_sym_match] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(724), - [anon_sym_return] = ACTIONS(724), - [anon_sym_source] = ACTIONS(724), - [anon_sym_source_DASHenv] = ACTIONS(724), - [anon_sym_register] = ACTIONS(724), - [anon_sym_hide] = ACTIONS(724), - [anon_sym_hide_DASHenv] = ACTIONS(724), - [anon_sym_overlay] = ACTIONS(724), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_where] = ACTIONS(724), - [anon_sym_STAR_STAR] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_mod] = ACTIONS(724), - [anon_sym_SLASH_SLASH] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_bit_DASHshl] = ACTIONS(724), - [anon_sym_bit_DASHshr] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(724), - [anon_sym_BANG_EQ] = ACTIONS(724), - [anon_sym_LT2] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(724), - [anon_sym_not_DASHin] = ACTIONS(724), - [anon_sym_starts_DASHwith] = ACTIONS(724), - [anon_sym_ends_DASHwith] = ACTIONS(724), - [anon_sym_EQ_TILDE] = ACTIONS(724), - [anon_sym_BANG_TILDE] = ACTIONS(724), - [anon_sym_bit_DASHand] = ACTIONS(724), - [anon_sym_bit_DASHxor] = ACTIONS(724), - [anon_sym_bit_DASHor] = ACTIONS(724), - [anon_sym_and] = ACTIONS(724), - [anon_sym_xor] = ACTIONS(724), - [anon_sym_or] = ACTIONS(724), - [anon_sym_not] = ACTIONS(724), - [anon_sym_DOT_DOT_LT] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(724), - [sym_val_nothing] = ACTIONS(724), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [aux_sym_val_number_token1] = ACTIONS(724), - [aux_sym_val_number_token2] = ACTIONS(724), - [aux_sym_val_number_token3] = ACTIONS(724), - [aux_sym_val_number_token4] = ACTIONS(724), - [aux_sym_val_number_token5] = ACTIONS(724), - [anon_sym_inf] = ACTIONS(724), - [anon_sym_DASHinf] = ACTIONS(724), - [anon_sym_NaN] = ACTIONS(724), - [anon_sym_0b] = ACTIONS(724), - [anon_sym_0o] = ACTIONS(724), - [anon_sym_0x] = ACTIONS(724), - [sym_val_date] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [sym__str_single_quotes] = ACTIONS(724), - [sym__str_back_ticks] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(724), - [anon_sym_CARET] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(3), - }, - [123] = { - [sym_comment] = STATE(123), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_in] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(752), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_bit_DASHshl] = ACTIONS(748), - [anon_sym_bit_DASHshr] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_LT2] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_not_DASHin] = ACTIONS(748), - [anon_sym_starts_DASHwith] = ACTIONS(748), - [anon_sym_ends_DASHwith] = ACTIONS(748), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_bit_DASHand] = ACTIONS(748), - [anon_sym_bit_DASHxor] = ACTIONS(748), - [anon_sym_bit_DASHor] = ACTIONS(748), - [anon_sym_and] = ACTIONS(748), - [anon_sym_xor] = ACTIONS(748), - [anon_sym_or] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), + [120] = { + [sym_path] = STATE(140), + [sym_comment] = STATE(120), + [aux_sym_cell_path_repeat1] = STATE(117), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(711), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [124] = { - [sym_expr_parenthesized] = STATE(151), - [sym_val_number] = STATE(151), - [sym_comment] = STATE(124), - [anon_sym_export] = ACTIONS(756), - [anon_sym_alias] = ACTIONS(756), - [anon_sym_let] = ACTIONS(756), - [anon_sym_let_DASHenv] = ACTIONS(756), - [anon_sym_mut] = ACTIONS(756), - [anon_sym_const] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [sym_cmd_identifier] = ACTIONS(756), - [anon_sym_LF] = ACTIONS(758), - [anon_sym_def] = ACTIONS(756), - [anon_sym_def_DASHenv] = ACTIONS(756), - [anon_sym_export_DASHenv] = ACTIONS(756), - [anon_sym_extern] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_use] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_error] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_break] = ACTIONS(756), - [anon_sym_continue] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_in] = ACTIONS(756), - [anon_sym_loop] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_do] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_match] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_try] = ACTIONS(756), - [anon_sym_return] = ACTIONS(756), - [anon_sym_source] = ACTIONS(756), - [anon_sym_source_DASHenv] = ACTIONS(756), - [anon_sym_register] = ACTIONS(756), - [anon_sym_hide] = ACTIONS(756), - [anon_sym_hide_DASHenv] = ACTIONS(756), - [anon_sym_overlay] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_where] = ACTIONS(756), - [anon_sym_STAR_STAR] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_mod] = ACTIONS(756), - [anon_sym_SLASH_SLASH] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_bit_DASHshl] = ACTIONS(756), - [anon_sym_bit_DASHshr] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_LT2] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_not_DASHin] = ACTIONS(756), - [anon_sym_starts_DASHwith] = ACTIONS(756), - [anon_sym_ends_DASHwith] = ACTIONS(756), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_bit_DASHand] = ACTIONS(756), - [anon_sym_bit_DASHxor] = ACTIONS(756), - [anon_sym_bit_DASHor] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_xor] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [anon_sym_not] = ACTIONS(756), - [anon_sym_DOT_DOT_LT] = ACTIONS(756), - [anon_sym_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [sym_val_nothing] = ACTIONS(756), - [anon_sym_true] = ACTIONS(756), - [anon_sym_false] = ACTIONS(756), - [aux_sym_val_number_token1] = ACTIONS(762), - [aux_sym_val_number_token2] = ACTIONS(762), - [aux_sym_val_number_token3] = ACTIONS(762), - [aux_sym_val_number_token4] = ACTIONS(762), - [aux_sym_val_number_token5] = ACTIONS(762), - [anon_sym_inf] = ACTIONS(762), - [anon_sym_DASHinf] = ACTIONS(762), - [anon_sym_NaN] = ACTIONS(762), - [anon_sym_0b] = ACTIONS(756), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [sym__str_single_quotes] = ACTIONS(756), - [sym__str_back_ticks] = ACTIONS(756), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), + [121] = { + [sym_cell_path] = STATE(246), + [sym_path] = STATE(124), + [sym_comment] = STATE(121), + [ts_builtin_sym_end] = ACTIONS(715), + [anon_sym_export] = ACTIONS(713), + [anon_sym_alias] = ACTIONS(713), + [anon_sym_let] = ACTIONS(713), + [anon_sym_let_DASHenv] = ACTIONS(713), + [anon_sym_mut] = ACTIONS(713), + [anon_sym_const] = ACTIONS(713), + [anon_sym_SEMI] = ACTIONS(713), + [sym_cmd_identifier] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_def] = ACTIONS(713), + [anon_sym_def_DASHenv] = ACTIONS(713), + [anon_sym_export_DASHenv] = ACTIONS(713), + [anon_sym_extern] = ACTIONS(713), + [anon_sym_module] = ACTIONS(713), + [anon_sym_use] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_error] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_break] = ACTIONS(713), + [anon_sym_continue] = ACTIONS(713), + [anon_sym_for] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [anon_sym_loop] = ACTIONS(713), + [anon_sym_while] = ACTIONS(713), + [anon_sym_do] = ACTIONS(713), + [anon_sym_if] = ACTIONS(713), + [anon_sym_match] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(713), + [anon_sym_return] = ACTIONS(713), + [anon_sym_source] = ACTIONS(713), + [anon_sym_source_DASHenv] = ACTIONS(713), + [anon_sym_register] = ACTIONS(713), + [anon_sym_hide] = ACTIONS(713), + [anon_sym_hide_DASHenv] = ACTIONS(713), + [anon_sym_overlay] = ACTIONS(713), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_where] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_SLASH_SLASH] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_bit_DASHshl] = ACTIONS(713), + [anon_sym_bit_DASHshr] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_LT2] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_not_DASHin] = ACTIONS(713), + [anon_sym_starts_DASHwith] = ACTIONS(713), + [anon_sym_ends_DASHwith] = ACTIONS(713), + [anon_sym_EQ_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_bit_DASHand] = ACTIONS(713), + [anon_sym_bit_DASHxor] = ACTIONS(713), + [anon_sym_bit_DASHor] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_not] = ACTIONS(713), + [anon_sym_DOT_DOT_LT] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(713), + [sym_val_nothing] = ACTIONS(713), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [aux_sym_val_number_token1] = ACTIONS(713), + [aux_sym_val_number_token2] = ACTIONS(713), + [aux_sym_val_number_token3] = ACTIONS(713), + [aux_sym_val_number_token4] = ACTIONS(713), + [aux_sym_val_number_token5] = ACTIONS(713), + [anon_sym_inf] = ACTIONS(713), + [anon_sym_DASHinf] = ACTIONS(713), + [anon_sym_NaN] = ACTIONS(713), + [anon_sym_0b] = ACTIONS(713), + [anon_sym_0o] = ACTIONS(713), + [anon_sym_0x] = ACTIONS(713), + [sym_val_date] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym__str_single_quotes] = ACTIONS(713), + [sym__str_back_ticks] = ACTIONS(713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(713), + [anon_sym_CARET] = ACTIONS(713), [anon_sym_POUND] = ACTIONS(3), }, - [125] = { - [sym_cell_path] = STATE(252), - [sym_path] = STATE(134), - [sym_comment] = STATE(125), - [ts_builtin_sym_end] = ACTIONS(708), - [anon_sym_export] = ACTIONS(706), - [anon_sym_alias] = ACTIONS(706), - [anon_sym_let] = ACTIONS(706), - [anon_sym_let_DASHenv] = ACTIONS(706), - [anon_sym_mut] = ACTIONS(706), - [anon_sym_const] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [sym_cmd_identifier] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_def] = ACTIONS(706), - [anon_sym_def_DASHenv] = ACTIONS(706), - [anon_sym_export_DASHenv] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(706), - [anon_sym_module] = ACTIONS(706), - [anon_sym_use] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_error] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_in] = ACTIONS(706), - [anon_sym_loop] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_match] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_source] = ACTIONS(706), - [anon_sym_source_DASHenv] = ACTIONS(706), - [anon_sym_register] = ACTIONS(706), - [anon_sym_hide] = ACTIONS(706), - [anon_sym_hide_DASHenv] = ACTIONS(706), - [anon_sym_overlay] = ACTIONS(706), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_where] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_mod] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_bit_DASHshl] = ACTIONS(706), - [anon_sym_bit_DASHshr] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_LT2] = ACTIONS(706), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_not_DASHin] = ACTIONS(706), - [anon_sym_starts_DASHwith] = ACTIONS(706), - [anon_sym_ends_DASHwith] = ACTIONS(706), - [anon_sym_EQ_TILDE] = ACTIONS(706), - [anon_sym_BANG_TILDE] = ACTIONS(706), - [anon_sym_bit_DASHand] = ACTIONS(706), - [anon_sym_bit_DASHxor] = ACTIONS(706), - [anon_sym_bit_DASHor] = ACTIONS(706), - [anon_sym_and] = ACTIONS(706), - [anon_sym_xor] = ACTIONS(706), - [anon_sym_or] = ACTIONS(706), - [anon_sym_not] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), + [122] = { + [sym_expr_parenthesized] = STATE(171), + [sym_val_number] = STATE(171), + [sym_comment] = STATE(122), + [anon_sym_export] = ACTIONS(758), + [anon_sym_alias] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_let_DASHenv] = ACTIONS(758), + [anon_sym_mut] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [sym_cmd_identifier] = ACTIONS(758), + [anon_sym_LF] = ACTIONS(760), + [anon_sym_def] = ACTIONS(758), + [anon_sym_def_DASHenv] = ACTIONS(758), + [anon_sym_export_DASHenv] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(758), + [anon_sym_module] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(762), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_error] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_in] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_do] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_try] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_source] = ACTIONS(758), + [anon_sym_source_DASHenv] = ACTIONS(758), + [anon_sym_register] = ACTIONS(758), + [anon_sym_hide] = ACTIONS(758), + [anon_sym_hide_DASHenv] = ACTIONS(758), + [anon_sym_overlay] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_bit_DASHshl] = ACTIONS(758), + [anon_sym_bit_DASHshr] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_LT2] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_not_DASHin] = ACTIONS(758), + [anon_sym_starts_DASHwith] = ACTIONS(758), + [anon_sym_ends_DASHwith] = ACTIONS(758), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_bit_DASHand] = ACTIONS(758), + [anon_sym_bit_DASHxor] = ACTIONS(758), + [anon_sym_bit_DASHor] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_not] = ACTIONS(758), + [anon_sym_DOT_DOT_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(758), + [sym_val_nothing] = ACTIONS(758), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [aux_sym_val_number_token1] = ACTIONS(764), + [aux_sym_val_number_token2] = ACTIONS(764), + [aux_sym_val_number_token3] = ACTIONS(764), + [aux_sym_val_number_token4] = ACTIONS(764), + [aux_sym_val_number_token5] = ACTIONS(764), + [anon_sym_inf] = ACTIONS(764), + [anon_sym_DASHinf] = ACTIONS(764), + [anon_sym_NaN] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(758), + [anon_sym_0o] = ACTIONS(758), + [anon_sym_0x] = ACTIONS(758), + [sym_val_date] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym__str_single_quotes] = ACTIONS(758), + [sym__str_back_ticks] = ACTIONS(758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), [anon_sym_POUND] = ACTIONS(3), }, - [126] = { - [sym_cell_path] = STATE(233), - [sym_path] = STATE(134), - [sym_comment] = STATE(126), + [123] = { + [sym_cell_path] = STATE(260), + [sym_path] = STATE(124), + [sym_comment] = STATE(123), [ts_builtin_sym_end] = ACTIONS(738), [anon_sym_export] = ACTIONS(736), [anon_sym_alias] = ACTIONS(736), @@ -56424,7 +56207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(736), [anon_sym_match] = ACTIONS(736), [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(756), [anon_sym_try] = ACTIONS(736), [anon_sym_return] = ACTIONS(736), [anon_sym_source] = ACTIONS(736), @@ -56486,598 +56269,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [127] = { - [sym_cell_path] = STATE(219), - [sym_path] = STATE(134), - [sym_comment] = STATE(127), - [ts_builtin_sym_end] = ACTIONS(746), - [anon_sym_export] = ACTIONS(744), - [anon_sym_alias] = ACTIONS(744), - [anon_sym_let] = ACTIONS(744), - [anon_sym_let_DASHenv] = ACTIONS(744), - [anon_sym_mut] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [sym_cmd_identifier] = ACTIONS(744), - [anon_sym_LF] = ACTIONS(746), - [anon_sym_def] = ACTIONS(744), - [anon_sym_def_DASHenv] = ACTIONS(744), - [anon_sym_export_DASHenv] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_module] = ACTIONS(744), - [anon_sym_use] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_error] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_in] = ACTIONS(744), - [anon_sym_loop] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_match] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_source] = ACTIONS(744), - [anon_sym_source_DASHenv] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_hide] = ACTIONS(744), - [anon_sym_hide_DASHenv] = ACTIONS(744), - [anon_sym_overlay] = ACTIONS(744), - [anon_sym_STAR] = ACTIONS(744), - [anon_sym_where] = ACTIONS(744), - [anon_sym_STAR_STAR] = ACTIONS(744), - [anon_sym_PLUS_PLUS] = ACTIONS(744), - [anon_sym_SLASH] = ACTIONS(744), - [anon_sym_mod] = ACTIONS(744), - [anon_sym_SLASH_SLASH] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(744), - [anon_sym_bit_DASHshl] = ACTIONS(744), - [anon_sym_bit_DASHshr] = ACTIONS(744), - [anon_sym_EQ_EQ] = ACTIONS(744), - [anon_sym_BANG_EQ] = ACTIONS(744), - [anon_sym_LT2] = ACTIONS(744), - [anon_sym_LT_EQ] = ACTIONS(744), - [anon_sym_GT_EQ] = ACTIONS(744), - [anon_sym_not_DASHin] = ACTIONS(744), - [anon_sym_starts_DASHwith] = ACTIONS(744), - [anon_sym_ends_DASHwith] = ACTIONS(744), - [anon_sym_EQ_TILDE] = ACTIONS(744), - [anon_sym_BANG_TILDE] = ACTIONS(744), - [anon_sym_bit_DASHand] = ACTIONS(744), - [anon_sym_bit_DASHxor] = ACTIONS(744), - [anon_sym_bit_DASHor] = ACTIONS(744), - [anon_sym_and] = ACTIONS(744), - [anon_sym_xor] = ACTIONS(744), - [anon_sym_or] = ACTIONS(744), - [anon_sym_not] = ACTIONS(744), - [anon_sym_DOT_DOT_LT] = ACTIONS(744), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(744), - [sym_val_nothing] = ACTIONS(744), - [anon_sym_true] = ACTIONS(744), - [anon_sym_false] = ACTIONS(744), - [aux_sym_val_number_token1] = ACTIONS(744), - [aux_sym_val_number_token2] = ACTIONS(744), - [aux_sym_val_number_token3] = ACTIONS(744), - [aux_sym_val_number_token4] = ACTIONS(744), - [aux_sym_val_number_token5] = ACTIONS(744), - [anon_sym_inf] = ACTIONS(744), - [anon_sym_DASHinf] = ACTIONS(744), - [anon_sym_NaN] = ACTIONS(744), - [anon_sym_0b] = ACTIONS(744), - [anon_sym_0o] = ACTIONS(744), - [anon_sym_0x] = ACTIONS(744), - [sym_val_date] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [sym__str_single_quotes] = ACTIONS(744), - [sym__str_back_ticks] = ACTIONS(744), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(3), - }, - [128] = { - [sym_cell_path] = STATE(228), - [sym_path] = STATE(134), - [sym_comment] = STATE(128), - [ts_builtin_sym_end] = ACTIONS(714), - [anon_sym_export] = ACTIONS(712), - [anon_sym_alias] = ACTIONS(712), - [anon_sym_let] = ACTIONS(712), - [anon_sym_let_DASHenv] = ACTIONS(712), - [anon_sym_mut] = ACTIONS(712), - [anon_sym_const] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [sym_cmd_identifier] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_def] = ACTIONS(712), - [anon_sym_def_DASHenv] = ACTIONS(712), - [anon_sym_export_DASHenv] = ACTIONS(712), - [anon_sym_extern] = ACTIONS(712), - [anon_sym_module] = ACTIONS(712), - [anon_sym_use] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_error] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_break] = ACTIONS(712), - [anon_sym_continue] = ACTIONS(712), - [anon_sym_for] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [anon_sym_loop] = ACTIONS(712), - [anon_sym_while] = ACTIONS(712), - [anon_sym_do] = ACTIONS(712), - [anon_sym_if] = ACTIONS(712), - [anon_sym_match] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(712), - [anon_sym_return] = ACTIONS(712), - [anon_sym_source] = ACTIONS(712), - [anon_sym_source_DASHenv] = ACTIONS(712), - [anon_sym_register] = ACTIONS(712), - [anon_sym_hide] = ACTIONS(712), - [anon_sym_hide_DASHenv] = ACTIONS(712), - [anon_sym_overlay] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_where] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_mod] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_bit_DASHshl] = ACTIONS(712), - [anon_sym_bit_DASHshr] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT2] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_not_DASHin] = ACTIONS(712), - [anon_sym_starts_DASHwith] = ACTIONS(712), - [anon_sym_ends_DASHwith] = ACTIONS(712), - [anon_sym_EQ_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_bit_DASHand] = ACTIONS(712), - [anon_sym_bit_DASHxor] = ACTIONS(712), - [anon_sym_bit_DASHor] = ACTIONS(712), - [anon_sym_and] = ACTIONS(712), - [anon_sym_xor] = ACTIONS(712), - [anon_sym_or] = ACTIONS(712), - [anon_sym_not] = ACTIONS(712), - [anon_sym_DOT_DOT_LT] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(712), - [sym_val_nothing] = ACTIONS(712), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [aux_sym_val_number_token1] = ACTIONS(712), - [aux_sym_val_number_token2] = ACTIONS(712), - [aux_sym_val_number_token3] = ACTIONS(712), - [aux_sym_val_number_token4] = ACTIONS(712), - [aux_sym_val_number_token5] = ACTIONS(712), - [anon_sym_inf] = ACTIONS(712), - [anon_sym_DASHinf] = ACTIONS(712), - [anon_sym_NaN] = ACTIONS(712), - [anon_sym_0b] = ACTIONS(712), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [sym__str_single_quotes] = ACTIONS(712), - [sym__str_back_ticks] = ACTIONS(712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(712), - [anon_sym_CARET] = ACTIONS(712), + [124] = { + [sym_path] = STATE(175), + [sym_comment] = STATE(124), + [aux_sym_cell_path_repeat1] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [129] = { - [sym_comment] = STATE(129), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), + [125] = { + [sym_cell_path] = STATE(216), + [sym_path] = STATE(124), + [sym_comment] = STATE(125), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_export] = ACTIONS(717), + [anon_sym_alias] = ACTIONS(717), + [anon_sym_let] = ACTIONS(717), + [anon_sym_let_DASHenv] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(717), + [sym_cmd_identifier] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_def] = ACTIONS(717), + [anon_sym_def_DASHenv] = ACTIONS(717), + [anon_sym_export_DASHenv] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_use] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_error] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_in] = ACTIONS(717), + [anon_sym_loop] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_match] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_source] = ACTIONS(717), + [anon_sym_source_DASHenv] = ACTIONS(717), + [anon_sym_register] = ACTIONS(717), + [anon_sym_hide] = ACTIONS(717), + [anon_sym_hide_DASHenv] = ACTIONS(717), + [anon_sym_overlay] = ACTIONS(717), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_where] = ACTIONS(717), + [anon_sym_STAR_STAR] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_mod] = ACTIONS(717), + [anon_sym_SLASH_SLASH] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_bit_DASHshl] = ACTIONS(717), + [anon_sym_bit_DASHshr] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(717), + [anon_sym_BANG_EQ] = ACTIONS(717), + [anon_sym_LT2] = ACTIONS(717), + [anon_sym_LT_EQ] = ACTIONS(717), + [anon_sym_GT_EQ] = ACTIONS(717), + [anon_sym_not_DASHin] = ACTIONS(717), + [anon_sym_starts_DASHwith] = ACTIONS(717), + [anon_sym_ends_DASHwith] = ACTIONS(717), + [anon_sym_EQ_TILDE] = ACTIONS(717), + [anon_sym_BANG_TILDE] = ACTIONS(717), + [anon_sym_bit_DASHand] = ACTIONS(717), + [anon_sym_bit_DASHxor] = ACTIONS(717), + [anon_sym_bit_DASHor] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_xor] = ACTIONS(717), + [anon_sym_or] = ACTIONS(717), + [anon_sym_not] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), [anon_sym_POUND] = ACTIONS(3), }, - [130] = { - [sym_comment] = STATE(130), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), + [126] = { + [sym_path] = STATE(175), + [sym_comment] = STATE(126), + [aux_sym_cell_path_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(731), + [anon_sym_export] = ACTIONS(729), + [anon_sym_alias] = ACTIONS(729), + [anon_sym_let] = ACTIONS(729), + [anon_sym_let_DASHenv] = ACTIONS(729), + [anon_sym_mut] = ACTIONS(729), + [anon_sym_const] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [sym_cmd_identifier] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_def] = ACTIONS(729), + [anon_sym_def_DASHenv] = ACTIONS(729), + [anon_sym_export_DASHenv] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_module] = ACTIONS(729), + [anon_sym_use] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_error] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_in] = ACTIONS(729), + [anon_sym_loop] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_match] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(766), + [anon_sym_try] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_source] = ACTIONS(729), + [anon_sym_source_DASHenv] = ACTIONS(729), + [anon_sym_register] = ACTIONS(729), + [anon_sym_hide] = ACTIONS(729), + [anon_sym_hide_DASHenv] = ACTIONS(729), + [anon_sym_overlay] = ACTIONS(729), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_where] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_SLASH_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_bit_DASHshl] = ACTIONS(729), + [anon_sym_bit_DASHshr] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_LT2] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_not_DASHin] = ACTIONS(729), + [anon_sym_starts_DASHwith] = ACTIONS(729), + [anon_sym_ends_DASHwith] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_bit_DASHand] = ACTIONS(729), + [anon_sym_bit_DASHxor] = ACTIONS(729), + [anon_sym_bit_DASHor] = ACTIONS(729), + [anon_sym_and] = ACTIONS(729), + [anon_sym_xor] = ACTIONS(729), + [anon_sym_or] = ACTIONS(729), + [anon_sym_not] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), [anon_sym_POUND] = ACTIONS(3), }, - [131] = { - [sym_path] = STATE(150), - [sym_comment] = STATE(131), - [aux_sym_cell_path_repeat1] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(734), - [anon_sym_export] = ACTIONS(732), - [anon_sym_alias] = ACTIONS(732), - [anon_sym_let] = ACTIONS(732), - [anon_sym_let_DASHenv] = ACTIONS(732), - [anon_sym_mut] = ACTIONS(732), - [anon_sym_const] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [sym_cmd_identifier] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_def] = ACTIONS(732), - [anon_sym_def_DASHenv] = ACTIONS(732), - [anon_sym_export_DASHenv] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(732), - [anon_sym_module] = ACTIONS(732), - [anon_sym_use] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_error] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [anon_sym_loop] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_match] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_source] = ACTIONS(732), - [anon_sym_source_DASHenv] = ACTIONS(732), - [anon_sym_register] = ACTIONS(732), - [anon_sym_hide] = ACTIONS(732), - [anon_sym_hide_DASHenv] = ACTIONS(732), - [anon_sym_overlay] = ACTIONS(732), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_where] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_mod] = ACTIONS(732), - [anon_sym_SLASH_SLASH] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_bit_DASHshl] = ACTIONS(732), - [anon_sym_bit_DASHshr] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_LT2] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_not_DASHin] = ACTIONS(732), - [anon_sym_starts_DASHwith] = ACTIONS(732), - [anon_sym_ends_DASHwith] = ACTIONS(732), - [anon_sym_EQ_TILDE] = ACTIONS(732), - [anon_sym_BANG_TILDE] = ACTIONS(732), - [anon_sym_bit_DASHand] = ACTIONS(732), - [anon_sym_bit_DASHxor] = ACTIONS(732), - [anon_sym_bit_DASHor] = ACTIONS(732), - [anon_sym_and] = ACTIONS(732), - [anon_sym_xor] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [anon_sym_not] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), + [127] = { + [sym_cell_path] = STATE(230), + [sym_path] = STATE(124), + [sym_comment] = STATE(127), + [ts_builtin_sym_end] = ACTIONS(723), + [anon_sym_export] = ACTIONS(721), + [anon_sym_alias] = ACTIONS(721), + [anon_sym_let] = ACTIONS(721), + [anon_sym_let_DASHenv] = ACTIONS(721), + [anon_sym_mut] = ACTIONS(721), + [anon_sym_const] = ACTIONS(721), + [anon_sym_SEMI] = ACTIONS(721), + [sym_cmd_identifier] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_def] = ACTIONS(721), + [anon_sym_def_DASHenv] = ACTIONS(721), + [anon_sym_export_DASHenv] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(721), + [anon_sym_module] = ACTIONS(721), + [anon_sym_use] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_error] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_break] = ACTIONS(721), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_for] = ACTIONS(721), + [anon_sym_in] = ACTIONS(721), + [anon_sym_loop] = ACTIONS(721), + [anon_sym_while] = ACTIONS(721), + [anon_sym_do] = ACTIONS(721), + [anon_sym_if] = ACTIONS(721), + [anon_sym_match] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(721), + [anon_sym_return] = ACTIONS(721), + [anon_sym_source] = ACTIONS(721), + [anon_sym_source_DASHenv] = ACTIONS(721), + [anon_sym_register] = ACTIONS(721), + [anon_sym_hide] = ACTIONS(721), + [anon_sym_hide_DASHenv] = ACTIONS(721), + [anon_sym_overlay] = ACTIONS(721), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_where] = ACTIONS(721), + [anon_sym_STAR_STAR] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_SLASH_SLASH] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_bit_DASHshl] = ACTIONS(721), + [anon_sym_bit_DASHshr] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [anon_sym_LT2] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(721), + [anon_sym_GT_EQ] = ACTIONS(721), + [anon_sym_not_DASHin] = ACTIONS(721), + [anon_sym_starts_DASHwith] = ACTIONS(721), + [anon_sym_ends_DASHwith] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_BANG_TILDE] = ACTIONS(721), + [anon_sym_bit_DASHand] = ACTIONS(721), + [anon_sym_bit_DASHxor] = ACTIONS(721), + [anon_sym_bit_DASHor] = ACTIONS(721), + [anon_sym_and] = ACTIONS(721), + [anon_sym_xor] = ACTIONS(721), + [anon_sym_or] = ACTIONS(721), + [anon_sym_not] = ACTIONS(721), + [anon_sym_DOT_DOT_LT] = ACTIONS(721), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(721), + [sym_val_nothing] = ACTIONS(721), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [aux_sym_val_number_token1] = ACTIONS(721), + [aux_sym_val_number_token2] = ACTIONS(721), + [aux_sym_val_number_token3] = ACTIONS(721), + [aux_sym_val_number_token4] = ACTIONS(721), + [aux_sym_val_number_token5] = ACTIONS(721), + [anon_sym_inf] = ACTIONS(721), + [anon_sym_DASHinf] = ACTIONS(721), + [anon_sym_NaN] = ACTIONS(721), + [anon_sym_0b] = ACTIONS(721), + [anon_sym_0o] = ACTIONS(721), + [anon_sym_0x] = ACTIONS(721), + [sym_val_date] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym__str_single_quotes] = ACTIONS(721), + [sym__str_back_ticks] = ACTIONS(721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(721), + [anon_sym_CARET] = ACTIONS(721), [anon_sym_POUND] = ACTIONS(3), }, - [132] = { - [sym_cell_path] = STATE(232), - [sym_path] = STATE(134), - [sym_comment] = STATE(132), - [ts_builtin_sym_end] = ACTIONS(718), - [anon_sym_export] = ACTIONS(716), - [anon_sym_alias] = ACTIONS(716), - [anon_sym_let] = ACTIONS(716), - [anon_sym_let_DASHenv] = ACTIONS(716), - [anon_sym_mut] = ACTIONS(716), - [anon_sym_const] = ACTIONS(716), - [anon_sym_SEMI] = ACTIONS(716), - [sym_cmd_identifier] = ACTIONS(716), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_def] = ACTIONS(716), - [anon_sym_def_DASHenv] = ACTIONS(716), - [anon_sym_export_DASHenv] = ACTIONS(716), - [anon_sym_extern] = ACTIONS(716), - [anon_sym_module] = ACTIONS(716), - [anon_sym_use] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(716), - [anon_sym_error] = ACTIONS(716), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_break] = ACTIONS(716), - [anon_sym_continue] = ACTIONS(716), - [anon_sym_for] = ACTIONS(716), - [anon_sym_in] = ACTIONS(716), - [anon_sym_loop] = ACTIONS(716), - [anon_sym_while] = ACTIONS(716), - [anon_sym_do] = ACTIONS(716), - [anon_sym_if] = ACTIONS(716), - [anon_sym_match] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(716), - [anon_sym_return] = ACTIONS(716), - [anon_sym_source] = ACTIONS(716), - [anon_sym_source_DASHenv] = ACTIONS(716), - [anon_sym_register] = ACTIONS(716), - [anon_sym_hide] = ACTIONS(716), - [anon_sym_hide_DASHenv] = ACTIONS(716), - [anon_sym_overlay] = ACTIONS(716), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_where] = ACTIONS(716), - [anon_sym_STAR_STAR] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), - [anon_sym_mod] = ACTIONS(716), - [anon_sym_SLASH_SLASH] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_bit_DASHshl] = ACTIONS(716), - [anon_sym_bit_DASHshr] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(716), - [anon_sym_LT2] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_not_DASHin] = ACTIONS(716), - [anon_sym_starts_DASHwith] = ACTIONS(716), - [anon_sym_ends_DASHwith] = ACTIONS(716), - [anon_sym_EQ_TILDE] = ACTIONS(716), - [anon_sym_BANG_TILDE] = ACTIONS(716), - [anon_sym_bit_DASHand] = ACTIONS(716), - [anon_sym_bit_DASHxor] = ACTIONS(716), - [anon_sym_bit_DASHor] = ACTIONS(716), - [anon_sym_and] = ACTIONS(716), - [anon_sym_xor] = ACTIONS(716), - [anon_sym_or] = ACTIONS(716), - [anon_sym_not] = ACTIONS(716), - [anon_sym_DOT_DOT_LT] = ACTIONS(716), - [anon_sym_DOT_DOT] = ACTIONS(716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(716), - [sym_val_nothing] = ACTIONS(716), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [aux_sym_val_number_token1] = ACTIONS(716), - [aux_sym_val_number_token2] = ACTIONS(716), - [aux_sym_val_number_token3] = ACTIONS(716), - [aux_sym_val_number_token4] = ACTIONS(716), - [aux_sym_val_number_token5] = ACTIONS(716), - [anon_sym_inf] = ACTIONS(716), - [anon_sym_DASHinf] = ACTIONS(716), - [anon_sym_NaN] = ACTIONS(716), - [anon_sym_0b] = ACTIONS(716), - [anon_sym_0o] = ACTIONS(716), - [anon_sym_0x] = ACTIONS(716), - [sym_val_date] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(716), - [sym__str_single_quotes] = ACTIONS(716), - [sym__str_back_ticks] = ACTIONS(716), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(716), - [anon_sym_CARET] = ACTIONS(716), + [128] = { + [sym_cell_path] = STATE(219), + [sym_path] = STATE(124), + [sym_comment] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_export] = ACTIONS(707), + [anon_sym_alias] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_let_DASHenv] = ACTIONS(707), + [anon_sym_mut] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [sym_cmd_identifier] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_def] = ACTIONS(707), + [anon_sym_def_DASHenv] = ACTIONS(707), + [anon_sym_export_DASHenv] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_error] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_in] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_source] = ACTIONS(707), + [anon_sym_source_DASHenv] = ACTIONS(707), + [anon_sym_register] = ACTIONS(707), + [anon_sym_hide] = ACTIONS(707), + [anon_sym_hide_DASHenv] = ACTIONS(707), + [anon_sym_overlay] = ACTIONS(707), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_SLASH_SLASH] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_bit_DASHshl] = ACTIONS(707), + [anon_sym_bit_DASHshr] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_LT2] = ACTIONS(707), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_not_DASHin] = ACTIONS(707), + [anon_sym_starts_DASHwith] = ACTIONS(707), + [anon_sym_ends_DASHwith] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_BANG_TILDE] = ACTIONS(707), + [anon_sym_bit_DASHand] = ACTIONS(707), + [anon_sym_bit_DASHxor] = ACTIONS(707), + [anon_sym_bit_DASHor] = ACTIONS(707), + [anon_sym_and] = ACTIONS(707), + [anon_sym_xor] = ACTIONS(707), + [anon_sym_or] = ACTIONS(707), + [anon_sym_not] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), [anon_sym_POUND] = ACTIONS(3), }, - [133] = { - [sym_cell_path] = STATE(221), - [sym_path] = STATE(134), - [sym_comment] = STATE(133), + [129] = { + [sym_path] = STATE(175), + [sym_comment] = STATE(129), + [aux_sym_cell_path_repeat1] = STATE(126), [ts_builtin_sym_end] = ACTIONS(742), [anon_sym_export] = ACTIONS(740), [anon_sym_alias] = ACTIONS(740), @@ -57110,7 +56795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(740), [anon_sym_match] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(756), [anon_sym_try] = ACTIONS(740), [anon_sym_return] = ACTIONS(740), [anon_sym_source] = ACTIONS(740), @@ -57172,302 +56857,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [134] = { - [sym_path] = STATE(150), - [sym_comment] = STATE(134), - [aux_sym_cell_path_repeat1] = STATE(131), - [ts_builtin_sym_end] = ACTIONS(730), - [anon_sym_export] = ACTIONS(728), - [anon_sym_alias] = ACTIONS(728), - [anon_sym_let] = ACTIONS(728), - [anon_sym_let_DASHenv] = ACTIONS(728), - [anon_sym_mut] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [sym_cmd_identifier] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_def] = ACTIONS(728), - [anon_sym_def_DASHenv] = ACTIONS(728), - [anon_sym_export_DASHenv] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(728), - [anon_sym_module] = ACTIONS(728), - [anon_sym_use] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_error] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_in] = ACTIONS(728), - [anon_sym_loop] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_do] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_match] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_source] = ACTIONS(728), - [anon_sym_source_DASHenv] = ACTIONS(728), - [anon_sym_register] = ACTIONS(728), - [anon_sym_hide] = ACTIONS(728), - [anon_sym_hide_DASHenv] = ACTIONS(728), - [anon_sym_overlay] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_where] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_bit_DASHshl] = ACTIONS(728), - [anon_sym_bit_DASHshr] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(728), - [anon_sym_BANG_EQ] = ACTIONS(728), - [anon_sym_LT2] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(728), - [anon_sym_not_DASHin] = ACTIONS(728), - [anon_sym_starts_DASHwith] = ACTIONS(728), - [anon_sym_ends_DASHwith] = ACTIONS(728), - [anon_sym_EQ_TILDE] = ACTIONS(728), - [anon_sym_BANG_TILDE] = ACTIONS(728), - [anon_sym_bit_DASHand] = ACTIONS(728), - [anon_sym_bit_DASHxor] = ACTIONS(728), - [anon_sym_bit_DASHor] = ACTIONS(728), - [anon_sym_and] = ACTIONS(728), - [anon_sym_xor] = ACTIONS(728), - [anon_sym_or] = ACTIONS(728), - [anon_sym_not] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), + [130] = { + [sym_cell_path] = STATE(209), + [sym_path] = STATE(124), + [sym_comment] = STATE(130), + [ts_builtin_sym_end] = ACTIONS(746), + [anon_sym_export] = ACTIONS(744), + [anon_sym_alias] = ACTIONS(744), + [anon_sym_let] = ACTIONS(744), + [anon_sym_let_DASHenv] = ACTIONS(744), + [anon_sym_mut] = ACTIONS(744), + [anon_sym_const] = ACTIONS(744), + [anon_sym_SEMI] = ACTIONS(744), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LF] = ACTIONS(746), + [anon_sym_def] = ACTIONS(744), + [anon_sym_def_DASHenv] = ACTIONS(744), + [anon_sym_export_DASHenv] = ACTIONS(744), + [anon_sym_extern] = ACTIONS(744), + [anon_sym_module] = ACTIONS(744), + [anon_sym_use] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(744), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_error] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_break] = ACTIONS(744), + [anon_sym_continue] = ACTIONS(744), + [anon_sym_for] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_loop] = ACTIONS(744), + [anon_sym_while] = ACTIONS(744), + [anon_sym_do] = ACTIONS(744), + [anon_sym_if] = ACTIONS(744), + [anon_sym_match] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(744), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(744), + [anon_sym_return] = ACTIONS(744), + [anon_sym_source] = ACTIONS(744), + [anon_sym_source_DASHenv] = ACTIONS(744), + [anon_sym_register] = ACTIONS(744), + [anon_sym_hide] = ACTIONS(744), + [anon_sym_hide_DASHenv] = ACTIONS(744), + [anon_sym_overlay] = ACTIONS(744), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_where] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(744), + [anon_sym_PLUS_PLUS] = ACTIONS(744), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(744), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(744), + [anon_sym_BANG_EQ] = ACTIONS(744), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(744), + [anon_sym_GT_EQ] = ACTIONS(744), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(744), + [anon_sym_BANG_TILDE] = ACTIONS(744), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(744), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(744), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(744), + [aux_sym_val_number_token4] = ACTIONS(744), + [aux_sym_val_number_token5] = ACTIONS(744), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(744), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(744), + [anon_sym_DQUOTE] = ACTIONS(744), + [sym__str_single_quotes] = ACTIONS(744), + [sym__str_back_ticks] = ACTIONS(744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), + [anon_sym_CARET] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [135] = { - [sym_cell_path] = STATE(229), - [sym_path] = STATE(134), - [sym_comment] = STATE(135), - [ts_builtin_sym_end] = ACTIONS(722), - [anon_sym_export] = ACTIONS(720), - [anon_sym_alias] = ACTIONS(720), - [anon_sym_let] = ACTIONS(720), - [anon_sym_let_DASHenv] = ACTIONS(720), - [anon_sym_mut] = ACTIONS(720), - [anon_sym_const] = ACTIONS(720), - [anon_sym_SEMI] = ACTIONS(720), - [sym_cmd_identifier] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_def] = ACTIONS(720), - [anon_sym_def_DASHenv] = ACTIONS(720), - [anon_sym_export_DASHenv] = ACTIONS(720), - [anon_sym_extern] = ACTIONS(720), - [anon_sym_module] = ACTIONS(720), - [anon_sym_use] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [anon_sym_error] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_break] = ACTIONS(720), - [anon_sym_continue] = ACTIONS(720), - [anon_sym_for] = ACTIONS(720), - [anon_sym_in] = ACTIONS(720), - [anon_sym_loop] = ACTIONS(720), - [anon_sym_while] = ACTIONS(720), - [anon_sym_do] = ACTIONS(720), - [anon_sym_if] = ACTIONS(720), - [anon_sym_match] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_try] = ACTIONS(720), - [anon_sym_return] = ACTIONS(720), - [anon_sym_source] = ACTIONS(720), - [anon_sym_source_DASHenv] = ACTIONS(720), - [anon_sym_register] = ACTIONS(720), - [anon_sym_hide] = ACTIONS(720), - [anon_sym_hide_DASHenv] = ACTIONS(720), - [anon_sym_overlay] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_where] = ACTIONS(720), - [anon_sym_STAR_STAR] = ACTIONS(720), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_mod] = ACTIONS(720), - [anon_sym_SLASH_SLASH] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_bit_DASHshl] = ACTIONS(720), - [anon_sym_bit_DASHshr] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_LT2] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_not_DASHin] = ACTIONS(720), - [anon_sym_starts_DASHwith] = ACTIONS(720), - [anon_sym_ends_DASHwith] = ACTIONS(720), - [anon_sym_EQ_TILDE] = ACTIONS(720), - [anon_sym_BANG_TILDE] = ACTIONS(720), - [anon_sym_bit_DASHand] = ACTIONS(720), - [anon_sym_bit_DASHxor] = ACTIONS(720), - [anon_sym_bit_DASHor] = ACTIONS(720), - [anon_sym_and] = ACTIONS(720), - [anon_sym_xor] = ACTIONS(720), - [anon_sym_or] = ACTIONS(720), - [anon_sym_not] = ACTIONS(720), - [anon_sym_DOT_DOT_LT] = ACTIONS(720), - [anon_sym_DOT_DOT] = ACTIONS(720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(720), - [sym_val_nothing] = ACTIONS(720), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [aux_sym_val_number_token1] = ACTIONS(720), - [aux_sym_val_number_token2] = ACTIONS(720), - [aux_sym_val_number_token3] = ACTIONS(720), - [aux_sym_val_number_token4] = ACTIONS(720), - [aux_sym_val_number_token5] = ACTIONS(720), - [anon_sym_inf] = ACTIONS(720), - [anon_sym_DASHinf] = ACTIONS(720), - [anon_sym_NaN] = ACTIONS(720), - [anon_sym_0b] = ACTIONS(720), - [anon_sym_0o] = ACTIONS(720), - [anon_sym_0x] = ACTIONS(720), - [sym_val_date] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym__str_single_quotes] = ACTIONS(720), - [sym__str_back_ticks] = ACTIONS(720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(720), - [anon_sym_CARET] = ACTIONS(720), + [131] = { + [sym_comment] = STATE(131), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(773), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [136] = { - [sym_path] = STATE(150), - [sym_comment] = STATE(136), - [aux_sym_cell_path_repeat1] = STATE(136), - [ts_builtin_sym_end] = ACTIONS(701), - [anon_sym_export] = ACTIONS(699), - [anon_sym_alias] = ACTIONS(699), - [anon_sym_let] = ACTIONS(699), - [anon_sym_let_DASHenv] = ACTIONS(699), - [anon_sym_mut] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [sym_cmd_identifier] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_def] = ACTIONS(699), - [anon_sym_def_DASHenv] = ACTIONS(699), - [anon_sym_export_DASHenv] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_module] = ACTIONS(699), - [anon_sym_use] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_error] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_in] = ACTIONS(699), - [anon_sym_loop] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_match] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(772), - [anon_sym_try] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_source] = ACTIONS(699), - [anon_sym_source_DASHenv] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_hide] = ACTIONS(699), - [anon_sym_hide_DASHenv] = ACTIONS(699), - [anon_sym_overlay] = ACTIONS(699), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_where] = ACTIONS(699), - [anon_sym_STAR_STAR] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_mod] = ACTIONS(699), - [anon_sym_SLASH_SLASH] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_bit_DASHshl] = ACTIONS(699), - [anon_sym_bit_DASHshr] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT2] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_not_DASHin] = ACTIONS(699), - [anon_sym_starts_DASHwith] = ACTIONS(699), - [anon_sym_ends_DASHwith] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(699), - [anon_sym_BANG_TILDE] = ACTIONS(699), - [anon_sym_bit_DASHand] = ACTIONS(699), - [anon_sym_bit_DASHxor] = ACTIONS(699), - [anon_sym_bit_DASHor] = ACTIONS(699), - [anon_sym_and] = ACTIONS(699), - [anon_sym_xor] = ACTIONS(699), - [anon_sym_or] = ACTIONS(699), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), + [132] = { + [sym_comment] = STATE(132), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(773), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [137] = { - [sym_comment] = STATE(137), + [133] = { + [sym_cell_path] = STATE(228), + [sym_path] = STATE(124), + [sym_comment] = STATE(133), + [ts_builtin_sym_end] = ACTIONS(727), + [anon_sym_export] = ACTIONS(725), + [anon_sym_alias] = ACTIONS(725), + [anon_sym_let] = ACTIONS(725), + [anon_sym_let_DASHenv] = ACTIONS(725), + [anon_sym_mut] = ACTIONS(725), + [anon_sym_const] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [sym_cmd_identifier] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_def] = ACTIONS(725), + [anon_sym_def_DASHenv] = ACTIONS(725), + [anon_sym_export_DASHenv] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(725), + [anon_sym_module] = ACTIONS(725), + [anon_sym_use] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_error] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [anon_sym_loop] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(756), + [anon_sym_try] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_source] = ACTIONS(725), + [anon_sym_source_DASHenv] = ACTIONS(725), + [anon_sym_register] = ACTIONS(725), + [anon_sym_hide] = ACTIONS(725), + [anon_sym_hide_DASHenv] = ACTIONS(725), + [anon_sym_overlay] = ACTIONS(725), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_where] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_mod] = ACTIONS(725), + [anon_sym_SLASH_SLASH] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_bit_DASHshl] = ACTIONS(725), + [anon_sym_bit_DASHshr] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_LT2] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_not_DASHin] = ACTIONS(725), + [anon_sym_starts_DASHwith] = ACTIONS(725), + [anon_sym_ends_DASHwith] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_bit_DASHand] = ACTIONS(725), + [anon_sym_bit_DASHxor] = ACTIONS(725), + [anon_sym_bit_DASHor] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_not] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(3), + }, + [134] = { + [sym_cell_path] = STATE(261), + [sym_path] = STATE(124), + [sym_comment] = STATE(134), [ts_builtin_sym_end] = ACTIONS(750), [anon_sym_export] = ACTIONS(748), [anon_sym_alias] = ACTIONS(748), @@ -57500,7 +57285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(748), [anon_sym_match] = ACTIONS(748), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(756), [anon_sym_try] = ACTIONS(748), [anon_sym_return] = ACTIONS(748), [anon_sym_source] = ACTIONS(748), @@ -57511,7 +57296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(748), [anon_sym_STAR] = ACTIONS(748), [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(775), [anon_sym_STAR_STAR] = ACTIONS(748), [anon_sym_PLUS_PLUS] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(748), @@ -57563,471 +57347,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, - [138] = { - [sym_comment] = STATE(138), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [139] = { - [sym_comment] = STATE(139), - [anon_sym_export] = ACTIONS(777), - [anon_sym_alias] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_let_DASHenv] = ACTIONS(777), - [anon_sym_mut] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [sym_cmd_identifier] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_def] = ACTIONS(777), - [anon_sym_def_DASHenv] = ACTIONS(777), - [anon_sym_export_DASHenv] = ACTIONS(777), - [anon_sym_extern] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_error] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_source] = ACTIONS(777), - [anon_sym_source_DASHenv] = ACTIONS(777), - [anon_sym_register] = ACTIONS(777), - [anon_sym_hide] = ACTIONS(777), - [anon_sym_hide_DASHenv] = ACTIONS(777), - [anon_sym_overlay] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_not] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), + [135] = { + [sym_comment] = STATE(135), + [anon_sym_export] = ACTIONS(775), + [anon_sym_alias] = ACTIONS(775), + [anon_sym_let] = ACTIONS(775), + [anon_sym_let_DASHenv] = ACTIONS(775), + [anon_sym_mut] = ACTIONS(775), + [anon_sym_const] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [sym_cmd_identifier] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_def] = ACTIONS(775), + [anon_sym_def_DASHenv] = ACTIONS(775), + [anon_sym_export_DASHenv] = ACTIONS(775), + [anon_sym_extern] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_use] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_error] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_try] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_source] = ACTIONS(775), + [anon_sym_source_DASHenv] = ACTIONS(775), + [anon_sym_register] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_hide_DASHenv] = ACTIONS(775), + [anon_sym_overlay] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_where] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_not] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, - [140] = { - [sym_comment] = STATE(140), - [anon_sym_export] = ACTIONS(781), - [anon_sym_alias] = ACTIONS(781), - [anon_sym_let] = ACTIONS(781), - [anon_sym_let_DASHenv] = ACTIONS(781), - [anon_sym_mut] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [sym_cmd_identifier] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_def] = ACTIONS(781), - [anon_sym_def_DASHenv] = ACTIONS(781), - [anon_sym_export_DASHenv] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_use] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_error] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_in] = ACTIONS(781), - [anon_sym_loop] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_match] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_source] = ACTIONS(781), - [anon_sym_source_DASHenv] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_hide] = ACTIONS(781), - [anon_sym_hide_DASHenv] = ACTIONS(781), - [anon_sym_overlay] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_where] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_mod] = ACTIONS(781), - [anon_sym_SLASH_SLASH] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_bit_DASHshl] = ACTIONS(781), - [anon_sym_bit_DASHshr] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT2] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_not_DASHin] = ACTIONS(781), - [anon_sym_starts_DASHwith] = ACTIONS(781), - [anon_sym_ends_DASHwith] = ACTIONS(781), - [anon_sym_EQ_TILDE] = ACTIONS(781), - [anon_sym_BANG_TILDE] = ACTIONS(781), - [anon_sym_bit_DASHand] = ACTIONS(781), - [anon_sym_bit_DASHxor] = ACTIONS(781), - [anon_sym_bit_DASHor] = ACTIONS(781), - [anon_sym_and] = ACTIONS(781), - [anon_sym_xor] = ACTIONS(781), - [anon_sym_or] = ACTIONS(781), - [anon_sym_not] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), + [136] = { + [sym_comment] = STATE(136), + [anon_sym_export] = ACTIONS(779), + [anon_sym_alias] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_let_DASHenv] = ACTIONS(779), + [anon_sym_mut] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_cmd_identifier] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_def] = ACTIONS(779), + [anon_sym_def_DASHenv] = ACTIONS(779), + [anon_sym_export_DASHenv] = ACTIONS(779), + [anon_sym_extern] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_use] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_error] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_loop] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_try] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_source] = ACTIONS(779), + [anon_sym_source_DASHenv] = ACTIONS(779), + [anon_sym_register] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_hide_DASHenv] = ACTIONS(779), + [anon_sym_overlay] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_not] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), [anon_sym_POUND] = ACTIONS(3), }, - [141] = { - [sym_comment] = STATE(141), - [ts_builtin_sym_end] = ACTIONS(750), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_in] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(775), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_bit_DASHshl] = ACTIONS(748), - [anon_sym_bit_DASHshr] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_LT2] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_not_DASHin] = ACTIONS(748), - [anon_sym_starts_DASHwith] = ACTIONS(748), - [anon_sym_ends_DASHwith] = ACTIONS(748), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_bit_DASHand] = ACTIONS(748), - [anon_sym_bit_DASHxor] = ACTIONS(748), - [anon_sym_bit_DASHor] = ACTIONS(748), - [anon_sym_and] = ACTIONS(748), - [anon_sym_xor] = ACTIONS(748), - [anon_sym_or] = ACTIONS(748), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), + [137] = { + [sym_expr_parenthesized] = STATE(236), + [sym_val_number] = STATE(236), + [sym_comment] = STATE(137), + [ts_builtin_sym_end] = ACTIONS(760), + [anon_sym_export] = ACTIONS(758), + [anon_sym_alias] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_let_DASHenv] = ACTIONS(758), + [anon_sym_mut] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(758), + [sym_cmd_identifier] = ACTIONS(758), + [anon_sym_LF] = ACTIONS(760), + [anon_sym_def] = ACTIONS(758), + [anon_sym_def_DASHenv] = ACTIONS(758), + [anon_sym_export_DASHenv] = ACTIONS(758), + [anon_sym_extern] = ACTIONS(758), + [anon_sym_module] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(783), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_error] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_in] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [anon_sym_do] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_try] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_source] = ACTIONS(758), + [anon_sym_source_DASHenv] = ACTIONS(758), + [anon_sym_register] = ACTIONS(758), + [anon_sym_hide] = ACTIONS(758), + [anon_sym_hide_DASHenv] = ACTIONS(758), + [anon_sym_overlay] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_bit_DASHshl] = ACTIONS(758), + [anon_sym_bit_DASHshr] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_LT2] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_not_DASHin] = ACTIONS(758), + [anon_sym_starts_DASHwith] = ACTIONS(758), + [anon_sym_ends_DASHwith] = ACTIONS(758), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_bit_DASHand] = ACTIONS(758), + [anon_sym_bit_DASHxor] = ACTIONS(758), + [anon_sym_bit_DASHor] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_not] = ACTIONS(758), + [anon_sym_DOT_DOT_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(758), + [sym_val_nothing] = ACTIONS(758), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [aux_sym_val_number_token1] = ACTIONS(785), + [aux_sym_val_number_token2] = ACTIONS(785), + [aux_sym_val_number_token3] = ACTIONS(785), + [aux_sym_val_number_token4] = ACTIONS(785), + [aux_sym_val_number_token5] = ACTIONS(785), + [anon_sym_inf] = ACTIONS(785), + [anon_sym_DASHinf] = ACTIONS(785), + [anon_sym_NaN] = ACTIONS(785), + [anon_sym_0b] = ACTIONS(758), + [anon_sym_0o] = ACTIONS(758), + [anon_sym_0x] = ACTIONS(758), + [sym_val_date] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym__str_single_quotes] = ACTIONS(758), + [sym__str_back_ticks] = ACTIONS(758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), [anon_sym_POUND] = ACTIONS(3), }, - [142] = { - [sym_expr_parenthesized] = STATE(237), - [sym_val_number] = STATE(237), - [sym_comment] = STATE(142), - [ts_builtin_sym_end] = ACTIONS(758), - [anon_sym_export] = ACTIONS(756), - [anon_sym_alias] = ACTIONS(756), - [anon_sym_let] = ACTIONS(756), - [anon_sym_let_DASHenv] = ACTIONS(756), - [anon_sym_mut] = ACTIONS(756), - [anon_sym_const] = ACTIONS(756), - [anon_sym_SEMI] = ACTIONS(756), - [sym_cmd_identifier] = ACTIONS(756), - [anon_sym_LF] = ACTIONS(758), - [anon_sym_def] = ACTIONS(756), - [anon_sym_def_DASHenv] = ACTIONS(756), - [anon_sym_export_DASHenv] = ACTIONS(756), - [anon_sym_extern] = ACTIONS(756), - [anon_sym_module] = ACTIONS(756), - [anon_sym_use] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(785), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_error] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_break] = ACTIONS(756), - [anon_sym_continue] = ACTIONS(756), - [anon_sym_for] = ACTIONS(756), - [anon_sym_in] = ACTIONS(756), - [anon_sym_loop] = ACTIONS(756), - [anon_sym_while] = ACTIONS(756), - [anon_sym_do] = ACTIONS(756), - [anon_sym_if] = ACTIONS(756), - [anon_sym_match] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_try] = ACTIONS(756), - [anon_sym_return] = ACTIONS(756), - [anon_sym_source] = ACTIONS(756), - [anon_sym_source_DASHenv] = ACTIONS(756), - [anon_sym_register] = ACTIONS(756), - [anon_sym_hide] = ACTIONS(756), - [anon_sym_hide_DASHenv] = ACTIONS(756), - [anon_sym_overlay] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_where] = ACTIONS(756), - [anon_sym_STAR_STAR] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_mod] = ACTIONS(756), - [anon_sym_SLASH_SLASH] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_bit_DASHshl] = ACTIONS(756), - [anon_sym_bit_DASHshr] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_LT2] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_not_DASHin] = ACTIONS(756), - [anon_sym_starts_DASHwith] = ACTIONS(756), - [anon_sym_ends_DASHwith] = ACTIONS(756), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_bit_DASHand] = ACTIONS(756), - [anon_sym_bit_DASHxor] = ACTIONS(756), - [anon_sym_bit_DASHor] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_xor] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [anon_sym_not] = ACTIONS(756), - [anon_sym_DOT_DOT_LT] = ACTIONS(756), - [anon_sym_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [sym_val_nothing] = ACTIONS(756), - [anon_sym_true] = ACTIONS(756), - [anon_sym_false] = ACTIONS(756), + [138] = { + [sym_comment] = STATE(138), + [anon_sym_export] = ACTIONS(787), + [anon_sym_alias] = ACTIONS(787), + [anon_sym_let] = ACTIONS(787), + [anon_sym_let_DASHenv] = ACTIONS(787), + [anon_sym_mut] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_cmd_identifier] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_def] = ACTIONS(787), + [anon_sym_def_DASHenv] = ACTIONS(787), + [anon_sym_export_DASHenv] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_use] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_error] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_in] = ACTIONS(787), + [anon_sym_loop] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_source] = ACTIONS(787), + [anon_sym_source_DASHenv] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_hide_DASHenv] = ACTIONS(787), + [anon_sym_overlay] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_STAR_STAR] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_mod] = ACTIONS(787), + [anon_sym_SLASH_SLASH] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_bit_DASHshl] = ACTIONS(787), + [anon_sym_bit_DASHshr] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT2] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(787), + [anon_sym_not_DASHin] = ACTIONS(787), + [anon_sym_starts_DASHwith] = ACTIONS(787), + [anon_sym_ends_DASHwith] = ACTIONS(787), + [anon_sym_EQ_TILDE] = ACTIONS(787), + [anon_sym_BANG_TILDE] = ACTIONS(787), + [anon_sym_bit_DASHand] = ACTIONS(787), + [anon_sym_bit_DASHxor] = ACTIONS(787), + [anon_sym_bit_DASHor] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_not] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), [aux_sym_val_number_token1] = ACTIONS(787), [aux_sym_val_number_token2] = ACTIONS(787), [aux_sym_val_number_token3] = ACTIONS(787), @@ -58036,214 +57725,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(787), [anon_sym_DASHinf] = ACTIONS(787), [anon_sym_NaN] = ACTIONS(787), - [anon_sym_0b] = ACTIONS(756), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [sym__str_single_quotes] = ACTIONS(756), - [sym__str_back_ticks] = ACTIONS(756), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), - [anon_sym_CARET] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(3), - }, - [143] = { - [sym_comment] = STATE(143), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(787), [anon_sym_POUND] = ACTIONS(3), }, - [144] = { - [sym_comment] = STATE(144), - [anon_sym_export] = ACTIONS(789), - [anon_sym_alias] = ACTIONS(789), - [anon_sym_let] = ACTIONS(789), - [anon_sym_let_DASHenv] = ACTIONS(789), - [anon_sym_mut] = ACTIONS(789), - [anon_sym_const] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [sym_cmd_identifier] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_def] = ACTIONS(789), - [anon_sym_def_DASHenv] = ACTIONS(789), - [anon_sym_export_DASHenv] = ACTIONS(789), - [anon_sym_extern] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_use] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_error] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(789), - [anon_sym_loop] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_match] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_source] = ACTIONS(789), - [anon_sym_source_DASHenv] = ACTIONS(789), - [anon_sym_register] = ACTIONS(789), - [anon_sym_hide] = ACTIONS(789), - [anon_sym_hide_DASHenv] = ACTIONS(789), - [anon_sym_overlay] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_where] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(789), - [anon_sym_SLASH_SLASH] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_bit_DASHshl] = ACTIONS(789), - [anon_sym_bit_DASHshr] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_not_DASHin] = ACTIONS(789), - [anon_sym_starts_DASHwith] = ACTIONS(789), - [anon_sym_ends_DASHwith] = ACTIONS(789), - [anon_sym_EQ_TILDE] = ACTIONS(789), - [anon_sym_BANG_TILDE] = ACTIONS(789), - [anon_sym_bit_DASHand] = ACTIONS(789), - [anon_sym_bit_DASHxor] = ACTIONS(789), - [anon_sym_bit_DASHor] = ACTIONS(789), - [anon_sym_and] = ACTIONS(789), - [anon_sym_xor] = ACTIONS(789), - [anon_sym_or] = ACTIONS(789), - [anon_sym_not] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), + [139] = { + [sym_comment] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [145] = { - [sym_comment] = STATE(145), + [140] = { + [sym_comment] = STATE(140), [anon_sym_export] = ACTIONS(793), [anon_sym_alias] = ACTIONS(793), [anon_sym_let] = ACTIONS(793), @@ -58277,6 +57869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(793), [anon_sym_LBRACE] = ACTIONS(793), [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), [anon_sym_try] = ACTIONS(793), [anon_sym_return] = ACTIONS(793), [anon_sym_source] = ACTIONS(793), @@ -58287,8 +57880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(793), [anon_sym_STAR] = ACTIONS(793), [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), [anon_sym_SLASH] = ACTIONS(793), [anon_sym_mod] = ACTIONS(793), [anon_sym_SLASH_SLASH] = ACTIONS(793), @@ -58338,296 +57931,492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3), }, - [146] = { - [sym_comment] = STATE(146), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), + [141] = { + [sym_comment] = STATE(141), + [anon_sym_export] = ACTIONS(797), + [anon_sym_alias] = ACTIONS(797), + [anon_sym_let] = ACTIONS(797), + [anon_sym_let_DASHenv] = ACTIONS(797), + [anon_sym_mut] = ACTIONS(797), + [anon_sym_const] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [sym_cmd_identifier] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_def] = ACTIONS(797), + [anon_sym_def_DASHenv] = ACTIONS(797), + [anon_sym_export_DASHenv] = ACTIONS(797), + [anon_sym_extern] = ACTIONS(797), + [anon_sym_module] = ACTIONS(797), + [anon_sym_use] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_error] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_break] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(797), + [anon_sym_for] = ACTIONS(797), + [anon_sym_in] = ACTIONS(797), + [anon_sym_loop] = ACTIONS(797), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(797), + [anon_sym_if] = ACTIONS(797), + [anon_sym_match] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_try] = ACTIONS(797), + [anon_sym_return] = ACTIONS(797), + [anon_sym_source] = ACTIONS(797), + [anon_sym_source_DASHenv] = ACTIONS(797), + [anon_sym_register] = ACTIONS(797), + [anon_sym_hide] = ACTIONS(797), + [anon_sym_hide_DASHenv] = ACTIONS(797), + [anon_sym_overlay] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_where] = ACTIONS(797), [anon_sym_STAR_STAR] = ACTIONS(797), [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(817), - [anon_sym_xor] = ACTIONS(819), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_mod] = ACTIONS(797), + [anon_sym_SLASH_SLASH] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_bit_DASHshl] = ACTIONS(797), + [anon_sym_bit_DASHshr] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_LT2] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_not_DASHin] = ACTIONS(797), + [anon_sym_starts_DASHwith] = ACTIONS(797), + [anon_sym_ends_DASHwith] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [anon_sym_BANG_TILDE] = ACTIONS(797), + [anon_sym_bit_DASHand] = ACTIONS(797), + [anon_sym_bit_DASHxor] = ACTIONS(797), + [anon_sym_bit_DASHor] = ACTIONS(797), + [anon_sym_and] = ACTIONS(797), + [anon_sym_xor] = ACTIONS(797), + [anon_sym_or] = ACTIONS(797), + [anon_sym_not] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), [anon_sym_POUND] = ACTIONS(3), }, - [147] = { - [sym_comment] = STATE(147), - [anon_sym_export] = ACTIONS(821), - [anon_sym_alias] = ACTIONS(821), - [anon_sym_let] = ACTIONS(821), - [anon_sym_let_DASHenv] = ACTIONS(821), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_const] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [sym_cmd_identifier] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(823), - [anon_sym_def] = ACTIONS(821), - [anon_sym_def_DASHenv] = ACTIONS(821), - [anon_sym_export_DASHenv] = ACTIONS(821), - [anon_sym_extern] = ACTIONS(821), - [anon_sym_module] = ACTIONS(821), - [anon_sym_use] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_error] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_loop] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_do] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_try] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_source] = ACTIONS(821), - [anon_sym_source_DASHenv] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_hide] = ACTIONS(821), - [anon_sym_hide_DASHenv] = ACTIONS(821), - [anon_sym_overlay] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_where] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_mod] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_bit_DASHshl] = ACTIONS(821), - [anon_sym_bit_DASHshr] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT2] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_not_DASHin] = ACTIONS(821), - [anon_sym_starts_DASHwith] = ACTIONS(821), - [anon_sym_ends_DASHwith] = ACTIONS(821), - [anon_sym_EQ_TILDE] = ACTIONS(821), - [anon_sym_BANG_TILDE] = ACTIONS(821), - [anon_sym_bit_DASHand] = ACTIONS(821), - [anon_sym_bit_DASHxor] = ACTIONS(821), - [anon_sym_bit_DASHor] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_not] = ACTIONS(821), - [anon_sym_DOT_DOT_LT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(821), - [sym_val_nothing] = ACTIONS(821), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [aux_sym_val_number_token1] = ACTIONS(821), - [aux_sym_val_number_token2] = ACTIONS(821), - [aux_sym_val_number_token3] = ACTIONS(821), - [aux_sym_val_number_token4] = ACTIONS(821), - [aux_sym_val_number_token5] = ACTIONS(821), - [anon_sym_inf] = ACTIONS(821), - [anon_sym_DASHinf] = ACTIONS(821), - [anon_sym_NaN] = ACTIONS(821), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(821), - [anon_sym_0x] = ACTIONS(821), - [sym_val_date] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym__str_single_quotes] = ACTIONS(821), - [sym__str_back_ticks] = ACTIONS(821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), + [142] = { + [sym_comment] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_export] = ACTIONS(775), + [anon_sym_alias] = ACTIONS(775), + [anon_sym_let] = ACTIONS(775), + [anon_sym_let_DASHenv] = ACTIONS(775), + [anon_sym_mut] = ACTIONS(775), + [anon_sym_const] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [sym_cmd_identifier] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_def] = ACTIONS(775), + [anon_sym_def_DASHenv] = ACTIONS(775), + [anon_sym_export_DASHenv] = ACTIONS(775), + [anon_sym_extern] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_use] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_error] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_try] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_source] = ACTIONS(775), + [anon_sym_source_DASHenv] = ACTIONS(775), + [anon_sym_register] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_hide_DASHenv] = ACTIONS(775), + [anon_sym_overlay] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_where] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_not] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, - [148] = { - [sym_comment] = STATE(148), - [anon_sym_export] = ACTIONS(825), - [anon_sym_alias] = ACTIONS(825), - [anon_sym_let] = ACTIONS(825), - [anon_sym_let_DASHenv] = ACTIONS(825), - [anon_sym_mut] = ACTIONS(825), - [anon_sym_const] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(825), - [sym_cmd_identifier] = ACTIONS(825), - [anon_sym_LF] = ACTIONS(827), - [anon_sym_def] = ACTIONS(825), - [anon_sym_def_DASHenv] = ACTIONS(825), - [anon_sym_export_DASHenv] = ACTIONS(825), - [anon_sym_extern] = ACTIONS(825), - [anon_sym_module] = ACTIONS(825), - [anon_sym_use] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_error] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_in] = ACTIONS(825), - [anon_sym_loop] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_do] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_match] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_try] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_source] = ACTIONS(825), - [anon_sym_source_DASHenv] = ACTIONS(825), - [anon_sym_register] = ACTIONS(825), - [anon_sym_hide] = ACTIONS(825), - [anon_sym_hide_DASHenv] = ACTIONS(825), - [anon_sym_overlay] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_where] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_mod] = ACTIONS(825), - [anon_sym_SLASH_SLASH] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_bit_DASHshl] = ACTIONS(825), - [anon_sym_bit_DASHshr] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_not_DASHin] = ACTIONS(825), - [anon_sym_starts_DASHwith] = ACTIONS(825), - [anon_sym_ends_DASHwith] = ACTIONS(825), - [anon_sym_EQ_TILDE] = ACTIONS(825), - [anon_sym_BANG_TILDE] = ACTIONS(825), - [anon_sym_bit_DASHand] = ACTIONS(825), - [anon_sym_bit_DASHxor] = ACTIONS(825), - [anon_sym_bit_DASHor] = ACTIONS(825), + [143] = { + [sym_comment] = STATE(143), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(791), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(3), + }, + [144] = { + [sym_comment] = STATE(144), + [ts_builtin_sym_end] = ACTIONS(781), + [anon_sym_export] = ACTIONS(779), + [anon_sym_alias] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_let_DASHenv] = ACTIONS(779), + [anon_sym_mut] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_cmd_identifier] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_def] = ACTIONS(779), + [anon_sym_def_DASHenv] = ACTIONS(779), + [anon_sym_export_DASHenv] = ACTIONS(779), + [anon_sym_extern] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_use] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_error] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_loop] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_try] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_source] = ACTIONS(779), + [anon_sym_source_DASHenv] = ACTIONS(779), + [anon_sym_register] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_hide_DASHenv] = ACTIONS(779), + [anon_sym_overlay] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_not] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(3), + }, + [145] = { + [sym_comment] = STATE(145), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(823), [anon_sym_and] = ACTIONS(825), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_not] = ACTIONS(825), - [anon_sym_DOT_DOT_LT] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(825), - [sym_val_nothing] = ACTIONS(825), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [aux_sym_val_number_token1] = ACTIONS(825), - [aux_sym_val_number_token2] = ACTIONS(825), - [aux_sym_val_number_token3] = ACTIONS(825), - [aux_sym_val_number_token4] = ACTIONS(825), - [aux_sym_val_number_token5] = ACTIONS(825), - [anon_sym_inf] = ACTIONS(825), - [anon_sym_DASHinf] = ACTIONS(825), - [anon_sym_NaN] = ACTIONS(825), - [anon_sym_0b] = ACTIONS(825), - [anon_sym_0o] = ACTIONS(825), - [anon_sym_0x] = ACTIONS(825), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [149] = { - [sym_comment] = STATE(149), + [146] = { + [sym_comment] = STATE(146), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -58722,104 +58511,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [150] = { - [sym_comment] = STATE(150), - [ts_builtin_sym_end] = ACTIONS(783), - [anon_sym_export] = ACTIONS(781), - [anon_sym_alias] = ACTIONS(781), - [anon_sym_let] = ACTIONS(781), - [anon_sym_let_DASHenv] = ACTIONS(781), - [anon_sym_mut] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [sym_cmd_identifier] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_def] = ACTIONS(781), - [anon_sym_def_DASHenv] = ACTIONS(781), - [anon_sym_export_DASHenv] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_use] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_error] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_in] = ACTIONS(781), - [anon_sym_loop] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_match] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_source] = ACTIONS(781), - [anon_sym_source_DASHenv] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_hide] = ACTIONS(781), - [anon_sym_hide_DASHenv] = ACTIONS(781), - [anon_sym_overlay] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_where] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_mod] = ACTIONS(781), - [anon_sym_SLASH_SLASH] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_bit_DASHshl] = ACTIONS(781), - [anon_sym_bit_DASHshr] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT2] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_not_DASHin] = ACTIONS(781), - [anon_sym_starts_DASHwith] = ACTIONS(781), - [anon_sym_ends_DASHwith] = ACTIONS(781), - [anon_sym_EQ_TILDE] = ACTIONS(781), - [anon_sym_BANG_TILDE] = ACTIONS(781), - [anon_sym_bit_DASHand] = ACTIONS(781), - [anon_sym_bit_DASHxor] = ACTIONS(781), - [anon_sym_bit_DASHor] = ACTIONS(781), - [anon_sym_and] = ACTIONS(781), - [anon_sym_xor] = ACTIONS(781), - [anon_sym_or] = ACTIONS(781), - [anon_sym_not] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(3), - }, - [151] = { - [sym_comment] = STATE(151), + [147] = { + [sym_comment] = STATE(147), [anon_sym_export] = ACTIONS(833), [anon_sym_alias] = ACTIONS(833), [anon_sym_let] = ACTIONS(833), @@ -58914,6 +58607,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(833), [anon_sym_POUND] = ACTIONS(3), }, + [148] = { + [sym_comment] = STATE(148), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [149] = { + [sym_comment] = STATE(149), + [anon_sym_export] = ACTIONS(829), + [anon_sym_alias] = ACTIONS(829), + [anon_sym_let] = ACTIONS(829), + [anon_sym_let_DASHenv] = ACTIONS(829), + [anon_sym_mut] = ACTIONS(829), + [anon_sym_const] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [sym_cmd_identifier] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_def] = ACTIONS(829), + [anon_sym_def_DASHenv] = ACTIONS(829), + [anon_sym_export_DASHenv] = ACTIONS(829), + [anon_sym_extern] = ACTIONS(829), + [anon_sym_module] = ACTIONS(829), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_loop] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_try] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_source] = ACTIONS(829), + [anon_sym_source_DASHenv] = ACTIONS(829), + [anon_sym_register] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_hide_DASHenv] = ACTIONS(829), + [anon_sym_overlay] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_where] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_not] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, + [150] = { + [sym_comment] = STATE(150), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(801), + [anon_sym_SLASH_SLASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [151] = { + [sym_comment] = STATE(151), + [anon_sym_export] = ACTIONS(829), + [anon_sym_alias] = ACTIONS(829), + [anon_sym_let] = ACTIONS(829), + [anon_sym_let_DASHenv] = ACTIONS(829), + [anon_sym_mut] = ACTIONS(829), + [anon_sym_const] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [sym_cmd_identifier] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_def] = ACTIONS(829), + [anon_sym_def_DASHenv] = ACTIONS(829), + [anon_sym_export_DASHenv] = ACTIONS(829), + [anon_sym_extern] = ACTIONS(829), + [anon_sym_module] = ACTIONS(829), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_loop] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_try] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_source] = ACTIONS(829), + [anon_sym_source_DASHenv] = ACTIONS(829), + [anon_sym_register] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_hide_DASHenv] = ACTIONS(829), + [anon_sym_overlay] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_where] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_not] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, [152] = { [sym_comment] = STATE(152), [anon_sym_export] = ACTIONS(837), @@ -59012,6 +59089,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [153] = { [sym_comment] = STATE(153), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [154] = { + [sym_comment] = STATE(154), + [anon_sym_export] = ACTIONS(829), + [anon_sym_alias] = ACTIONS(829), + [anon_sym_let] = ACTIONS(829), + [anon_sym_let_DASHenv] = ACTIONS(829), + [anon_sym_mut] = ACTIONS(829), + [anon_sym_const] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [sym_cmd_identifier] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_def] = ACTIONS(829), + [anon_sym_def_DASHenv] = ACTIONS(829), + [anon_sym_export_DASHenv] = ACTIONS(829), + [anon_sym_extern] = ACTIONS(829), + [anon_sym_module] = ACTIONS(829), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_loop] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_try] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_source] = ACTIONS(829), + [anon_sym_source_DASHenv] = ACTIONS(829), + [anon_sym_register] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_hide_DASHenv] = ACTIONS(829), + [anon_sym_overlay] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_where] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_not] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, + [155] = { + [sym_comment] = STATE(155), [anon_sym_export] = ACTIONS(841), [anon_sym_alias] = ACTIONS(841), [anon_sym_let] = ACTIONS(841), @@ -59106,8 +59375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(841), [anon_sym_POUND] = ACTIONS(3), }, - [154] = { - [sym_comment] = STATE(154), + [156] = { + [sym_comment] = STATE(156), [anon_sym_export] = ACTIONS(845), [anon_sym_alias] = ACTIONS(845), [anon_sym_let] = ACTIONS(845), @@ -59202,104 +59471,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(845), [anon_sym_POUND] = ACTIONS(3), }, - [155] = { - [sym_comment] = STATE(155), - [ts_builtin_sym_end] = ACTIONS(779), - [anon_sym_export] = ACTIONS(777), - [anon_sym_alias] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_let_DASHenv] = ACTIONS(777), - [anon_sym_mut] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [sym_cmd_identifier] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_def] = ACTIONS(777), - [anon_sym_def_DASHenv] = ACTIONS(777), - [anon_sym_export_DASHenv] = ACTIONS(777), - [anon_sym_extern] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_error] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_source] = ACTIONS(777), - [anon_sym_source_DASHenv] = ACTIONS(777), - [anon_sym_register] = ACTIONS(777), - [anon_sym_hide] = ACTIONS(777), - [anon_sym_hide_DASHenv] = ACTIONS(777), - [anon_sym_overlay] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_not] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), + [157] = { + [sym_comment] = STATE(157), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [156] = { - [sym_comment] = STATE(156), + [158] = { + [sym_comment] = STATE(158), + [anon_sym_export] = ACTIONS(829), + [anon_sym_alias] = ACTIONS(829), + [anon_sym_let] = ACTIONS(829), + [anon_sym_let_DASHenv] = ACTIONS(829), + [anon_sym_mut] = ACTIONS(829), + [anon_sym_const] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [sym_cmd_identifier] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_def] = ACTIONS(829), + [anon_sym_def_DASHenv] = ACTIONS(829), + [anon_sym_export_DASHenv] = ACTIONS(829), + [anon_sym_extern] = ACTIONS(829), + [anon_sym_module] = ACTIONS(829), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_loop] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_try] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_source] = ACTIONS(829), + [anon_sym_source_DASHenv] = ACTIONS(829), + [anon_sym_register] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_hide_DASHenv] = ACTIONS(829), + [anon_sym_overlay] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_where] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_not] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_CARET] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, + [159] = { + [sym_comment] = STATE(159), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [160] = { + [sym_comment] = STATE(160), [anon_sym_export] = ACTIONS(849), [anon_sym_alias] = ACTIONS(849), [anon_sym_let] = ACTIONS(849), @@ -59394,104 +59855,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(849), [anon_sym_POUND] = ACTIONS(3), }, - [157] = { - [sym_comment] = STATE(157), - [anon_sym_export] = ACTIONS(849), - [anon_sym_alias] = ACTIONS(849), - [anon_sym_let] = ACTIONS(849), - [anon_sym_let_DASHenv] = ACTIONS(849), - [anon_sym_mut] = ACTIONS(849), - [anon_sym_const] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [sym_cmd_identifier] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_def] = ACTIONS(849), - [anon_sym_def_DASHenv] = ACTIONS(849), - [anon_sym_export_DASHenv] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_use] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_error] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_match] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_source] = ACTIONS(849), - [anon_sym_source_DASHenv] = ACTIONS(849), - [anon_sym_register] = ACTIONS(849), - [anon_sym_hide] = ACTIONS(849), - [anon_sym_hide_DASHenv] = ACTIONS(849), - [anon_sym_overlay] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_where] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_not] = ACTIONS(849), - [anon_sym_DOT_DOT_LT] = ACTIONS(107), - [anon_sym_DOT_DOT] = ACTIONS(107), - [anon_sym_DOT_DOT_EQ] = ACTIONS(107), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [158] = { - [sym_comment] = STATE(158), + [161] = { + [sym_comment] = STATE(161), [anon_sym_export] = ACTIONS(853), [anon_sym_alias] = ACTIONS(853), [anon_sym_let] = ACTIONS(853), @@ -59586,8 +59951,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(3), }, - [159] = { - [sym_comment] = STATE(159), + [162] = { + [sym_comment] = STATE(162), [anon_sym_export] = ACTIONS(857), [anon_sym_alias] = ACTIONS(857), [anon_sym_let] = ACTIONS(857), @@ -59682,8 +60047,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(3), }, - [160] = { - [sym_comment] = STATE(160), + [163] = { + [sym_comment] = STATE(163), + [anon_sym_export] = ACTIONS(833), + [anon_sym_alias] = ACTIONS(833), + [anon_sym_let] = ACTIONS(833), + [anon_sym_let_DASHenv] = ACTIONS(833), + [anon_sym_mut] = ACTIONS(833), + [anon_sym_const] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(833), + [sym_cmd_identifier] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_def] = ACTIONS(833), + [anon_sym_def_DASHenv] = ACTIONS(833), + [anon_sym_export_DASHenv] = ACTIONS(833), + [anon_sym_extern] = ACTIONS(833), + [anon_sym_module] = ACTIONS(833), + [anon_sym_use] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_error] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_break] = ACTIONS(833), + [anon_sym_continue] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_loop] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_match] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_try] = ACTIONS(833), + [anon_sym_return] = ACTIONS(833), + [anon_sym_source] = ACTIONS(833), + [anon_sym_source_DASHenv] = ACTIONS(833), + [anon_sym_register] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_hide_DASHenv] = ACTIONS(833), + [anon_sym_overlay] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_where] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_not] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_POUND] = ACTIONS(3), + }, + [164] = { + [sym_comment] = STATE(164), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [165] = { + [sym_comment] = STATE(165), [anon_sym_export] = ACTIONS(861), [anon_sym_alias] = ACTIONS(861), [anon_sym_let] = ACTIONS(861), @@ -59778,104 +60335,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(861), [anon_sym_POUND] = ACTIONS(3), }, - [161] = { - [sym_comment] = STATE(161), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [166] = { + [sym_comment] = STATE(166), + [anon_sym_export] = ACTIONS(865), + [anon_sym_alias] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_let_DASHenv] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [sym_cmd_identifier] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_def] = ACTIONS(865), + [anon_sym_def_DASHenv] = ACTIONS(865), + [anon_sym_export_DASHenv] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(865), + [anon_sym_module] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_error] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_loop] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_source] = ACTIONS(865), + [anon_sym_source_DASHenv] = ACTIONS(865), + [anon_sym_register] = ACTIONS(865), + [anon_sym_hide] = ACTIONS(865), + [anon_sym_hide_DASHenv] = ACTIONS(865), + [anon_sym_overlay] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_where] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_not] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(3), }, - [162] = { - [sym_comment] = STATE(162), + [167] = { + [sym_comment] = STATE(167), + [anon_sym_export] = ACTIONS(869), + [anon_sym_alias] = ACTIONS(869), + [anon_sym_let] = ACTIONS(869), + [anon_sym_let_DASHenv] = ACTIONS(869), + [anon_sym_mut] = ACTIONS(869), + [anon_sym_const] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(869), + [sym_cmd_identifier] = ACTIONS(869), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_def] = ACTIONS(869), + [anon_sym_def_DASHenv] = ACTIONS(869), + [anon_sym_export_DASHenv] = ACTIONS(869), + [anon_sym_extern] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_use] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_error] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_break] = ACTIONS(869), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_for] = ACTIONS(869), + [anon_sym_in] = ACTIONS(869), + [anon_sym_loop] = ACTIONS(869), + [anon_sym_while] = ACTIONS(869), + [anon_sym_do] = ACTIONS(869), + [anon_sym_if] = ACTIONS(869), + [anon_sym_match] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_try] = ACTIONS(869), + [anon_sym_return] = ACTIONS(869), + [anon_sym_source] = ACTIONS(869), + [anon_sym_source_DASHenv] = ACTIONS(869), + [anon_sym_register] = ACTIONS(869), + [anon_sym_hide] = ACTIONS(869), + [anon_sym_hide_DASHenv] = ACTIONS(869), + [anon_sym_overlay] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_where] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_SLASH_SLASH] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_bit_DASHshl] = ACTIONS(869), + [anon_sym_bit_DASHshr] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_not_DASHin] = ACTIONS(869), + [anon_sym_starts_DASHwith] = ACTIONS(869), + [anon_sym_ends_DASHwith] = ACTIONS(869), + [anon_sym_EQ_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_bit_DASHand] = ACTIONS(869), + [anon_sym_bit_DASHxor] = ACTIONS(869), + [anon_sym_bit_DASHor] = ACTIONS(869), + [anon_sym_and] = ACTIONS(869), + [anon_sym_xor] = ACTIONS(869), + [anon_sym_or] = ACTIONS(869), + [anon_sym_not] = ACTIONS(869), + [anon_sym_DOT_DOT_LT] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [sym_val_nothing] = ACTIONS(869), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), + [aux_sym_val_number_token1] = ACTIONS(869), + [aux_sym_val_number_token2] = ACTIONS(869), + [aux_sym_val_number_token3] = ACTIONS(869), + [aux_sym_val_number_token4] = ACTIONS(869), + [aux_sym_val_number_token5] = ACTIONS(869), + [anon_sym_inf] = ACTIONS(869), + [anon_sym_DASHinf] = ACTIONS(869), + [anon_sym_NaN] = ACTIONS(869), + [anon_sym_0b] = ACTIONS(869), + [anon_sym_0o] = ACTIONS(869), + [anon_sym_0x] = ACTIONS(869), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym__str_single_quotes] = ACTIONS(869), + [sym__str_back_ticks] = ACTIONS(869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(3), + }, + [168] = { + [sym_comment] = STATE(168), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -59970,200 +60623,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [163] = { - [sym_comment] = STATE(163), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [169] = { + [sym_comment] = STATE(169), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [164] = { - [sym_comment] = STATE(164), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_export] = ACTIONS(789), - [anon_sym_alias] = ACTIONS(789), - [anon_sym_let] = ACTIONS(789), - [anon_sym_let_DASHenv] = ACTIONS(789), - [anon_sym_mut] = ACTIONS(789), - [anon_sym_const] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [sym_cmd_identifier] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_def] = ACTIONS(789), - [anon_sym_def_DASHenv] = ACTIONS(789), - [anon_sym_export_DASHenv] = ACTIONS(789), - [anon_sym_extern] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_use] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_error] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_in] = ACTIONS(789), - [anon_sym_loop] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_match] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_source] = ACTIONS(789), - [anon_sym_source_DASHenv] = ACTIONS(789), - [anon_sym_register] = ACTIONS(789), - [anon_sym_hide] = ACTIONS(789), - [anon_sym_hide_DASHenv] = ACTIONS(789), - [anon_sym_overlay] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_where] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(789), - [anon_sym_SLASH_SLASH] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_bit_DASHshl] = ACTIONS(789), - [anon_sym_bit_DASHshr] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_not_DASHin] = ACTIONS(789), - [anon_sym_starts_DASHwith] = ACTIONS(789), - [anon_sym_ends_DASHwith] = ACTIONS(789), - [anon_sym_EQ_TILDE] = ACTIONS(789), - [anon_sym_BANG_TILDE] = ACTIONS(789), - [anon_sym_bit_DASHand] = ACTIONS(789), - [anon_sym_bit_DASHxor] = ACTIONS(789), - [anon_sym_bit_DASHor] = ACTIONS(789), - [anon_sym_and] = ACTIONS(789), - [anon_sym_xor] = ACTIONS(789), - [anon_sym_or] = ACTIONS(789), - [anon_sym_not] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), + [170] = { + [sym_comment] = STATE(170), + [anon_sym_export] = ACTIONS(873), + [anon_sym_alias] = ACTIONS(873), + [anon_sym_let] = ACTIONS(873), + [anon_sym_let_DASHenv] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(873), + [anon_sym_const] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(873), + [sym_cmd_identifier] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(875), + [anon_sym_def] = ACTIONS(873), + [anon_sym_def_DASHenv] = ACTIONS(873), + [anon_sym_export_DASHenv] = ACTIONS(873), + [anon_sym_extern] = ACTIONS(873), + [anon_sym_module] = ACTIONS(873), + [anon_sym_use] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_error] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_break] = ACTIONS(873), + [anon_sym_continue] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_do] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_match] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_try] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_source] = ACTIONS(873), + [anon_sym_source_DASHenv] = ACTIONS(873), + [anon_sym_register] = ACTIONS(873), + [anon_sym_hide] = ACTIONS(873), + [anon_sym_hide_DASHenv] = ACTIONS(873), + [anon_sym_overlay] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_where] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_mod] = ACTIONS(873), + [anon_sym_SLASH_SLASH] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_bit_DASHshl] = ACTIONS(873), + [anon_sym_bit_DASHshr] = ACTIONS(873), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(873), + [anon_sym_BANG_TILDE] = ACTIONS(873), + [anon_sym_bit_DASHand] = ACTIONS(873), + [anon_sym_bit_DASHxor] = ACTIONS(873), + [anon_sym_bit_DASHor] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_xor] = ACTIONS(873), + [anon_sym_or] = ACTIONS(873), + [anon_sym_not] = ACTIONS(873), + [anon_sym_DOT_DOT_LT] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [sym_val_nothing] = ACTIONS(873), + [anon_sym_true] = ACTIONS(873), + [anon_sym_false] = ACTIONS(873), + [aux_sym_val_number_token1] = ACTIONS(873), + [aux_sym_val_number_token2] = ACTIONS(873), + [aux_sym_val_number_token3] = ACTIONS(873), + [aux_sym_val_number_token4] = ACTIONS(873), + [aux_sym_val_number_token5] = ACTIONS(873), + [anon_sym_inf] = ACTIONS(873), + [anon_sym_DASHinf] = ACTIONS(873), + [anon_sym_NaN] = ACTIONS(873), + [anon_sym_0b] = ACTIONS(873), + [anon_sym_0o] = ACTIONS(873), + [anon_sym_0x] = ACTIONS(873), + [sym_val_date] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym__str_single_quotes] = ACTIONS(873), + [sym__str_back_ticks] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), [anon_sym_POUND] = ACTIONS(3), }, - [165] = { - [sym_comment] = STATE(165), + [171] = { + [sym_comment] = STATE(171), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_def_DASHenv] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_DOT_DOT_LT] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [sym_val_nothing] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym_val_number_token1] = ACTIONS(877), + [aux_sym_val_number_token2] = ACTIONS(877), + [aux_sym_val_number_token3] = ACTIONS(877), + [aux_sym_val_number_token4] = ACTIONS(877), + [aux_sym_val_number_token5] = ACTIONS(877), + [anon_sym_inf] = ACTIONS(877), + [anon_sym_DASHinf] = ACTIONS(877), + [anon_sym_NaN] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), + }, + [172] = { + [sym_comment] = STATE(172), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -60258,8 +61007,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [166] = { - [sym_comment] = STATE(166), + [173] = { + [sym_comment] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(789), + [anon_sym_export] = ACTIONS(787), + [anon_sym_alias] = ACTIONS(787), + [anon_sym_let] = ACTIONS(787), + [anon_sym_let_DASHenv] = ACTIONS(787), + [anon_sym_mut] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_cmd_identifier] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_def] = ACTIONS(787), + [anon_sym_def_DASHenv] = ACTIONS(787), + [anon_sym_export_DASHenv] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_use] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_error] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_in] = ACTIONS(787), + [anon_sym_loop] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_source] = ACTIONS(787), + [anon_sym_source_DASHenv] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_hide_DASHenv] = ACTIONS(787), + [anon_sym_overlay] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_STAR_STAR] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_mod] = ACTIONS(787), + [anon_sym_SLASH_SLASH] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_bit_DASHshl] = ACTIONS(787), + [anon_sym_bit_DASHshr] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT2] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(787), + [anon_sym_not_DASHin] = ACTIONS(787), + [anon_sym_starts_DASHwith] = ACTIONS(787), + [anon_sym_ends_DASHwith] = ACTIONS(787), + [anon_sym_EQ_TILDE] = ACTIONS(787), + [anon_sym_BANG_TILDE] = ACTIONS(787), + [anon_sym_bit_DASHand] = ACTIONS(787), + [anon_sym_bit_DASHxor] = ACTIONS(787), + [anon_sym_bit_DASHor] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_not] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [aux_sym_val_number_token1] = ACTIONS(787), + [aux_sym_val_number_token2] = ACTIONS(787), + [aux_sym_val_number_token3] = ACTIONS(787), + [aux_sym_val_number_token4] = ACTIONS(787), + [aux_sym_val_number_token5] = ACTIONS(787), + [anon_sym_inf] = ACTIONS(787), + [anon_sym_DASHinf] = ACTIONS(787), + [anon_sym_NaN] = ACTIONS(787), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(3), + }, + [174] = { + [sym_comment] = STATE(174), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [175] = { + [sym_comment] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(795), [anon_sym_export] = ACTIONS(793), [anon_sym_alias] = ACTIONS(793), [anon_sym_let] = ACTIONS(793), @@ -60277,22 +61219,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(793), [anon_sym_LBRACK] = ACTIONS(793), [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_DOLLAR] = ACTIONS(793), [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), [anon_sym_break] = ACTIONS(793), [anon_sym_continue] = ACTIONS(793), [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), + [anon_sym_in] = ACTIONS(793), [anon_sym_loop] = ACTIONS(793), [anon_sym_while] = ACTIONS(793), [anon_sym_do] = ACTIONS(793), [anon_sym_if] = ACTIONS(793), [anon_sym_match] = ACTIONS(793), [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), [anon_sym_try] = ACTIONS(793), [anon_sym_return] = ACTIONS(793), [anon_sym_source] = ACTIONS(793), @@ -60301,24 +61242,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(793), [anon_sym_hide_DASHenv] = ACTIONS(793), [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), + [anon_sym_STAR] = ACTIONS(793), [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), [anon_sym_EQ_TILDE] = ACTIONS(793), [anon_sym_BANG_TILDE] = ACTIONS(793), [anon_sym_bit_DASHand] = ACTIONS(793), @@ -60354,8 +61295,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3), }, - [167] = { - [sym_comment] = STATE(167), + [176] = { + [sym_comment] = STATE(176), + [anon_sym_export] = ACTIONS(881), + [anon_sym_alias] = ACTIONS(881), + [anon_sym_let] = ACTIONS(881), + [anon_sym_let_DASHenv] = ACTIONS(881), + [anon_sym_mut] = ACTIONS(881), + [anon_sym_const] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [sym_cmd_identifier] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_def] = ACTIONS(881), + [anon_sym_def_DASHenv] = ACTIONS(881), + [anon_sym_export_DASHenv] = ACTIONS(881), + [anon_sym_extern] = ACTIONS(881), + [anon_sym_module] = ACTIONS(881), + [anon_sym_use] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_error] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_break] = ACTIONS(881), + [anon_sym_continue] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [anon_sym_loop] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_try] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_source] = ACTIONS(881), + [anon_sym_source_DASHenv] = ACTIONS(881), + [anon_sym_register] = ACTIONS(881), + [anon_sym_hide] = ACTIONS(881), + [anon_sym_hide_DASHenv] = ACTIONS(881), + [anon_sym_overlay] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_where] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_mod] = ACTIONS(881), + [anon_sym_SLASH_SLASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_bit_DASHshl] = ACTIONS(881), + [anon_sym_bit_DASHshr] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_not_DASHin] = ACTIONS(881), + [anon_sym_starts_DASHwith] = ACTIONS(881), + [anon_sym_ends_DASHwith] = ACTIONS(881), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(881), + [anon_sym_bit_DASHxor] = ACTIONS(881), + [anon_sym_bit_DASHor] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_not] = ACTIONS(881), + [anon_sym_DOT_DOT_LT] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [sym_val_nothing] = ACTIONS(881), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [aux_sym_val_number_token1] = ACTIONS(881), + [aux_sym_val_number_token2] = ACTIONS(881), + [aux_sym_val_number_token3] = ACTIONS(881), + [aux_sym_val_number_token4] = ACTIONS(881), + [aux_sym_val_number_token5] = ACTIONS(881), + [anon_sym_inf] = ACTIONS(881), + [anon_sym_DASHinf] = ACTIONS(881), + [anon_sym_NaN] = ACTIONS(881), + [anon_sym_0b] = ACTIONS(881), + [anon_sym_0o] = ACTIONS(881), + [anon_sym_0x] = ACTIONS(881), + [sym_val_date] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [sym__str_single_quotes] = ACTIONS(881), + [sym__str_back_ticks] = ACTIONS(881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(3), + }, + [177] = { + [sym_comment] = STATE(177), + [anon_sym_export] = ACTIONS(885), + [anon_sym_alias] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_let_DASHenv] = ACTIONS(885), + [anon_sym_mut] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [sym_cmd_identifier] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_def] = ACTIONS(885), + [anon_sym_def_DASHenv] = ACTIONS(885), + [anon_sym_export_DASHenv] = ACTIONS(885), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_module] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_error] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_try] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_source] = ACTIONS(885), + [anon_sym_source_DASHenv] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_hide] = ACTIONS(885), + [anon_sym_hide_DASHenv] = ACTIONS(885), + [anon_sym_overlay] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_bit_DASHshl] = ACTIONS(885), + [anon_sym_bit_DASHshr] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_not_DASHin] = ACTIONS(885), + [anon_sym_starts_DASHwith] = ACTIONS(885), + [anon_sym_ends_DASHwith] = ACTIONS(885), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_bit_DASHand] = ACTIONS(885), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_not] = ACTIONS(885), + [anon_sym_DOT_DOT_LT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [sym_val_nothing] = ACTIONS(885), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [aux_sym_val_number_token1] = ACTIONS(885), + [aux_sym_val_number_token2] = ACTIONS(885), + [aux_sym_val_number_token3] = ACTIONS(885), + [aux_sym_val_number_token4] = ACTIONS(885), + [aux_sym_val_number_token5] = ACTIONS(885), + [anon_sym_inf] = ACTIONS(885), + [anon_sym_DASHinf] = ACTIONS(885), + [anon_sym_NaN] = ACTIONS(885), + [anon_sym_0b] = ACTIONS(885), + [anon_sym_0o] = ACTIONS(885), + [anon_sym_0x] = ACTIONS(885), + [sym_val_date] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [sym__str_single_quotes] = ACTIONS(885), + [sym__str_back_ticks] = ACTIONS(885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(3), + }, + [178] = { + [sym_comment] = STATE(178), + [anon_sym_export] = ACTIONS(889), + [anon_sym_alias] = ACTIONS(889), + [anon_sym_let] = ACTIONS(889), + [anon_sym_let_DASHenv] = ACTIONS(889), + [anon_sym_mut] = ACTIONS(889), + [anon_sym_const] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [sym_cmd_identifier] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_def] = ACTIONS(889), + [anon_sym_def_DASHenv] = ACTIONS(889), + [anon_sym_export_DASHenv] = ACTIONS(889), + [anon_sym_extern] = ACTIONS(889), + [anon_sym_module] = ACTIONS(889), + [anon_sym_use] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_error] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_break] = ACTIONS(889), + [anon_sym_continue] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [anon_sym_loop] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_try] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_source] = ACTIONS(889), + [anon_sym_source_DASHenv] = ACTIONS(889), + [anon_sym_register] = ACTIONS(889), + [anon_sym_hide] = ACTIONS(889), + [anon_sym_hide_DASHenv] = ACTIONS(889), + [anon_sym_overlay] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_where] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_SLASH_SLASH] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_bit_DASHshl] = ACTIONS(889), + [anon_sym_bit_DASHshr] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT2] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_not_DASHin] = ACTIONS(889), + [anon_sym_starts_DASHwith] = ACTIONS(889), + [anon_sym_ends_DASHwith] = ACTIONS(889), + [anon_sym_EQ_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_bit_DASHand] = ACTIONS(889), + [anon_sym_bit_DASHxor] = ACTIONS(889), + [anon_sym_bit_DASHor] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_not] = ACTIONS(889), + [anon_sym_DOT_DOT_LT] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [sym_val_nothing] = ACTIONS(889), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), + [aux_sym_val_number_token1] = ACTIONS(889), + [aux_sym_val_number_token2] = ACTIONS(889), + [aux_sym_val_number_token3] = ACTIONS(889), + [aux_sym_val_number_token4] = ACTIONS(889), + [aux_sym_val_number_token5] = ACTIONS(889), + [anon_sym_inf] = ACTIONS(889), + [anon_sym_DASHinf] = ACTIONS(889), + [anon_sym_NaN] = ACTIONS(889), + [anon_sym_0b] = ACTIONS(889), + [anon_sym_0o] = ACTIONS(889), + [anon_sym_0x] = ACTIONS(889), + [sym_val_date] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym__str_single_quotes] = ACTIONS(889), + [sym__str_back_ticks] = ACTIONS(889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(3), + }, + [179] = { + [sym_comment] = STATE(179), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -60450,104 +61679,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [168] = { - [sym_comment] = STATE(168), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [180] = { + [sym_comment] = STATE(180), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_def_DASHenv] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [sym_val_nothing] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym_val_number_token1] = ACTIONS(893), + [aux_sym_val_number_token2] = ACTIONS(893), + [aux_sym_val_number_token3] = ACTIONS(893), + [aux_sym_val_number_token4] = ACTIONS(893), + [aux_sym_val_number_token5] = ACTIONS(893), + [anon_sym_inf] = ACTIONS(893), + [anon_sym_DASHinf] = ACTIONS(893), + [anon_sym_NaN] = ACTIONS(893), + [anon_sym_0b] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(3), }, - [169] = { - [sym_comment] = STATE(169), + [181] = { + [sym_comment] = STATE(181), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [182] = { + [sym_comment] = STATE(182), + [anon_sym_export] = ACTIONS(897), + [anon_sym_alias] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_let_DASHenv] = ACTIONS(897), + [anon_sym_mut] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [sym_cmd_identifier] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(899), + [anon_sym_def] = ACTIONS(897), + [anon_sym_def_DASHenv] = ACTIONS(897), + [anon_sym_export_DASHenv] = ACTIONS(897), + [anon_sym_extern] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_error] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_loop] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_source] = ACTIONS(897), + [anon_sym_source_DASHenv] = ACTIONS(897), + [anon_sym_register] = ACTIONS(897), + [anon_sym_hide] = ACTIONS(897), + [anon_sym_hide_DASHenv] = ACTIONS(897), + [anon_sym_overlay] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_where] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_bit_DASHshl] = ACTIONS(897), + [anon_sym_bit_DASHshr] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT2] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_not_DASHin] = ACTIONS(897), + [anon_sym_starts_DASHwith] = ACTIONS(897), + [anon_sym_ends_DASHwith] = ACTIONS(897), + [anon_sym_EQ_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(897), + [anon_sym_bit_DASHand] = ACTIONS(897), + [anon_sym_bit_DASHxor] = ACTIONS(897), + [anon_sym_bit_DASHor] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_not] = ACTIONS(897), + [anon_sym_DOT_DOT_LT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [sym_val_nothing] = ACTIONS(897), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [aux_sym_val_number_token1] = ACTIONS(897), + [aux_sym_val_number_token2] = ACTIONS(897), + [aux_sym_val_number_token3] = ACTIONS(897), + [aux_sym_val_number_token4] = ACTIONS(897), + [aux_sym_val_number_token5] = ACTIONS(897), + [anon_sym_inf] = ACTIONS(897), + [anon_sym_DASHinf] = ACTIONS(897), + [anon_sym_NaN] = ACTIONS(897), + [anon_sym_0b] = ACTIONS(897), + [anon_sym_0o] = ACTIONS(897), + [anon_sym_0x] = ACTIONS(897), + [sym_val_date] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__str_single_quotes] = ACTIONS(897), + [sym__str_back_ticks] = ACTIONS(897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(3), + }, + [183] = { + [sym_comment] = STATE(183), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [184] = { + [sym_comment] = STATE(184), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -60642,104 +62159,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [170] = { - [sym_comment] = STATE(170), - [anon_sym_export] = ACTIONS(865), - [anon_sym_alias] = ACTIONS(865), - [anon_sym_let] = ACTIONS(865), - [anon_sym_let_DASHenv] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [sym_cmd_identifier] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_def] = ACTIONS(865), - [anon_sym_def_DASHenv] = ACTIONS(865), - [anon_sym_export_DASHenv] = ACTIONS(865), - [anon_sym_extern] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_use] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_error] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_in] = ACTIONS(865), - [anon_sym_loop] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_match] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_source] = ACTIONS(865), - [anon_sym_source_DASHenv] = ACTIONS(865), - [anon_sym_register] = ACTIONS(865), - [anon_sym_hide] = ACTIONS(865), - [anon_sym_hide_DASHenv] = ACTIONS(865), - [anon_sym_overlay] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_where] = ACTIONS(865), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_not] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_CARET] = ACTIONS(865), + [185] = { + [sym_comment] = STATE(185), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_def_DASHenv] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(107), + [anon_sym_DOT_DOT] = ACTIONS(107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(107), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [171] = { - [sym_comment] = STATE(171), + [186] = { + [sym_comment] = STATE(186), + [anon_sym_export] = ACTIONS(905), + [anon_sym_alias] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_let_DASHenv] = ACTIONS(905), + [anon_sym_mut] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(905), + [sym_cmd_identifier] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_def] = ACTIONS(905), + [anon_sym_def_DASHenv] = ACTIONS(905), + [anon_sym_export_DASHenv] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_error] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_source] = ACTIONS(905), + [anon_sym_source_DASHenv] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_hide] = ACTIONS(905), + [anon_sym_hide_DASHenv] = ACTIONS(905), + [anon_sym_overlay] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_STAR_STAR] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_bit_DASHshl] = ACTIONS(905), + [anon_sym_bit_DASHshr] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT2] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_not_DASHin] = ACTIONS(905), + [anon_sym_starts_DASHwith] = ACTIONS(905), + [anon_sym_ends_DASHwith] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [anon_sym_BANG_TILDE] = ACTIONS(905), + [anon_sym_bit_DASHand] = ACTIONS(905), + [anon_sym_bit_DASHxor] = ACTIONS(905), + [anon_sym_bit_DASHor] = ACTIONS(905), + [anon_sym_and] = ACTIONS(905), + [anon_sym_xor] = ACTIONS(905), + [anon_sym_or] = ACTIONS(905), + [anon_sym_not] = ACTIONS(905), + [anon_sym_DOT_DOT_LT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [sym_val_nothing] = ACTIONS(905), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [aux_sym_val_number_token1] = ACTIONS(905), + [aux_sym_val_number_token2] = ACTIONS(905), + [aux_sym_val_number_token3] = ACTIONS(905), + [aux_sym_val_number_token4] = ACTIONS(905), + [aux_sym_val_number_token5] = ACTIONS(905), + [anon_sym_inf] = ACTIONS(905), + [anon_sym_DASHinf] = ACTIONS(905), + [anon_sym_NaN] = ACTIONS(905), + [anon_sym_0b] = ACTIONS(905), + [anon_sym_0o] = ACTIONS(905), + [anon_sym_0x] = ACTIONS(905), + [sym_val_date] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__str_single_quotes] = ACTIONS(905), + [sym__str_back_ticks] = ACTIONS(905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(3), + }, + [187] = { + [sym_comment] = STATE(187), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_def_DASHenv] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [188] = { + [sym_comment] = STATE(188), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_def_DASHenv] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_DOT_DOT_LT] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [sym_val_nothing] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym_val_number_token1] = ACTIONS(909), + [aux_sym_val_number_token2] = ACTIONS(909), + [aux_sym_val_number_token3] = ACTIONS(909), + [aux_sym_val_number_token4] = ACTIONS(909), + [aux_sym_val_number_token5] = ACTIONS(909), + [anon_sym_inf] = ACTIONS(909), + [anon_sym_DASHinf] = ACTIONS(909), + [anon_sym_NaN] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(3), + }, + [189] = { + [sym_comment] = STATE(189), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(823), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [190] = { + [sym_comment] = STATE(190), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_def_DASHenv] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(3), + }, + [191] = { + [sym_comment] = STATE(191), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_def_DASHenv] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_RBRACE] = ACTIONS(917), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(823), + [anon_sym_and] = ACTIONS(825), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(921), + [anon_sym_not] = ACTIONS(917), + [anon_sym_DOT_DOT_LT] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [sym_val_nothing] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym_val_number_token1] = ACTIONS(917), + [aux_sym_val_number_token2] = ACTIONS(917), + [aux_sym_val_number_token3] = ACTIONS(917), + [aux_sym_val_number_token4] = ACTIONS(917), + [aux_sym_val_number_token5] = ACTIONS(917), + [anon_sym_inf] = ACTIONS(917), + [anon_sym_DASHinf] = ACTIONS(917), + [anon_sym_NaN] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), + [anon_sym_POUND] = ACTIONS(3), + }, + [192] = { + [sym_comment] = STATE(192), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -60834,200 +62927,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [172] = { - [sym_comment] = STATE(172), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [173] = { - [sym_comment] = STATE(173), - [anon_sym_export] = ACTIONS(869), - [anon_sym_alias] = ACTIONS(869), - [anon_sym_let] = ACTIONS(869), - [anon_sym_let_DASHenv] = ACTIONS(869), - [anon_sym_mut] = ACTIONS(869), - [anon_sym_const] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(869), - [sym_cmd_identifier] = ACTIONS(869), - [anon_sym_LF] = ACTIONS(871), - [anon_sym_def] = ACTIONS(869), - [anon_sym_def_DASHenv] = ACTIONS(869), - [anon_sym_export_DASHenv] = ACTIONS(869), - [anon_sym_extern] = ACTIONS(869), - [anon_sym_module] = ACTIONS(869), - [anon_sym_use] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_error] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_in] = ACTIONS(869), - [anon_sym_loop] = ACTIONS(869), - [anon_sym_while] = ACTIONS(869), - [anon_sym_do] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_match] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_try] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_source] = ACTIONS(869), - [anon_sym_source_DASHenv] = ACTIONS(869), - [anon_sym_register] = ACTIONS(869), - [anon_sym_hide] = ACTIONS(869), - [anon_sym_hide_DASHenv] = ACTIONS(869), - [anon_sym_overlay] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_where] = ACTIONS(869), - [anon_sym_STAR_STAR] = ACTIONS(869), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_mod] = ACTIONS(869), - [anon_sym_SLASH_SLASH] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(869), - [anon_sym_bit_DASHshr] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_not_DASHin] = ACTIONS(869), - [anon_sym_starts_DASHwith] = ACTIONS(869), - [anon_sym_ends_DASHwith] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [anon_sym_bit_DASHand] = ACTIONS(869), - [anon_sym_bit_DASHxor] = ACTIONS(869), - [anon_sym_bit_DASHor] = ACTIONS(869), - [anon_sym_and] = ACTIONS(869), - [anon_sym_xor] = ACTIONS(869), - [anon_sym_or] = ACTIONS(869), - [anon_sym_not] = ACTIONS(869), - [anon_sym_DOT_DOT_LT] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [sym_val_nothing] = ACTIONS(869), - [anon_sym_true] = ACTIONS(869), - [anon_sym_false] = ACTIONS(869), - [aux_sym_val_number_token1] = ACTIONS(869), - [aux_sym_val_number_token2] = ACTIONS(869), - [aux_sym_val_number_token3] = ACTIONS(869), - [aux_sym_val_number_token4] = ACTIONS(869), - [aux_sym_val_number_token5] = ACTIONS(869), - [anon_sym_inf] = ACTIONS(869), - [anon_sym_DASHinf] = ACTIONS(869), - [anon_sym_NaN] = ACTIONS(869), - [anon_sym_0b] = ACTIONS(869), - [anon_sym_0o] = ACTIONS(869), - [anon_sym_0x] = ACTIONS(869), - [sym_val_date] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym__str_single_quotes] = ACTIONS(869), - [sym__str_back_ticks] = ACTIONS(869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(869), + [193] = { + [sym_comment] = STATE(193), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(823), + [anon_sym_and] = ACTIONS(825), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [174] = { - [sym_comment] = STATE(174), + [194] = { + [sym_comment] = STATE(194), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -61122,200 +63119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [175] = { - [sym_comment] = STATE(175), - [anon_sym_export] = ACTIONS(873), - [anon_sym_alias] = ACTIONS(873), - [anon_sym_let] = ACTIONS(873), - [anon_sym_let_DASHenv] = ACTIONS(873), - [anon_sym_mut] = ACTIONS(873), - [anon_sym_const] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(873), - [sym_cmd_identifier] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(875), - [anon_sym_def] = ACTIONS(873), - [anon_sym_def_DASHenv] = ACTIONS(873), - [anon_sym_export_DASHenv] = ACTIONS(873), - [anon_sym_extern] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_use] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_error] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(873), - [anon_sym_for] = ACTIONS(873), - [anon_sym_in] = ACTIONS(873), - [anon_sym_loop] = ACTIONS(873), - [anon_sym_while] = ACTIONS(873), - [anon_sym_do] = ACTIONS(873), - [anon_sym_if] = ACTIONS(873), - [anon_sym_match] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_try] = ACTIONS(873), - [anon_sym_return] = ACTIONS(873), - [anon_sym_source] = ACTIONS(873), - [anon_sym_source_DASHenv] = ACTIONS(873), - [anon_sym_register] = ACTIONS(873), - [anon_sym_hide] = ACTIONS(873), - [anon_sym_hide_DASHenv] = ACTIONS(873), - [anon_sym_overlay] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(873), - [anon_sym_STAR_STAR] = ACTIONS(873), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_bit_DASHshl] = ACTIONS(873), - [anon_sym_bit_DASHshr] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_not_DASHin] = ACTIONS(873), - [anon_sym_starts_DASHwith] = ACTIONS(873), - [anon_sym_ends_DASHwith] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [anon_sym_bit_DASHand] = ACTIONS(873), - [anon_sym_bit_DASHxor] = ACTIONS(873), - [anon_sym_bit_DASHor] = ACTIONS(873), - [anon_sym_and] = ACTIONS(873), - [anon_sym_xor] = ACTIONS(873), - [anon_sym_or] = ACTIONS(873), - [anon_sym_not] = ACTIONS(873), - [anon_sym_DOT_DOT_LT] = ACTIONS(873), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [sym_val_nothing] = ACTIONS(873), - [anon_sym_true] = ACTIONS(873), - [anon_sym_false] = ACTIONS(873), - [aux_sym_val_number_token1] = ACTIONS(873), - [aux_sym_val_number_token2] = ACTIONS(873), - [aux_sym_val_number_token3] = ACTIONS(873), - [aux_sym_val_number_token4] = ACTIONS(873), - [aux_sym_val_number_token5] = ACTIONS(873), - [anon_sym_inf] = ACTIONS(873), - [anon_sym_DASHinf] = ACTIONS(873), - [anon_sym_NaN] = ACTIONS(873), - [anon_sym_0b] = ACTIONS(873), - [anon_sym_0o] = ACTIONS(873), - [anon_sym_0x] = ACTIONS(873), - [sym_val_date] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym__str_single_quotes] = ACTIONS(873), - [sym__str_back_ticks] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), - [anon_sym_CARET] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(3), - }, - [176] = { - [sym_comment] = STATE(176), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [177] = { - [sym_comment] = STATE(177), + [195] = { + [sym_comment] = STATE(195), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -61410,104 +63215,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [178] = { - [sym_comment] = STATE(178), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), + [196] = { + [sym_comment] = STATE(196), + [ts_builtin_sym_end] = ACTIONS(799), + [anon_sym_export] = ACTIONS(797), + [anon_sym_alias] = ACTIONS(797), + [anon_sym_let] = ACTIONS(797), + [anon_sym_let_DASHenv] = ACTIONS(797), + [anon_sym_mut] = ACTIONS(797), + [anon_sym_const] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [sym_cmd_identifier] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_def] = ACTIONS(797), + [anon_sym_def_DASHenv] = ACTIONS(797), + [anon_sym_export_DASHenv] = ACTIONS(797), + [anon_sym_extern] = ACTIONS(797), + [anon_sym_module] = ACTIONS(797), + [anon_sym_use] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_error] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_break] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(797), + [anon_sym_for] = ACTIONS(797), + [anon_sym_in] = ACTIONS(797), + [anon_sym_loop] = ACTIONS(797), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(797), + [anon_sym_if] = ACTIONS(797), + [anon_sym_match] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_try] = ACTIONS(797), + [anon_sym_return] = ACTIONS(797), + [anon_sym_source] = ACTIONS(797), + [anon_sym_source_DASHenv] = ACTIONS(797), + [anon_sym_register] = ACTIONS(797), + [anon_sym_hide] = ACTIONS(797), + [anon_sym_hide_DASHenv] = ACTIONS(797), + [anon_sym_overlay] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_where] = ACTIONS(797), [anon_sym_STAR_STAR] = ACTIONS(797), [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_mod] = ACTIONS(797), + [anon_sym_SLASH_SLASH] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_bit_DASHshl] = ACTIONS(797), + [anon_sym_bit_DASHshr] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_LT2] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_not_DASHin] = ACTIONS(797), + [anon_sym_starts_DASHwith] = ACTIONS(797), + [anon_sym_ends_DASHwith] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [anon_sym_BANG_TILDE] = ACTIONS(797), + [anon_sym_bit_DASHand] = ACTIONS(797), + [anon_sym_bit_DASHxor] = ACTIONS(797), + [anon_sym_bit_DASHor] = ACTIONS(797), + [anon_sym_and] = ACTIONS(797), + [anon_sym_xor] = ACTIONS(797), + [anon_sym_or] = ACTIONS(797), + [anon_sym_not] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), [anon_sym_POUND] = ACTIONS(3), }, - [179] = { - [sym_comment] = STATE(179), + [197] = { + [sym_comment] = STATE(197), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [198] = { + [sym_comment] = STATE(198), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_DASH] = ACTIONS(807), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(809), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(811), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(813), + [anon_sym_PLUS_PLUS] = ACTIONS(813), + [anon_sym_SLASH] = ACTIONS(811), + [anon_sym_mod] = ACTIONS(811), + [anon_sym_SLASH_SLASH] = ACTIONS(811), + [anon_sym_PLUS] = ACTIONS(807), + [anon_sym_bit_DASHshl] = ACTIONS(815), + [anon_sym_bit_DASHshr] = ACTIONS(815), + [anon_sym_EQ_EQ] = ACTIONS(805), + [anon_sym_BANG_EQ] = ACTIONS(805), + [anon_sym_LT2] = ACTIONS(805), + [anon_sym_LT_EQ] = ACTIONS(805), + [anon_sym_GT_EQ] = ACTIONS(805), + [anon_sym_not_DASHin] = ACTIONS(809), + [anon_sym_starts_DASHwith] = ACTIONS(809), + [anon_sym_ends_DASHwith] = ACTIONS(809), + [anon_sym_EQ_TILDE] = ACTIONS(817), + [anon_sym_BANG_TILDE] = ACTIONS(817), + [anon_sym_bit_DASHand] = ACTIONS(819), + [anon_sym_bit_DASHxor] = ACTIONS(821), + [anon_sym_bit_DASHor] = ACTIONS(823), + [anon_sym_and] = ACTIONS(825), + [anon_sym_xor] = ACTIONS(827), + [anon_sym_or] = ACTIONS(921), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [199] = { + [sym_comment] = STATE(199), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -61602,104 +63599,774 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [180] = { - [sym_comment] = STATE(180), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [200] = { + [sym_comment] = STATE(200), + [anon_sym_export] = ACTIONS(923), + [anon_sym_alias] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_let_DASHenv] = ACTIONS(923), + [anon_sym_mut] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [sym_cmd_identifier] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(925), + [anon_sym_def] = ACTIONS(923), + [anon_sym_def_DASHenv] = ACTIONS(923), + [anon_sym_export_DASHenv] = ACTIONS(923), + [anon_sym_extern] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_error] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_source] = ACTIONS(923), + [anon_sym_source_DASHenv] = ACTIONS(923), + [anon_sym_register] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_hide_DASHenv] = ACTIONS(923), + [anon_sym_overlay] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_bit_DASHshl] = ACTIONS(923), + [anon_sym_bit_DASHshr] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_LT2] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_not_DASHin] = ACTIONS(923), + [anon_sym_starts_DASHwith] = ACTIONS(923), + [anon_sym_ends_DASHwith] = ACTIONS(923), + [anon_sym_EQ_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_bit_DASHand] = ACTIONS(923), + [anon_sym_bit_DASHxor] = ACTIONS(923), + [anon_sym_bit_DASHor] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_not] = ACTIONS(923), + [anon_sym_DOT_DOT_LT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [sym_val_nothing] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [aux_sym_val_number_token1] = ACTIONS(923), + [aux_sym_val_number_token2] = ACTIONS(923), + [aux_sym_val_number_token3] = ACTIONS(923), + [aux_sym_val_number_token4] = ACTIONS(923), + [aux_sym_val_number_token5] = ACTIONS(923), + [anon_sym_inf] = ACTIONS(923), + [anon_sym_DASHinf] = ACTIONS(923), + [anon_sym_NaN] = ACTIONS(923), + [anon_sym_0b] = ACTIONS(923), + [anon_sym_0o] = ACTIONS(923), + [anon_sym_0x] = ACTIONS(923), + [sym_val_date] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym__str_single_quotes] = ACTIONS(923), + [sym__str_back_ticks] = ACTIONS(923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(3), }, - [181] = { - [sym_comment] = STATE(181), + [201] = { + [sym_comment] = STATE(201), + [anon_sym_export] = ACTIONS(927), + [anon_sym_alias] = ACTIONS(927), + [anon_sym_let] = ACTIONS(927), + [anon_sym_let_DASHenv] = ACTIONS(927), + [anon_sym_mut] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [sym_cmd_identifier] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(929), + [anon_sym_def] = ACTIONS(927), + [anon_sym_def_DASHenv] = ACTIONS(927), + [anon_sym_export_DASHenv] = ACTIONS(927), + [anon_sym_extern] = ACTIONS(927), + [anon_sym_module] = ACTIONS(927), + [anon_sym_use] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_error] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [anon_sym_loop] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_try] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_source] = ACTIONS(927), + [anon_sym_source_DASHenv] = ACTIONS(927), + [anon_sym_register] = ACTIONS(927), + [anon_sym_hide] = ACTIONS(927), + [anon_sym_hide_DASHenv] = ACTIONS(927), + [anon_sym_overlay] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_where] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_bit_DASHshl] = ACTIONS(927), + [anon_sym_bit_DASHshr] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_not_DASHin] = ACTIONS(927), + [anon_sym_starts_DASHwith] = ACTIONS(927), + [anon_sym_ends_DASHwith] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_bit_DASHand] = ACTIONS(927), + [anon_sym_bit_DASHxor] = ACTIONS(927), + [anon_sym_bit_DASHor] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_not] = ACTIONS(927), + [anon_sym_DOT_DOT_LT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [sym_val_nothing] = ACTIONS(927), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [aux_sym_val_number_token1] = ACTIONS(927), + [aux_sym_val_number_token2] = ACTIONS(927), + [aux_sym_val_number_token3] = ACTIONS(927), + [aux_sym_val_number_token4] = ACTIONS(927), + [aux_sym_val_number_token5] = ACTIONS(927), + [anon_sym_inf] = ACTIONS(927), + [anon_sym_DASHinf] = ACTIONS(927), + [anon_sym_NaN] = ACTIONS(927), + [anon_sym_0b] = ACTIONS(927), + [anon_sym_0o] = ACTIONS(927), + [anon_sym_0x] = ACTIONS(927), + [sym_val_date] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(3), + }, + [202] = { + [sym_comment] = STATE(202), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [sym_cmd_identifier] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_def] = ACTIONS(931), + [anon_sym_def_DASHenv] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_register] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_where] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_mod] = ACTIONS(931), + [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_bit_DASHshl] = ACTIONS(931), + [anon_sym_bit_DASHshr] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_not_DASHin] = ACTIONS(931), + [anon_sym_starts_DASHwith] = ACTIONS(931), + [anon_sym_ends_DASHwith] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_bit_DASHand] = ACTIONS(931), + [anon_sym_bit_DASHxor] = ACTIONS(931), + [anon_sym_bit_DASHor] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_not] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [sym_val_nothing] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym_val_number_token1] = ACTIONS(931), + [aux_sym_val_number_token2] = ACTIONS(931), + [aux_sym_val_number_token3] = ACTIONS(931), + [aux_sym_val_number_token4] = ACTIONS(931), + [aux_sym_val_number_token5] = ACTIONS(931), + [anon_sym_inf] = ACTIONS(931), + [anon_sym_DASHinf] = ACTIONS(931), + [anon_sym_NaN] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(931), + [anon_sym_0x] = ACTIONS(931), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(3), + }, + [203] = { + [sym_comment] = STATE(203), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [sym_cmd_identifier] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_def_DASHenv] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_bit_DASHshl] = ACTIONS(935), + [anon_sym_bit_DASHshr] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(935), + [anon_sym_starts_DASHwith] = ACTIONS(935), + [anon_sym_ends_DASHwith] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(935), + [anon_sym_bit_DASHxor] = ACTIONS(935), + [anon_sym_bit_DASHor] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_not] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [sym_val_nothing] = ACTIONS(935), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [aux_sym_val_number_token1] = ACTIONS(935), + [aux_sym_val_number_token2] = ACTIONS(935), + [aux_sym_val_number_token3] = ACTIONS(935), + [aux_sym_val_number_token4] = ACTIONS(935), + [aux_sym_val_number_token5] = ACTIONS(935), + [anon_sym_inf] = ACTIONS(935), + [anon_sym_DASHinf] = ACTIONS(935), + [anon_sym_NaN] = ACTIONS(935), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(3), + }, + [204] = { + [sym_comment] = STATE(204), + [anon_sym_export] = ACTIONS(939), + [anon_sym_alias] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_let_DASHenv] = ACTIONS(939), + [anon_sym_mut] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [sym_cmd_identifier] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_def] = ACTIONS(939), + [anon_sym_def_DASHenv] = ACTIONS(939), + [anon_sym_export_DASHenv] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_error] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_source] = ACTIONS(939), + [anon_sym_source_DASHenv] = ACTIONS(939), + [anon_sym_register] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_hide_DASHenv] = ACTIONS(939), + [anon_sym_overlay] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_bit_DASHshl] = ACTIONS(939), + [anon_sym_bit_DASHshr] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_LT2] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_not_DASHin] = ACTIONS(939), + [anon_sym_starts_DASHwith] = ACTIONS(939), + [anon_sym_ends_DASHwith] = ACTIONS(939), + [anon_sym_EQ_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_bit_DASHand] = ACTIONS(939), + [anon_sym_bit_DASHxor] = ACTIONS(939), + [anon_sym_bit_DASHor] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_not] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(3), + }, + [205] = { + [sym_comment] = STATE(205), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(935), + [sym_cmd_identifier] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_def_DASHenv] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_bit_DASHshl] = ACTIONS(935), + [anon_sym_bit_DASHshr] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(935), + [anon_sym_starts_DASHwith] = ACTIONS(935), + [anon_sym_ends_DASHwith] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(935), + [anon_sym_bit_DASHxor] = ACTIONS(935), + [anon_sym_bit_DASHor] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_not] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [sym_val_nothing] = ACTIONS(935), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [aux_sym_val_number_token1] = ACTIONS(935), + [aux_sym_val_number_token2] = ACTIONS(935), + [aux_sym_val_number_token3] = ACTIONS(935), + [aux_sym_val_number_token4] = ACTIONS(935), + [aux_sym_val_number_token5] = ACTIONS(935), + [anon_sym_inf] = ACTIONS(935), + [anon_sym_DASHinf] = ACTIONS(935), + [anon_sym_NaN] = ACTIONS(935), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(3), + }, + [206] = { + [sym_comment] = STATE(206), + [ts_builtin_sym_end] = ACTIONS(899), + [anon_sym_export] = ACTIONS(897), + [anon_sym_alias] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_let_DASHenv] = ACTIONS(897), + [anon_sym_mut] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(897), + [sym_cmd_identifier] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(899), + [anon_sym_def] = ACTIONS(897), + [anon_sym_def_DASHenv] = ACTIONS(897), + [anon_sym_export_DASHenv] = ACTIONS(897), + [anon_sym_extern] = ACTIONS(897), + [anon_sym_module] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_error] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_loop] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [anon_sym_do] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_try] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_source] = ACTIONS(897), + [anon_sym_source_DASHenv] = ACTIONS(897), + [anon_sym_register] = ACTIONS(897), + [anon_sym_hide] = ACTIONS(897), + [anon_sym_hide_DASHenv] = ACTIONS(897), + [anon_sym_overlay] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_where] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_bit_DASHshl] = ACTIONS(897), + [anon_sym_bit_DASHshr] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT2] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_not_DASHin] = ACTIONS(897), + [anon_sym_starts_DASHwith] = ACTIONS(897), + [anon_sym_ends_DASHwith] = ACTIONS(897), + [anon_sym_EQ_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(897), + [anon_sym_bit_DASHand] = ACTIONS(897), + [anon_sym_bit_DASHxor] = ACTIONS(897), + [anon_sym_bit_DASHor] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_not] = ACTIONS(897), + [anon_sym_DOT_DOT_LT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [sym_val_nothing] = ACTIONS(897), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [aux_sym_val_number_token1] = ACTIONS(897), + [aux_sym_val_number_token2] = ACTIONS(897), + [aux_sym_val_number_token3] = ACTIONS(897), + [aux_sym_val_number_token4] = ACTIONS(897), + [aux_sym_val_number_token5] = ACTIONS(897), + [anon_sym_inf] = ACTIONS(897), + [anon_sym_DASHinf] = ACTIONS(897), + [anon_sym_NaN] = ACTIONS(897), + [anon_sym_0b] = ACTIONS(897), + [anon_sym_0o] = ACTIONS(897), + [anon_sym_0x] = ACTIONS(897), + [sym_val_date] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__str_single_quotes] = ACTIONS(897), + [sym__str_back_ticks] = ACTIONS(897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(3), + }, + [207] = { + [sym_comment] = STATE(207), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_xor] = ACTIONS(965), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [208] = { + [sym_comment] = STATE(208), + [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -61717,7 +64384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(829), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_error] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -61732,7 +64398,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(829), [anon_sym_match] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_try] = ACTIONS(829), [anon_sym_return] = ACTIONS(829), [anon_sym_source] = ACTIONS(829), @@ -61794,104 +64459,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [182] = { - [sym_comment] = STATE(182), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(817), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [209] = { + [sym_comment] = STATE(209), + [ts_builtin_sym_end] = ACTIONS(859), + [anon_sym_export] = ACTIONS(857), + [anon_sym_alias] = ACTIONS(857), + [anon_sym_let] = ACTIONS(857), + [anon_sym_let_DASHenv] = ACTIONS(857), + [anon_sym_mut] = ACTIONS(857), + [anon_sym_const] = ACTIONS(857), + [anon_sym_SEMI] = ACTIONS(857), + [sym_cmd_identifier] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_def] = ACTIONS(857), + [anon_sym_def_DASHenv] = ACTIONS(857), + [anon_sym_export_DASHenv] = ACTIONS(857), + [anon_sym_extern] = ACTIONS(857), + [anon_sym_module] = ACTIONS(857), + [anon_sym_use] = ACTIONS(857), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_error] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_break] = ACTIONS(857), + [anon_sym_continue] = ACTIONS(857), + [anon_sym_for] = ACTIONS(857), + [anon_sym_in] = ACTIONS(857), + [anon_sym_loop] = ACTIONS(857), + [anon_sym_while] = ACTIONS(857), + [anon_sym_do] = ACTIONS(857), + [anon_sym_if] = ACTIONS(857), + [anon_sym_match] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_try] = ACTIONS(857), + [anon_sym_return] = ACTIONS(857), + [anon_sym_source] = ACTIONS(857), + [anon_sym_source_DASHenv] = ACTIONS(857), + [anon_sym_register] = ACTIONS(857), + [anon_sym_hide] = ACTIONS(857), + [anon_sym_hide_DASHenv] = ACTIONS(857), + [anon_sym_overlay] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_where] = ACTIONS(857), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_mod] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_bit_DASHshl] = ACTIONS(857), + [anon_sym_bit_DASHshr] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(857), + [anon_sym_starts_DASHwith] = ACTIONS(857), + [anon_sym_ends_DASHwith] = ACTIONS(857), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(857), + [anon_sym_bit_DASHxor] = ACTIONS(857), + [anon_sym_bit_DASHor] = ACTIONS(857), + [anon_sym_and] = ACTIONS(857), + [anon_sym_xor] = ACTIONS(857), + [anon_sym_or] = ACTIONS(857), + [anon_sym_not] = ACTIONS(857), + [anon_sym_DOT_DOT_LT] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [sym_val_nothing] = ACTIONS(857), + [anon_sym_true] = ACTIONS(857), + [anon_sym_false] = ACTIONS(857), + [aux_sym_val_number_token1] = ACTIONS(857), + [aux_sym_val_number_token2] = ACTIONS(857), + [aux_sym_val_number_token3] = ACTIONS(857), + [aux_sym_val_number_token4] = ACTIONS(857), + [aux_sym_val_number_token5] = ACTIONS(857), + [anon_sym_inf] = ACTIONS(857), + [anon_sym_DASHinf] = ACTIONS(857), + [anon_sym_NaN] = ACTIONS(857), + [anon_sym_0b] = ACTIONS(857), + [anon_sym_0o] = ACTIONS(857), + [anon_sym_0x] = ACTIONS(857), + [sym_val_date] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(857), + [anon_sym_CARET] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(3), }, - [183] = { - [sym_comment] = STATE(183), + [210] = { + [sym_comment] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(855), + [anon_sym_export] = ACTIONS(853), + [anon_sym_alias] = ACTIONS(853), + [anon_sym_let] = ACTIONS(853), + [anon_sym_let_DASHenv] = ACTIONS(853), + [anon_sym_mut] = ACTIONS(853), + [anon_sym_const] = ACTIONS(853), + [anon_sym_SEMI] = ACTIONS(853), + [sym_cmd_identifier] = ACTIONS(853), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_def] = ACTIONS(853), + [anon_sym_def_DASHenv] = ACTIONS(853), + [anon_sym_export_DASHenv] = ACTIONS(853), + [anon_sym_extern] = ACTIONS(853), + [anon_sym_module] = ACTIONS(853), + [anon_sym_use] = ACTIONS(853), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_error] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_break] = ACTIONS(853), + [anon_sym_continue] = ACTIONS(853), + [anon_sym_for] = ACTIONS(853), + [anon_sym_in] = ACTIONS(853), + [anon_sym_loop] = ACTIONS(853), + [anon_sym_while] = ACTIONS(853), + [anon_sym_do] = ACTIONS(853), + [anon_sym_if] = ACTIONS(853), + [anon_sym_match] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_try] = ACTIONS(853), + [anon_sym_return] = ACTIONS(853), + [anon_sym_source] = ACTIONS(853), + [anon_sym_source_DASHenv] = ACTIONS(853), + [anon_sym_register] = ACTIONS(853), + [anon_sym_hide] = ACTIONS(853), + [anon_sym_hide_DASHenv] = ACTIONS(853), + [anon_sym_overlay] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_where] = ACTIONS(853), + [anon_sym_STAR_STAR] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_mod] = ACTIONS(853), + [anon_sym_SLASH_SLASH] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_bit_DASHshl] = ACTIONS(853), + [anon_sym_bit_DASHshr] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT2] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_not_DASHin] = ACTIONS(853), + [anon_sym_starts_DASHwith] = ACTIONS(853), + [anon_sym_ends_DASHwith] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_bit_DASHand] = ACTIONS(853), + [anon_sym_bit_DASHxor] = ACTIONS(853), + [anon_sym_bit_DASHor] = ACTIONS(853), + [anon_sym_and] = ACTIONS(853), + [anon_sym_xor] = ACTIONS(853), + [anon_sym_or] = ACTIONS(853), + [anon_sym_not] = ACTIONS(853), + [anon_sym_DOT_DOT_LT] = ACTIONS(853), + [anon_sym_DOT_DOT] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [sym_val_nothing] = ACTIONS(853), + [anon_sym_true] = ACTIONS(853), + [anon_sym_false] = ACTIONS(853), + [aux_sym_val_number_token1] = ACTIONS(853), + [aux_sym_val_number_token2] = ACTIONS(853), + [aux_sym_val_number_token3] = ACTIONS(853), + [aux_sym_val_number_token4] = ACTIONS(853), + [aux_sym_val_number_token5] = ACTIONS(853), + [anon_sym_inf] = ACTIONS(853), + [anon_sym_DASHinf] = ACTIONS(853), + [anon_sym_NaN] = ACTIONS(853), + [anon_sym_0b] = ACTIONS(853), + [anon_sym_0o] = ACTIONS(853), + [anon_sym_0x] = ACTIONS(853), + [sym_val_date] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [sym__str_single_quotes] = ACTIONS(853), + [sym__str_back_ticks] = ACTIONS(853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), + [anon_sym_CARET] = ACTIONS(853), + [anon_sym_POUND] = ACTIONS(3), + }, + [211] = { + [sym_comment] = STATE(211), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_def_DASHenv] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(3), + }, + [212] = { + [sym_comment] = STATE(212), + [ts_builtin_sym_end] = ACTIONS(851), + [anon_sym_export] = ACTIONS(849), + [anon_sym_alias] = ACTIONS(849), + [anon_sym_let] = ACTIONS(849), + [anon_sym_let_DASHenv] = ACTIONS(849), + [anon_sym_mut] = ACTIONS(849), + [anon_sym_const] = ACTIONS(849), + [anon_sym_SEMI] = ACTIONS(849), + [sym_cmd_identifier] = ACTIONS(849), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_def] = ACTIONS(849), + [anon_sym_def_DASHenv] = ACTIONS(849), + [anon_sym_export_DASHenv] = ACTIONS(849), + [anon_sym_extern] = ACTIONS(849), + [anon_sym_module] = ACTIONS(849), + [anon_sym_use] = ACTIONS(849), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_error] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_break] = ACTIONS(849), + [anon_sym_continue] = ACTIONS(849), + [anon_sym_for] = ACTIONS(849), + [anon_sym_in] = ACTIONS(849), + [anon_sym_loop] = ACTIONS(849), + [anon_sym_while] = ACTIONS(849), + [anon_sym_do] = ACTIONS(849), + [anon_sym_if] = ACTIONS(849), + [anon_sym_match] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_try] = ACTIONS(849), + [anon_sym_return] = ACTIONS(849), + [anon_sym_source] = ACTIONS(849), + [anon_sym_source_DASHenv] = ACTIONS(849), + [anon_sym_register] = ACTIONS(849), + [anon_sym_hide] = ACTIONS(849), + [anon_sym_hide_DASHenv] = ACTIONS(849), + [anon_sym_overlay] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_where] = ACTIONS(849), + [anon_sym_STAR_STAR] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_mod] = ACTIONS(849), + [anon_sym_SLASH_SLASH] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_bit_DASHshl] = ACTIONS(849), + [anon_sym_bit_DASHshr] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT2] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_not_DASHin] = ACTIONS(849), + [anon_sym_starts_DASHwith] = ACTIONS(849), + [anon_sym_ends_DASHwith] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [anon_sym_bit_DASHand] = ACTIONS(849), + [anon_sym_bit_DASHxor] = ACTIONS(849), + [anon_sym_bit_DASHor] = ACTIONS(849), + [anon_sym_and] = ACTIONS(849), + [anon_sym_xor] = ACTIONS(849), + [anon_sym_or] = ACTIONS(849), + [anon_sym_not] = ACTIONS(849), + [anon_sym_DOT_DOT_LT] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(849), + [sym_val_nothing] = ACTIONS(849), + [anon_sym_true] = ACTIONS(849), + [anon_sym_false] = ACTIONS(849), + [aux_sym_val_number_token1] = ACTIONS(849), + [aux_sym_val_number_token2] = ACTIONS(849), + [aux_sym_val_number_token3] = ACTIONS(849), + [aux_sym_val_number_token4] = ACTIONS(849), + [aux_sym_val_number_token5] = ACTIONS(849), + [anon_sym_inf] = ACTIONS(849), + [anon_sym_DASHinf] = ACTIONS(849), + [anon_sym_NaN] = ACTIONS(849), + [anon_sym_0b] = ACTIONS(849), + [anon_sym_0o] = ACTIONS(849), + [anon_sym_0x] = ACTIONS(849), + [sym_val_date] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [sym__str_single_quotes] = ACTIONS(849), + [sym__str_back_ticks] = ACTIONS(849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), + [anon_sym_CARET] = ACTIONS(849), + [anon_sym_POUND] = ACTIONS(3), + }, + [213] = { + [sym_comment] = STATE(213), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_xor] = ACTIONS(965), + [anon_sym_or] = ACTIONS(967), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [214] = { + [sym_comment] = STATE(214), + [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -61909,7 +64954,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(829), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_error] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -61924,7 +64968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(829), [anon_sym_match] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_try] = ACTIONS(829), [anon_sym_return] = ACTIONS(829), [anon_sym_source] = ACTIONS(829), @@ -61986,104 +65029,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [184] = { - [sym_comment] = STATE(184), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [215] = { + [sym_comment] = STATE(215), + [ts_builtin_sym_end] = ACTIONS(919), + [anon_sym_export] = ACTIONS(917), + [anon_sym_alias] = ACTIONS(917), + [anon_sym_let] = ACTIONS(917), + [anon_sym_let_DASHenv] = ACTIONS(917), + [anon_sym_mut] = ACTIONS(917), + [anon_sym_const] = ACTIONS(917), + [anon_sym_SEMI] = ACTIONS(917), + [sym_cmd_identifier] = ACTIONS(917), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_def] = ACTIONS(917), + [anon_sym_def_DASHenv] = ACTIONS(917), + [anon_sym_export_DASHenv] = ACTIONS(917), + [anon_sym_extern] = ACTIONS(917), + [anon_sym_module] = ACTIONS(917), + [anon_sym_use] = ACTIONS(917), + [anon_sym_LBRACK] = ACTIONS(917), + [anon_sym_LPAREN] = ACTIONS(917), + [anon_sym_DOLLAR] = ACTIONS(917), + [anon_sym_error] = ACTIONS(917), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(917), + [anon_sym_continue] = ACTIONS(917), + [anon_sym_for] = ACTIONS(917), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(917), + [anon_sym_while] = ACTIONS(917), + [anon_sym_do] = ACTIONS(917), + [anon_sym_if] = ACTIONS(917), + [anon_sym_match] = ACTIONS(917), + [anon_sym_LBRACE] = ACTIONS(917), + [anon_sym_try] = ACTIONS(917), + [anon_sym_return] = ACTIONS(917), + [anon_sym_source] = ACTIONS(917), + [anon_sym_source_DASHenv] = ACTIONS(917), + [anon_sym_register] = ACTIONS(917), + [anon_sym_hide] = ACTIONS(917), + [anon_sym_hide_DASHenv] = ACTIONS(917), + [anon_sym_overlay] = ACTIONS(917), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(917), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_xor] = ACTIONS(965), + [anon_sym_or] = ACTIONS(967), + [anon_sym_not] = ACTIONS(917), + [anon_sym_DOT_DOT_LT] = ACTIONS(917), + [anon_sym_DOT_DOT] = ACTIONS(917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(917), + [sym_val_nothing] = ACTIONS(917), + [anon_sym_true] = ACTIONS(917), + [anon_sym_false] = ACTIONS(917), + [aux_sym_val_number_token1] = ACTIONS(917), + [aux_sym_val_number_token2] = ACTIONS(917), + [aux_sym_val_number_token3] = ACTIONS(917), + [aux_sym_val_number_token4] = ACTIONS(917), + [aux_sym_val_number_token5] = ACTIONS(917), + [anon_sym_inf] = ACTIONS(917), + [anon_sym_DASHinf] = ACTIONS(917), + [anon_sym_NaN] = ACTIONS(917), + [anon_sym_0b] = ACTIONS(917), + [anon_sym_0o] = ACTIONS(917), + [anon_sym_0x] = ACTIONS(917), + [sym_val_date] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(917), + [sym__str_single_quotes] = ACTIONS(917), + [sym__str_back_ticks] = ACTIONS(917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(917), + [anon_sym_CARET] = ACTIONS(917), [anon_sym_POUND] = ACTIONS(3), }, - [185] = { - [sym_comment] = STATE(185), + [216] = { + [sym_comment] = STATE(216), + [ts_builtin_sym_end] = ACTIONS(925), + [anon_sym_export] = ACTIONS(923), + [anon_sym_alias] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_let_DASHenv] = ACTIONS(923), + [anon_sym_mut] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [sym_cmd_identifier] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(925), + [anon_sym_def] = ACTIONS(923), + [anon_sym_def_DASHenv] = ACTIONS(923), + [anon_sym_export_DASHenv] = ACTIONS(923), + [anon_sym_extern] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_error] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_source] = ACTIONS(923), + [anon_sym_source_DASHenv] = ACTIONS(923), + [anon_sym_register] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_hide_DASHenv] = ACTIONS(923), + [anon_sym_overlay] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_bit_DASHshl] = ACTIONS(923), + [anon_sym_bit_DASHshr] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_LT2] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_not_DASHin] = ACTIONS(923), + [anon_sym_starts_DASHwith] = ACTIONS(923), + [anon_sym_ends_DASHwith] = ACTIONS(923), + [anon_sym_EQ_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_bit_DASHand] = ACTIONS(923), + [anon_sym_bit_DASHxor] = ACTIONS(923), + [anon_sym_bit_DASHor] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_not] = ACTIONS(923), + [anon_sym_DOT_DOT_LT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [sym_val_nothing] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [aux_sym_val_number_token1] = ACTIONS(923), + [aux_sym_val_number_token2] = ACTIONS(923), + [aux_sym_val_number_token3] = ACTIONS(923), + [aux_sym_val_number_token4] = ACTIONS(923), + [aux_sym_val_number_token5] = ACTIONS(923), + [anon_sym_inf] = ACTIONS(923), + [anon_sym_DASHinf] = ACTIONS(923), + [anon_sym_NaN] = ACTIONS(923), + [anon_sym_0b] = ACTIONS(923), + [anon_sym_0o] = ACTIONS(923), + [anon_sym_0x] = ACTIONS(923), + [sym_val_date] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym__str_single_quotes] = ACTIONS(923), + [sym__str_back_ticks] = ACTIONS(923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(3), + }, + [217] = { + [sym_comment] = STATE(217), + [ts_builtin_sym_end] = ACTIONS(883), + [anon_sym_export] = ACTIONS(881), + [anon_sym_alias] = ACTIONS(881), + [anon_sym_let] = ACTIONS(881), + [anon_sym_let_DASHenv] = ACTIONS(881), + [anon_sym_mut] = ACTIONS(881), + [anon_sym_const] = ACTIONS(881), + [anon_sym_SEMI] = ACTIONS(881), + [sym_cmd_identifier] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_def] = ACTIONS(881), + [anon_sym_def_DASHenv] = ACTIONS(881), + [anon_sym_export_DASHenv] = ACTIONS(881), + [anon_sym_extern] = ACTIONS(881), + [anon_sym_module] = ACTIONS(881), + [anon_sym_use] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_error] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_break] = ACTIONS(881), + [anon_sym_continue] = ACTIONS(881), + [anon_sym_for] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [anon_sym_loop] = ACTIONS(881), + [anon_sym_while] = ACTIONS(881), + [anon_sym_do] = ACTIONS(881), + [anon_sym_if] = ACTIONS(881), + [anon_sym_match] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_try] = ACTIONS(881), + [anon_sym_return] = ACTIONS(881), + [anon_sym_source] = ACTIONS(881), + [anon_sym_source_DASHenv] = ACTIONS(881), + [anon_sym_register] = ACTIONS(881), + [anon_sym_hide] = ACTIONS(881), + [anon_sym_hide_DASHenv] = ACTIONS(881), + [anon_sym_overlay] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_where] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_mod] = ACTIONS(881), + [anon_sym_SLASH_SLASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_bit_DASHshl] = ACTIONS(881), + [anon_sym_bit_DASHshr] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_not_DASHin] = ACTIONS(881), + [anon_sym_starts_DASHwith] = ACTIONS(881), + [anon_sym_ends_DASHwith] = ACTIONS(881), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(881), + [anon_sym_bit_DASHxor] = ACTIONS(881), + [anon_sym_bit_DASHor] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_not] = ACTIONS(881), + [anon_sym_DOT_DOT_LT] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [sym_val_nothing] = ACTIONS(881), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [aux_sym_val_number_token1] = ACTIONS(881), + [aux_sym_val_number_token2] = ACTIONS(881), + [aux_sym_val_number_token3] = ACTIONS(881), + [aux_sym_val_number_token4] = ACTIONS(881), + [aux_sym_val_number_token5] = ACTIONS(881), + [anon_sym_inf] = ACTIONS(881), + [anon_sym_DASHinf] = ACTIONS(881), + [anon_sym_NaN] = ACTIONS(881), + [anon_sym_0b] = ACTIONS(881), + [anon_sym_0o] = ACTIONS(881), + [anon_sym_0x] = ACTIONS(881), + [sym_val_date] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [sym__str_single_quotes] = ACTIONS(881), + [sym__str_back_ticks] = ACTIONS(881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(881), + [anon_sym_CARET] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(3), + }, + [218] = { + [sym_comment] = STATE(218), + [ts_builtin_sym_end] = ACTIONS(847), + [anon_sym_export] = ACTIONS(845), + [anon_sym_alias] = ACTIONS(845), + [anon_sym_let] = ACTIONS(845), + [anon_sym_let_DASHenv] = ACTIONS(845), + [anon_sym_mut] = ACTIONS(845), + [anon_sym_const] = ACTIONS(845), + [anon_sym_SEMI] = ACTIONS(845), + [sym_cmd_identifier] = ACTIONS(845), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_def] = ACTIONS(845), + [anon_sym_def_DASHenv] = ACTIONS(845), + [anon_sym_export_DASHenv] = ACTIONS(845), + [anon_sym_extern] = ACTIONS(845), + [anon_sym_module] = ACTIONS(845), + [anon_sym_use] = ACTIONS(845), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_error] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_break] = ACTIONS(845), + [anon_sym_continue] = ACTIONS(845), + [anon_sym_for] = ACTIONS(845), + [anon_sym_in] = ACTIONS(845), + [anon_sym_loop] = ACTIONS(845), + [anon_sym_while] = ACTIONS(845), + [anon_sym_do] = ACTIONS(845), + [anon_sym_if] = ACTIONS(845), + [anon_sym_match] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_try] = ACTIONS(845), + [anon_sym_return] = ACTIONS(845), + [anon_sym_source] = ACTIONS(845), + [anon_sym_source_DASHenv] = ACTIONS(845), + [anon_sym_register] = ACTIONS(845), + [anon_sym_hide] = ACTIONS(845), + [anon_sym_hide_DASHenv] = ACTIONS(845), + [anon_sym_overlay] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_where] = ACTIONS(845), + [anon_sym_STAR_STAR] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_mod] = ACTIONS(845), + [anon_sym_SLASH_SLASH] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_bit_DASHshl] = ACTIONS(845), + [anon_sym_bit_DASHshr] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_not_DASHin] = ACTIONS(845), + [anon_sym_starts_DASHwith] = ACTIONS(845), + [anon_sym_ends_DASHwith] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [anon_sym_bit_DASHand] = ACTIONS(845), + [anon_sym_bit_DASHxor] = ACTIONS(845), + [anon_sym_bit_DASHor] = ACTIONS(845), + [anon_sym_and] = ACTIONS(845), + [anon_sym_xor] = ACTIONS(845), + [anon_sym_or] = ACTIONS(845), + [anon_sym_not] = ACTIONS(845), + [anon_sym_DOT_DOT_LT] = ACTIONS(845), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(845), + [sym_val_nothing] = ACTIONS(845), + [anon_sym_true] = ACTIONS(845), + [anon_sym_false] = ACTIONS(845), + [aux_sym_val_number_token1] = ACTIONS(845), + [aux_sym_val_number_token2] = ACTIONS(845), + [aux_sym_val_number_token3] = ACTIONS(845), + [aux_sym_val_number_token4] = ACTIONS(845), + [aux_sym_val_number_token5] = ACTIONS(845), + [anon_sym_inf] = ACTIONS(845), + [anon_sym_DASHinf] = ACTIONS(845), + [anon_sym_NaN] = ACTIONS(845), + [anon_sym_0b] = ACTIONS(845), + [anon_sym_0o] = ACTIONS(845), + [anon_sym_0x] = ACTIONS(845), + [sym_val_date] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [sym__str_single_quotes] = ACTIONS(845), + [sym__str_back_ticks] = ACTIONS(845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(845), + [anon_sym_CARET] = ACTIONS(845), + [anon_sym_POUND] = ACTIONS(3), + }, + [219] = { + [sym_comment] = STATE(219), + [ts_builtin_sym_end] = ACTIONS(867), + [anon_sym_export] = ACTIONS(865), + [anon_sym_alias] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_let_DASHenv] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [sym_cmd_identifier] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_def] = ACTIONS(865), + [anon_sym_def_DASHenv] = ACTIONS(865), + [anon_sym_export_DASHenv] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(865), + [anon_sym_module] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_error] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_loop] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_source] = ACTIONS(865), + [anon_sym_source_DASHenv] = ACTIONS(865), + [anon_sym_register] = ACTIONS(865), + [anon_sym_hide] = ACTIONS(865), + [anon_sym_hide_DASHenv] = ACTIONS(865), + [anon_sym_overlay] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_where] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_not] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(3), + }, + [220] = { + [sym_comment] = STATE(220), + [ts_builtin_sym_end] = ACTIONS(843), + [anon_sym_export] = ACTIONS(841), + [anon_sym_alias] = ACTIONS(841), + [anon_sym_let] = ACTIONS(841), + [anon_sym_let_DASHenv] = ACTIONS(841), + [anon_sym_mut] = ACTIONS(841), + [anon_sym_const] = ACTIONS(841), + [anon_sym_SEMI] = ACTIONS(841), + [sym_cmd_identifier] = ACTIONS(841), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_def] = ACTIONS(841), + [anon_sym_def_DASHenv] = ACTIONS(841), + [anon_sym_export_DASHenv] = ACTIONS(841), + [anon_sym_extern] = ACTIONS(841), + [anon_sym_module] = ACTIONS(841), + [anon_sym_use] = ACTIONS(841), + [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_error] = ACTIONS(841), + [anon_sym_GT] = ACTIONS(841), + [anon_sym_DASH] = ACTIONS(841), + [anon_sym_break] = ACTIONS(841), + [anon_sym_continue] = ACTIONS(841), + [anon_sym_for] = ACTIONS(841), + [anon_sym_in] = ACTIONS(841), + [anon_sym_loop] = ACTIONS(841), + [anon_sym_while] = ACTIONS(841), + [anon_sym_do] = ACTIONS(841), + [anon_sym_if] = ACTIONS(841), + [anon_sym_match] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_try] = ACTIONS(841), + [anon_sym_return] = ACTIONS(841), + [anon_sym_source] = ACTIONS(841), + [anon_sym_source_DASHenv] = ACTIONS(841), + [anon_sym_register] = ACTIONS(841), + [anon_sym_hide] = ACTIONS(841), + [anon_sym_hide_DASHenv] = ACTIONS(841), + [anon_sym_overlay] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(841), + [anon_sym_where] = ACTIONS(841), + [anon_sym_STAR_STAR] = ACTIONS(841), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_SLASH] = ACTIONS(841), + [anon_sym_mod] = ACTIONS(841), + [anon_sym_SLASH_SLASH] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(841), + [anon_sym_bit_DASHshl] = ACTIONS(841), + [anon_sym_bit_DASHshr] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(841), + [anon_sym_LT2] = ACTIONS(841), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_not_DASHin] = ACTIONS(841), + [anon_sym_starts_DASHwith] = ACTIONS(841), + [anon_sym_ends_DASHwith] = ACTIONS(841), + [anon_sym_EQ_TILDE] = ACTIONS(841), + [anon_sym_BANG_TILDE] = ACTIONS(841), + [anon_sym_bit_DASHand] = ACTIONS(841), + [anon_sym_bit_DASHxor] = ACTIONS(841), + [anon_sym_bit_DASHor] = ACTIONS(841), + [anon_sym_and] = ACTIONS(841), + [anon_sym_xor] = ACTIONS(841), + [anon_sym_or] = ACTIONS(841), + [anon_sym_not] = ACTIONS(841), + [anon_sym_DOT_DOT_LT] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(841), + [sym_val_nothing] = ACTIONS(841), + [anon_sym_true] = ACTIONS(841), + [anon_sym_false] = ACTIONS(841), + [aux_sym_val_number_token1] = ACTIONS(841), + [aux_sym_val_number_token2] = ACTIONS(841), + [aux_sym_val_number_token3] = ACTIONS(841), + [aux_sym_val_number_token4] = ACTIONS(841), + [aux_sym_val_number_token5] = ACTIONS(841), + [anon_sym_inf] = ACTIONS(841), + [anon_sym_DASHinf] = ACTIONS(841), + [anon_sym_NaN] = ACTIONS(841), + [anon_sym_0b] = ACTIONS(841), + [anon_sym_0o] = ACTIONS(841), + [anon_sym_0x] = ACTIONS(841), + [sym_val_date] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(841), + [sym__str_single_quotes] = ACTIONS(841), + [sym__str_back_ticks] = ACTIONS(841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), + [anon_sym_CARET] = ACTIONS(841), + [anon_sym_POUND] = ACTIONS(3), + }, + [221] = { + [sym_comment] = STATE(221), + [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -62101,7 +65619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(829), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_error] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -62116,7 +65633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(829), [anon_sym_match] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_try] = ACTIONS(829), [anon_sym_return] = ACTIONS(829), [anon_sym_source] = ACTIONS(829), @@ -62178,104 +65694,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [186] = { - [sym_comment] = STATE(186), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(817), - [anon_sym_xor] = ACTIONS(819), - [anon_sym_or] = ACTIONS(877), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [222] = { + [sym_comment] = STATE(222), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(961), + [anon_sym_and] = ACTIONS(963), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [187] = { - [sym_comment] = STATE(187), + [223] = { + [sym_comment] = STATE(223), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [224] = { + [sym_comment] = STATE(224), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_def_DASHenv] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(117), + [anon_sym_DOT_DOT] = ACTIONS(117), + [anon_sym_DOT_DOT_EQ] = ACTIONS(117), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [225] = { + [sym_comment] = STATE(225), + [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), [anon_sym_let] = ACTIONS(829), @@ -62293,7 +65999,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(829), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_error] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -62308,7 +66013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(829), [anon_sym_match] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_try] = ACTIONS(829), [anon_sym_return] = ACTIONS(829), [anon_sym_source] = ACTIONS(829), @@ -62370,1544 +66074,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [188] = { - [sym_comment] = STATE(188), - [anon_sym_export] = ACTIONS(879), - [anon_sym_alias] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_let_DASHenv] = ACTIONS(879), - [anon_sym_mut] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [sym_cmd_identifier] = ACTIONS(879), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_def] = ACTIONS(879), - [anon_sym_def_DASHenv] = ACTIONS(879), - [anon_sym_export_DASHenv] = ACTIONS(879), - [anon_sym_extern] = ACTIONS(879), - [anon_sym_module] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_error] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_in] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_try] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_source] = ACTIONS(879), - [anon_sym_source_DASHenv] = ACTIONS(879), - [anon_sym_register] = ACTIONS(879), - [anon_sym_hide] = ACTIONS(879), - [anon_sym_hide_DASHenv] = ACTIONS(879), - [anon_sym_overlay] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_STAR_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_bit_DASHshl] = ACTIONS(879), - [anon_sym_bit_DASHshr] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_not_DASHin] = ACTIONS(879), - [anon_sym_starts_DASHwith] = ACTIONS(879), - [anon_sym_ends_DASHwith] = ACTIONS(879), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(879), - [anon_sym_bit_DASHxor] = ACTIONS(879), - [anon_sym_bit_DASHor] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_not] = ACTIONS(879), - [anon_sym_DOT_DOT_LT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(879), - [sym_val_nothing] = ACTIONS(879), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [aux_sym_val_number_token1] = ACTIONS(879), - [aux_sym_val_number_token2] = ACTIONS(879), - [aux_sym_val_number_token3] = ACTIONS(879), - [aux_sym_val_number_token4] = ACTIONS(879), - [aux_sym_val_number_token5] = ACTIONS(879), - [anon_sym_inf] = ACTIONS(879), - [anon_sym_DASHinf] = ACTIONS(879), - [anon_sym_NaN] = ACTIONS(879), - [anon_sym_0b] = ACTIONS(879), - [anon_sym_0o] = ACTIONS(879), - [anon_sym_0x] = ACTIONS(879), - [sym_val_date] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(879), - [sym__str_single_quotes] = ACTIONS(879), - [sym__str_back_ticks] = ACTIONS(879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3), - }, - [189] = { - [sym_comment] = STATE(189), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(883), - [sym_cmd_identifier] = ACTIONS(883), - [anon_sym_LF] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_def_DASHenv] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_error] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_try] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_STAR_STAR] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(883), - [anon_sym_bit_DASHshr] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(883), - [anon_sym_not_DASHin] = ACTIONS(883), - [anon_sym_starts_DASHwith] = ACTIONS(883), - [anon_sym_ends_DASHwith] = ACTIONS(883), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_BANG_TILDE] = ACTIONS(883), - [anon_sym_bit_DASHand] = ACTIONS(883), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(883), - [anon_sym_and] = ACTIONS(883), - [anon_sym_xor] = ACTIONS(883), - [anon_sym_or] = ACTIONS(883), - [anon_sym_not] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [sym_val_nothing] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [aux_sym_val_number_token1] = ACTIONS(883), - [aux_sym_val_number_token2] = ACTIONS(883), - [aux_sym_val_number_token3] = ACTIONS(883), - [aux_sym_val_number_token4] = ACTIONS(883), - [aux_sym_val_number_token5] = ACTIONS(883), - [anon_sym_inf] = ACTIONS(883), - [anon_sym_DASHinf] = ACTIONS(883), - [anon_sym_NaN] = ACTIONS(883), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(883), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), - }, - [190] = { - [sym_comment] = STATE(190), - [anon_sym_export] = ACTIONS(887), - [anon_sym_alias] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_let_DASHenv] = ACTIONS(887), - [anon_sym_mut] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(887), - [sym_cmd_identifier] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_def] = ACTIONS(887), - [anon_sym_def_DASHenv] = ACTIONS(887), - [anon_sym_export_DASHenv] = ACTIONS(887), - [anon_sym_extern] = ACTIONS(887), - [anon_sym_module] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_error] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_in] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_try] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_source] = ACTIONS(887), - [anon_sym_source_DASHenv] = ACTIONS(887), - [anon_sym_register] = ACTIONS(887), - [anon_sym_hide] = ACTIONS(887), - [anon_sym_hide_DASHenv] = ACTIONS(887), - [anon_sym_overlay] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_STAR_STAR] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_SLASH] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_bit_DASHshl] = ACTIONS(887), - [anon_sym_bit_DASHshr] = ACTIONS(887), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_LT2] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_not_DASHin] = ACTIONS(887), - [anon_sym_starts_DASHwith] = ACTIONS(887), - [anon_sym_ends_DASHwith] = ACTIONS(887), - [anon_sym_EQ_TILDE] = ACTIONS(887), - [anon_sym_BANG_TILDE] = ACTIONS(887), - [anon_sym_bit_DASHand] = ACTIONS(887), - [anon_sym_bit_DASHxor] = ACTIONS(887), - [anon_sym_bit_DASHor] = ACTIONS(887), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(887), - [anon_sym_or] = ACTIONS(887), - [anon_sym_not] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_CARET] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(3), - }, - [191] = { - [sym_comment] = STATE(191), - [anon_sym_export] = ACTIONS(891), - [anon_sym_alias] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_let_DASHenv] = ACTIONS(891), - [anon_sym_mut] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [sym_cmd_identifier] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(893), - [anon_sym_def] = ACTIONS(891), - [anon_sym_def_DASHenv] = ACTIONS(891), - [anon_sym_export_DASHenv] = ACTIONS(891), - [anon_sym_extern] = ACTIONS(891), - [anon_sym_module] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_source] = ACTIONS(891), - [anon_sym_source_DASHenv] = ACTIONS(891), - [anon_sym_register] = ACTIONS(891), - [anon_sym_hide] = ACTIONS(891), - [anon_sym_hide_DASHenv] = ACTIONS(891), - [anon_sym_overlay] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [sym_val_nothing] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [aux_sym_val_number_token1] = ACTIONS(891), - [aux_sym_val_number_token2] = ACTIONS(891), - [aux_sym_val_number_token3] = ACTIONS(891), - [aux_sym_val_number_token4] = ACTIONS(891), - [aux_sym_val_number_token5] = ACTIONS(891), - [anon_sym_inf] = ACTIONS(891), - [anon_sym_DASHinf] = ACTIONS(891), - [anon_sym_NaN] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(891), - [anon_sym_0o] = ACTIONS(891), - [anon_sym_0x] = ACTIONS(891), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_CARET] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), - }, - [192] = { - [sym_comment] = STATE(192), - [anon_sym_export] = ACTIONS(895), - [anon_sym_alias] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_let_DASHenv] = ACTIONS(895), - [anon_sym_mut] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [sym_cmd_identifier] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_def] = ACTIONS(895), - [anon_sym_def_DASHenv] = ACTIONS(895), - [anon_sym_export_DASHenv] = ACTIONS(895), - [anon_sym_extern] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_use] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_loop] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_source] = ACTIONS(895), - [anon_sym_source_DASHenv] = ACTIONS(895), - [anon_sym_register] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_hide_DASHenv] = ACTIONS(895), - [anon_sym_overlay] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_where] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), - }, - [193] = { - [sym_comment] = STATE(193), - [anon_sym_export] = ACTIONS(899), - [anon_sym_alias] = ACTIONS(899), - [anon_sym_let] = ACTIONS(899), - [anon_sym_let_DASHenv] = ACTIONS(899), - [anon_sym_mut] = ACTIONS(899), - [anon_sym_const] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(899), - [sym_cmd_identifier] = ACTIONS(899), - [anon_sym_LF] = ACTIONS(901), - [anon_sym_def] = ACTIONS(899), - [anon_sym_def_DASHenv] = ACTIONS(899), - [anon_sym_export_DASHenv] = ACTIONS(899), - [anon_sym_extern] = ACTIONS(899), - [anon_sym_module] = ACTIONS(899), - [anon_sym_use] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_error] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_break] = ACTIONS(899), - [anon_sym_continue] = ACTIONS(899), - [anon_sym_for] = ACTIONS(899), - [anon_sym_in] = ACTIONS(899), - [anon_sym_loop] = ACTIONS(899), - [anon_sym_while] = ACTIONS(899), - [anon_sym_do] = ACTIONS(899), - [anon_sym_if] = ACTIONS(899), - [anon_sym_match] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_try] = ACTIONS(899), - [anon_sym_return] = ACTIONS(899), - [anon_sym_source] = ACTIONS(899), - [anon_sym_source_DASHenv] = ACTIONS(899), - [anon_sym_register] = ACTIONS(899), - [anon_sym_hide] = ACTIONS(899), - [anon_sym_hide_DASHenv] = ACTIONS(899), - [anon_sym_overlay] = ACTIONS(899), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_where] = ACTIONS(899), - [anon_sym_STAR_STAR] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_mod] = ACTIONS(899), - [anon_sym_SLASH_SLASH] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_bit_DASHshl] = ACTIONS(899), - [anon_sym_bit_DASHshr] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_LT2] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_not_DASHin] = ACTIONS(899), - [anon_sym_starts_DASHwith] = ACTIONS(899), - [anon_sym_ends_DASHwith] = ACTIONS(899), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(899), - [anon_sym_bit_DASHand] = ACTIONS(899), - [anon_sym_bit_DASHxor] = ACTIONS(899), - [anon_sym_bit_DASHor] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_not] = ACTIONS(899), - [anon_sym_DOT_DOT_LT] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [sym_val_nothing] = ACTIONS(899), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [aux_sym_val_number_token1] = ACTIONS(899), - [aux_sym_val_number_token2] = ACTIONS(899), - [aux_sym_val_number_token3] = ACTIONS(899), - [aux_sym_val_number_token4] = ACTIONS(899), - [aux_sym_val_number_token5] = ACTIONS(899), - [anon_sym_inf] = ACTIONS(899), - [anon_sym_DASHinf] = ACTIONS(899), - [anon_sym_NaN] = ACTIONS(899), - [anon_sym_0b] = ACTIONS(899), - [anon_sym_0o] = ACTIONS(899), - [anon_sym_0x] = ACTIONS(899), - [sym_val_date] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(899), - [sym__str_single_quotes] = ACTIONS(899), - [sym__str_back_ticks] = ACTIONS(899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), - [anon_sym_CARET] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(3), - }, - [194] = { - [sym_comment] = STATE(194), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_def_DASHenv] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_DOT_DOT_LT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [sym_val_nothing] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym_val_number_token1] = ACTIONS(903), - [aux_sym_val_number_token2] = ACTIONS(903), - [aux_sym_val_number_token3] = ACTIONS(903), - [aux_sym_val_number_token4] = ACTIONS(903), - [aux_sym_val_number_token5] = ACTIONS(903), - [anon_sym_inf] = ACTIONS(903), - [anon_sym_DASHinf] = ACTIONS(903), - [anon_sym_NaN] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(3), - }, - [195] = { - [sym_comment] = STATE(195), - [anon_sym_export] = ACTIONS(907), - [anon_sym_alias] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_let_DASHenv] = ACTIONS(907), - [anon_sym_mut] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(907), - [sym_cmd_identifier] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_def] = ACTIONS(907), - [anon_sym_def_DASHenv] = ACTIONS(907), - [anon_sym_export_DASHenv] = ACTIONS(907), - [anon_sym_extern] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_error] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_in] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [anon_sym_do] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_try] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_source] = ACTIONS(907), - [anon_sym_source_DASHenv] = ACTIONS(907), - [anon_sym_register] = ACTIONS(907), - [anon_sym_hide] = ACTIONS(907), - [anon_sym_hide_DASHenv] = ACTIONS(907), - [anon_sym_overlay] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_bit_DASHshl] = ACTIONS(907), - [anon_sym_bit_DASHshr] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_LT2] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_not_DASHin] = ACTIONS(907), - [anon_sym_starts_DASHwith] = ACTIONS(907), - [anon_sym_ends_DASHwith] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_BANG_TILDE] = ACTIONS(907), - [anon_sym_bit_DASHand] = ACTIONS(907), - [anon_sym_bit_DASHxor] = ACTIONS(907), - [anon_sym_bit_DASHor] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_not] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [sym_val_nothing] = ACTIONS(907), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [aux_sym_val_number_token1] = ACTIONS(907), - [aux_sym_val_number_token2] = ACTIONS(907), - [aux_sym_val_number_token3] = ACTIONS(907), - [aux_sym_val_number_token4] = ACTIONS(907), - [aux_sym_val_number_token5] = ACTIONS(907), - [anon_sym_inf] = ACTIONS(907), - [anon_sym_DASHinf] = ACTIONS(907), - [anon_sym_NaN] = ACTIONS(907), - [anon_sym_0b] = ACTIONS(907), - [anon_sym_0o] = ACTIONS(907), - [anon_sym_0x] = ACTIONS(907), - [sym_val_date] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__str_single_quotes] = ACTIONS(907), - [sym__str_back_ticks] = ACTIONS(907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(3), - }, - [196] = { - [sym_comment] = STATE(196), - [anon_sym_export] = ACTIONS(911), - [anon_sym_alias] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_let_DASHenv] = ACTIONS(911), - [anon_sym_mut] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [sym_cmd_identifier] = ACTIONS(911), - [anon_sym_LF] = ACTIONS(913), - [anon_sym_def] = ACTIONS(911), - [anon_sym_def_DASHenv] = ACTIONS(911), - [anon_sym_export_DASHenv] = ACTIONS(911), - [anon_sym_extern] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_in] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_source] = ACTIONS(911), - [anon_sym_source_DASHenv] = ACTIONS(911), - [anon_sym_register] = ACTIONS(911), - [anon_sym_hide] = ACTIONS(911), - [anon_sym_hide_DASHenv] = ACTIONS(911), - [anon_sym_overlay] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_not] = ACTIONS(911), - [anon_sym_DOT_DOT_LT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [sym_val_nothing] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym_val_number_token1] = ACTIONS(911), - [aux_sym_val_number_token2] = ACTIONS(911), - [aux_sym_val_number_token3] = ACTIONS(911), - [aux_sym_val_number_token4] = ACTIONS(911), - [aux_sym_val_number_token5] = ACTIONS(911), - [anon_sym_inf] = ACTIONS(911), - [anon_sym_DASHinf] = ACTIONS(911), - [anon_sym_NaN] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(911), - [anon_sym_0x] = ACTIONS(911), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), + [226] = { + [sym_comment] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(839), + [anon_sym_export] = ACTIONS(837), + [anon_sym_alias] = ACTIONS(837), + [anon_sym_let] = ACTIONS(837), + [anon_sym_let_DASHenv] = ACTIONS(837), + [anon_sym_mut] = ACTIONS(837), + [anon_sym_const] = ACTIONS(837), + [anon_sym_SEMI] = ACTIONS(837), + [sym_cmd_identifier] = ACTIONS(837), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_def] = ACTIONS(837), + [anon_sym_def_DASHenv] = ACTIONS(837), + [anon_sym_export_DASHenv] = ACTIONS(837), + [anon_sym_extern] = ACTIONS(837), + [anon_sym_module] = ACTIONS(837), + [anon_sym_use] = ACTIONS(837), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_error] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_break] = ACTIONS(837), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_for] = ACTIONS(837), + [anon_sym_in] = ACTIONS(837), + [anon_sym_loop] = ACTIONS(837), + [anon_sym_while] = ACTIONS(837), + [anon_sym_do] = ACTIONS(837), + [anon_sym_if] = ACTIONS(837), + [anon_sym_match] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_try] = ACTIONS(837), + [anon_sym_return] = ACTIONS(837), + [anon_sym_source] = ACTIONS(837), + [anon_sym_source_DASHenv] = ACTIONS(837), + [anon_sym_register] = ACTIONS(837), + [anon_sym_hide] = ACTIONS(837), + [anon_sym_hide_DASHenv] = ACTIONS(837), + [anon_sym_overlay] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_where] = ACTIONS(837), + [anon_sym_STAR_STAR] = ACTIONS(837), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_mod] = ACTIONS(837), + [anon_sym_SLASH_SLASH] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_bit_DASHshl] = ACTIONS(837), + [anon_sym_bit_DASHshr] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_LT2] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_not_DASHin] = ACTIONS(837), + [anon_sym_starts_DASHwith] = ACTIONS(837), + [anon_sym_ends_DASHwith] = ACTIONS(837), + [anon_sym_EQ_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [anon_sym_bit_DASHand] = ACTIONS(837), + [anon_sym_bit_DASHxor] = ACTIONS(837), + [anon_sym_bit_DASHor] = ACTIONS(837), + [anon_sym_and] = ACTIONS(837), + [anon_sym_xor] = ACTIONS(837), + [anon_sym_or] = ACTIONS(837), + [anon_sym_not] = ACTIONS(837), + [anon_sym_DOT_DOT_LT] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(837), + [sym_val_nothing] = ACTIONS(837), + [anon_sym_true] = ACTIONS(837), + [anon_sym_false] = ACTIONS(837), + [aux_sym_val_number_token1] = ACTIONS(837), + [aux_sym_val_number_token2] = ACTIONS(837), + [aux_sym_val_number_token3] = ACTIONS(837), + [aux_sym_val_number_token4] = ACTIONS(837), + [aux_sym_val_number_token5] = ACTIONS(837), + [anon_sym_inf] = ACTIONS(837), + [anon_sym_DASHinf] = ACTIONS(837), + [anon_sym_NaN] = ACTIONS(837), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(837), + [anon_sym_0x] = ACTIONS(837), + [sym_val_date] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [sym__str_single_quotes] = ACTIONS(837), + [sym__str_back_ticks] = ACTIONS(837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), + [anon_sym_CARET] = ACTIONS(837), [anon_sym_POUND] = ACTIONS(3), }, - [197] = { - [sym_comment] = STATE(197), - [anon_sym_export] = ACTIONS(915), - [anon_sym_alias] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_let_DASHenv] = ACTIONS(915), - [anon_sym_mut] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(915), - [sym_cmd_identifier] = ACTIONS(915), - [anon_sym_LF] = ACTIONS(917), - [anon_sym_def] = ACTIONS(915), - [anon_sym_def_DASHenv] = ACTIONS(915), - [anon_sym_export_DASHenv] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_module] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_RPAREN] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_error] = ACTIONS(915), - [anon_sym_GT] = ACTIONS(799), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_in] = ACTIONS(803), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_try] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_source] = ACTIONS(915), - [anon_sym_source_DASHenv] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_hide] = ACTIONS(915), - [anon_sym_hide_DASHenv] = ACTIONS(915), - [anon_sym_overlay] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_where] = ACTIONS(915), - [anon_sym_STAR_STAR] = ACTIONS(797), - [anon_sym_PLUS_PLUS] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_bit_DASHshl] = ACTIONS(807), - [anon_sym_bit_DASHshr] = ACTIONS(807), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_LT2] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_not_DASHin] = ACTIONS(803), - [anon_sym_starts_DASHwith] = ACTIONS(803), - [anon_sym_ends_DASHwith] = ACTIONS(803), - [anon_sym_EQ_TILDE] = ACTIONS(809), - [anon_sym_BANG_TILDE] = ACTIONS(809), - [anon_sym_bit_DASHand] = ACTIONS(811), - [anon_sym_bit_DASHxor] = ACTIONS(813), - [anon_sym_bit_DASHor] = ACTIONS(815), - [anon_sym_and] = ACTIONS(817), - [anon_sym_xor] = ACTIONS(819), - [anon_sym_or] = ACTIONS(877), - [anon_sym_not] = ACTIONS(915), - [anon_sym_DOT_DOT_LT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(915), - [sym_val_nothing] = ACTIONS(915), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [aux_sym_val_number_token1] = ACTIONS(915), - [aux_sym_val_number_token2] = ACTIONS(915), - [aux_sym_val_number_token3] = ACTIONS(915), - [aux_sym_val_number_token4] = ACTIONS(915), - [aux_sym_val_number_token5] = ACTIONS(915), - [anon_sym_inf] = ACTIONS(915), - [anon_sym_DASHinf] = ACTIONS(915), - [anon_sym_NaN] = ACTIONS(915), - [anon_sym_0b] = ACTIONS(915), - [anon_sym_0o] = ACTIONS(915), - [anon_sym_0x] = ACTIONS(915), - [sym_val_date] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(915), - [sym__str_single_quotes] = ACTIONS(915), - [sym__str_back_ticks] = ACTIONS(915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), + [227] = { + [sym_comment] = STATE(227), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_export] = ACTIONS(901), + [anon_sym_alias] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_let_DASHenv] = ACTIONS(901), + [anon_sym_mut] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(901), + [sym_cmd_identifier] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_def] = ACTIONS(901), + [anon_sym_def_DASHenv] = ACTIONS(901), + [anon_sym_export_DASHenv] = ACTIONS(901), + [anon_sym_extern] = ACTIONS(901), + [anon_sym_module] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_error] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [anon_sym_do] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_try] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_source] = ACTIONS(901), + [anon_sym_source_DASHenv] = ACTIONS(901), + [anon_sym_register] = ACTIONS(901), + [anon_sym_hide] = ACTIONS(901), + [anon_sym_hide_DASHenv] = ACTIONS(901), + [anon_sym_overlay] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_not] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [198] = { - [sym_comment] = STATE(198), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [199] = { - [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(919), - [anon_sym_alias] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_let_DASHenv] = ACTIONS(919), - [anon_sym_mut] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(919), - [sym_cmd_identifier] = ACTIONS(919), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_def] = ACTIONS(919), - [anon_sym_def_DASHenv] = ACTIONS(919), - [anon_sym_export_DASHenv] = ACTIONS(919), - [anon_sym_extern] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_in] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_do] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_source] = ACTIONS(919), - [anon_sym_source_DASHenv] = ACTIONS(919), - [anon_sym_register] = ACTIONS(919), - [anon_sym_hide] = ACTIONS(919), - [anon_sym_hide_DASHenv] = ACTIONS(919), - [anon_sym_overlay] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_not] = ACTIONS(919), - [anon_sym_DOT_DOT_LT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(919), - [sym_val_nothing] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym_val_number_token1] = ACTIONS(919), - [aux_sym_val_number_token2] = ACTIONS(919), - [aux_sym_val_number_token3] = ACTIONS(919), - [aux_sym_val_number_token4] = ACTIONS(919), - [aux_sym_val_number_token5] = ACTIONS(919), - [anon_sym_inf] = ACTIONS(919), - [anon_sym_DASHinf] = ACTIONS(919), - [anon_sym_NaN] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(919), - [anon_sym_0x] = ACTIONS(919), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_POUND] = ACTIONS(3), - }, - [200] = { - [sym_comment] = STATE(200), - [anon_sym_export] = ACTIONS(113), - [anon_sym_alias] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_DASHenv] = ACTIONS(113), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(113), - [sym_cmd_identifier] = ACTIONS(113), - [anon_sym_LF] = ACTIONS(115), - [anon_sym_def] = ACTIONS(113), - [anon_sym_def_DASHenv] = ACTIONS(113), - [anon_sym_export_DASHenv] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_use] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_RPAREN] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_error] = ACTIONS(113), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_break] = ACTIONS(113), - [anon_sym_continue] = ACTIONS(113), - [anon_sym_for] = ACTIONS(113), - [anon_sym_in] = ACTIONS(113), - [anon_sym_loop] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_source] = ACTIONS(113), - [anon_sym_source_DASHenv] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_hide] = ACTIONS(113), - [anon_sym_hide_DASHenv] = ACTIONS(113), - [anon_sym_overlay] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_where] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(113), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_bit_DASHshl] = ACTIONS(113), - [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(113), - [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(113), - [anon_sym_not_DASHin] = ACTIONS(113), - [anon_sym_starts_DASHwith] = ACTIONS(113), - [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(113), - [anon_sym_BANG_TILDE] = ACTIONS(113), - [anon_sym_bit_DASHand] = ACTIONS(113), - [anon_sym_bit_DASHxor] = ACTIONS(113), - [anon_sym_bit_DASHor] = ACTIONS(113), - [anon_sym_and] = ACTIONS(113), - [anon_sym_xor] = ACTIONS(113), - [anon_sym_or] = ACTIONS(113), - [anon_sym_not] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(113), - [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(113), - [sym_val_nothing] = ACTIONS(113), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [aux_sym_val_number_token1] = ACTIONS(113), - [aux_sym_val_number_token2] = ACTIONS(113), - [aux_sym_val_number_token3] = ACTIONS(113), - [aux_sym_val_number_token4] = ACTIONS(113), - [aux_sym_val_number_token5] = ACTIONS(113), - [anon_sym_inf] = ACTIONS(113), - [anon_sym_DASHinf] = ACTIONS(113), - [anon_sym_NaN] = ACTIONS(113), - [anon_sym_0b] = ACTIONS(113), - [anon_sym_0o] = ACTIONS(113), - [anon_sym_0x] = ACTIONS(113), - [sym_val_date] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(3), - }, - [201] = { - [sym_comment] = STATE(201), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_def_DASHenv] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [sym_val_nothing] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym_val_number_token1] = ACTIONS(923), - [aux_sym_val_number_token2] = ACTIONS(923), - [aux_sym_val_number_token3] = ACTIONS(923), - [aux_sym_val_number_token4] = ACTIONS(923), - [aux_sym_val_number_token5] = ACTIONS(923), - [anon_sym_inf] = ACTIONS(923), - [anon_sym_DASHinf] = ACTIONS(923), - [anon_sym_NaN] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [202] = { - [sym_comment] = STATE(202), - [anon_sym_export] = ACTIONS(927), - [anon_sym_alias] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_let_DASHenv] = ACTIONS(927), - [anon_sym_mut] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [sym_cmd_identifier] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_def] = ACTIONS(927), - [anon_sym_def_DASHenv] = ACTIONS(927), - [anon_sym_export_DASHenv] = ACTIONS(927), - [anon_sym_extern] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_error] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_source] = ACTIONS(927), - [anon_sym_source_DASHenv] = ACTIONS(927), - [anon_sym_register] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_hide_DASHenv] = ACTIONS(927), - [anon_sym_overlay] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_not] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [203] = { - [sym_comment] = STATE(203), - [anon_sym_export] = ACTIONS(927), - [anon_sym_alias] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_let_DASHenv] = ACTIONS(927), - [anon_sym_mut] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [sym_cmd_identifier] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_def] = ACTIONS(927), - [anon_sym_def_DASHenv] = ACTIONS(927), - [anon_sym_export_DASHenv] = ACTIONS(927), - [anon_sym_extern] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_error] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_source] = ACTIONS(927), - [anon_sym_source_DASHenv] = ACTIONS(927), - [anon_sym_register] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_hide_DASHenv] = ACTIONS(927), - [anon_sym_overlay] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_not] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [204] = { - [sym_comment] = STATE(204), + [228] = { + [sym_comment] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(933), [anon_sym_export] = ACTIONS(931), [anon_sym_alias] = ACTIONS(931), [anon_sym_let] = ACTIONS(931), @@ -63925,7 +66284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(931), [anon_sym_LBRACK] = ACTIONS(931), [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_DOLLAR] = ACTIONS(931), [anon_sym_error] = ACTIONS(931), [anon_sym_GT] = ACTIONS(931), @@ -63940,7 +66298,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(931), [anon_sym_match] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), [anon_sym_try] = ACTIONS(931), [anon_sym_return] = ACTIONS(931), [anon_sym_source] = ACTIONS(931), @@ -64002,388 +66359,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(3), }, - [205] = { - [sym_comment] = STATE(205), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [206] = { - [sym_comment] = STATE(206), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [207] = { - [sym_comment] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(917), - [anon_sym_export] = ACTIONS(915), - [anon_sym_alias] = ACTIONS(915), - [anon_sym_let] = ACTIONS(915), - [anon_sym_let_DASHenv] = ACTIONS(915), - [anon_sym_mut] = ACTIONS(915), - [anon_sym_const] = ACTIONS(915), - [anon_sym_SEMI] = ACTIONS(915), - [sym_cmd_identifier] = ACTIONS(915), - [anon_sym_LF] = ACTIONS(917), - [anon_sym_def] = ACTIONS(915), - [anon_sym_def_DASHenv] = ACTIONS(915), - [anon_sym_export_DASHenv] = ACTIONS(915), - [anon_sym_extern] = ACTIONS(915), - [anon_sym_module] = ACTIONS(915), - [anon_sym_use] = ACTIONS(915), - [anon_sym_LBRACK] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(915), - [anon_sym_DOLLAR] = ACTIONS(915), - [anon_sym_error] = ACTIONS(915), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(915), - [anon_sym_continue] = ACTIONS(915), - [anon_sym_for] = ACTIONS(915), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(915), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(915), - [anon_sym_if] = ACTIONS(915), - [anon_sym_match] = ACTIONS(915), - [anon_sym_LBRACE] = ACTIONS(915), - [anon_sym_try] = ACTIONS(915), - [anon_sym_return] = ACTIONS(915), - [anon_sym_source] = ACTIONS(915), - [anon_sym_source_DASHenv] = ACTIONS(915), - [anon_sym_register] = ACTIONS(915), - [anon_sym_hide] = ACTIONS(915), - [anon_sym_hide_DASHenv] = ACTIONS(915), - [anon_sym_overlay] = ACTIONS(915), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(915), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(953), - [anon_sym_and] = ACTIONS(955), - [anon_sym_xor] = ACTIONS(957), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(915), - [anon_sym_DOT_DOT_LT] = ACTIONS(915), - [anon_sym_DOT_DOT] = ACTIONS(915), - [anon_sym_DOT_DOT_EQ] = ACTIONS(915), - [sym_val_nothing] = ACTIONS(915), - [anon_sym_true] = ACTIONS(915), - [anon_sym_false] = ACTIONS(915), - [aux_sym_val_number_token1] = ACTIONS(915), - [aux_sym_val_number_token2] = ACTIONS(915), - [aux_sym_val_number_token3] = ACTIONS(915), - [aux_sym_val_number_token4] = ACTIONS(915), - [aux_sym_val_number_token5] = ACTIONS(915), - [anon_sym_inf] = ACTIONS(915), - [anon_sym_DASHinf] = ACTIONS(915), - [anon_sym_NaN] = ACTIONS(915), - [anon_sym_0b] = ACTIONS(915), - [anon_sym_0o] = ACTIONS(915), - [anon_sym_0x] = ACTIONS(915), - [sym_val_date] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(915), - [sym__str_single_quotes] = ACTIONS(915), - [sym__str_back_ticks] = ACTIONS(915), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(915), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(915), - [anon_sym_CARET] = ACTIONS(915), + [229] = { + [sym_comment] = STATE(229), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [208] = { - [sym_comment] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [230] = { + [sym_comment] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_export] = ACTIONS(905), + [anon_sym_alias] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_let_DASHenv] = ACTIONS(905), + [anon_sym_mut] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(905), + [sym_cmd_identifier] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_def] = ACTIONS(905), + [anon_sym_def_DASHenv] = ACTIONS(905), + [anon_sym_export_DASHenv] = ACTIONS(905), + [anon_sym_extern] = ACTIONS(905), + [anon_sym_module] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_error] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [anon_sym_do] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_try] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_source] = ACTIONS(905), + [anon_sym_source_DASHenv] = ACTIONS(905), + [anon_sym_register] = ACTIONS(905), + [anon_sym_hide] = ACTIONS(905), + [anon_sym_hide_DASHenv] = ACTIONS(905), + [anon_sym_overlay] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_STAR_STAR] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_bit_DASHshl] = ACTIONS(905), + [anon_sym_bit_DASHshr] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT2] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_not_DASHin] = ACTIONS(905), + [anon_sym_starts_DASHwith] = ACTIONS(905), + [anon_sym_ends_DASHwith] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [anon_sym_BANG_TILDE] = ACTIONS(905), + [anon_sym_bit_DASHand] = ACTIONS(905), + [anon_sym_bit_DASHxor] = ACTIONS(905), + [anon_sym_bit_DASHor] = ACTIONS(905), + [anon_sym_and] = ACTIONS(905), + [anon_sym_xor] = ACTIONS(905), + [anon_sym_or] = ACTIONS(905), + [anon_sym_not] = ACTIONS(905), + [anon_sym_DOT_DOT_LT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [sym_val_nothing] = ACTIONS(905), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [aux_sym_val_number_token1] = ACTIONS(905), + [aux_sym_val_number_token2] = ACTIONS(905), + [aux_sym_val_number_token3] = ACTIONS(905), + [aux_sym_val_number_token4] = ACTIONS(905), + [aux_sym_val_number_token5] = ACTIONS(905), + [anon_sym_inf] = ACTIONS(905), + [anon_sym_DASHinf] = ACTIONS(905), + [anon_sym_NaN] = ACTIONS(905), + [anon_sym_0b] = ACTIONS(905), + [anon_sym_0o] = ACTIONS(905), + [anon_sym_0x] = ACTIONS(905), + [sym_val_date] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__str_single_quotes] = ACTIONS(905), + [sym__str_back_ticks] = ACTIONS(905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), [anon_sym_POUND] = ACTIONS(3), }, - [209] = { - [sym_comment] = STATE(209), + [231] = { + [sym_comment] = STATE(231), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -64477,277 +66644,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [210] = { - [sym_comment] = STATE(210), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [211] = { - [sym_comment] = STATE(211), - [ts_builtin_sym_end] = ACTIONS(913), - [anon_sym_export] = ACTIONS(911), - [anon_sym_alias] = ACTIONS(911), - [anon_sym_let] = ACTIONS(911), - [anon_sym_let_DASHenv] = ACTIONS(911), - [anon_sym_mut] = ACTIONS(911), - [anon_sym_const] = ACTIONS(911), - [anon_sym_SEMI] = ACTIONS(911), - [sym_cmd_identifier] = ACTIONS(911), - [anon_sym_LF] = ACTIONS(913), - [anon_sym_def] = ACTIONS(911), - [anon_sym_def_DASHenv] = ACTIONS(911), - [anon_sym_export_DASHenv] = ACTIONS(911), - [anon_sym_extern] = ACTIONS(911), - [anon_sym_module] = ACTIONS(911), - [anon_sym_use] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_error] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(911), - [anon_sym_for] = ACTIONS(911), - [anon_sym_in] = ACTIONS(911), - [anon_sym_loop] = ACTIONS(911), - [anon_sym_while] = ACTIONS(911), - [anon_sym_do] = ACTIONS(911), - [anon_sym_if] = ACTIONS(911), - [anon_sym_match] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_try] = ACTIONS(911), - [anon_sym_return] = ACTIONS(911), - [anon_sym_source] = ACTIONS(911), - [anon_sym_source_DASHenv] = ACTIONS(911), - [anon_sym_register] = ACTIONS(911), - [anon_sym_hide] = ACTIONS(911), - [anon_sym_hide_DASHenv] = ACTIONS(911), - [anon_sym_overlay] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_where] = ACTIONS(911), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_not] = ACTIONS(911), - [anon_sym_DOT_DOT_LT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [sym_val_nothing] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym_val_number_token1] = ACTIONS(911), - [aux_sym_val_number_token2] = ACTIONS(911), - [aux_sym_val_number_token3] = ACTIONS(911), - [aux_sym_val_number_token4] = ACTIONS(911), - [aux_sym_val_number_token5] = ACTIONS(911), - [anon_sym_inf] = ACTIONS(911), - [anon_sym_DASHinf] = ACTIONS(911), - [anon_sym_NaN] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(911), - [anon_sym_0x] = ACTIONS(911), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [anon_sym_CARET] = ACTIONS(911), + [232] = { + [sym_comment] = STATE(232), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_export] = ACTIONS(861), + [anon_sym_alias] = ACTIONS(861), + [anon_sym_let] = ACTIONS(861), + [anon_sym_let_DASHenv] = ACTIONS(861), + [anon_sym_mut] = ACTIONS(861), + [anon_sym_const] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(861), + [sym_cmd_identifier] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_def] = ACTIONS(861), + [anon_sym_def_DASHenv] = ACTIONS(861), + [anon_sym_export_DASHenv] = ACTIONS(861), + [anon_sym_extern] = ACTIONS(861), + [anon_sym_module] = ACTIONS(861), + [anon_sym_use] = ACTIONS(861), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_error] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_break] = ACTIONS(861), + [anon_sym_continue] = ACTIONS(861), + [anon_sym_for] = ACTIONS(861), + [anon_sym_in] = ACTIONS(861), + [anon_sym_loop] = ACTIONS(861), + [anon_sym_while] = ACTIONS(861), + [anon_sym_do] = ACTIONS(861), + [anon_sym_if] = ACTIONS(861), + [anon_sym_match] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_try] = ACTIONS(861), + [anon_sym_return] = ACTIONS(861), + [anon_sym_source] = ACTIONS(861), + [anon_sym_source_DASHenv] = ACTIONS(861), + [anon_sym_register] = ACTIONS(861), + [anon_sym_hide] = ACTIONS(861), + [anon_sym_hide_DASHenv] = ACTIONS(861), + [anon_sym_overlay] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_where] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_bit_DASHshl] = ACTIONS(861), + [anon_sym_bit_DASHshr] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT2] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_not_DASHin] = ACTIONS(861), + [anon_sym_starts_DASHwith] = ACTIONS(861), + [anon_sym_ends_DASHwith] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_bit_DASHand] = ACTIONS(861), + [anon_sym_bit_DASHxor] = ACTIONS(861), + [anon_sym_bit_DASHor] = ACTIONS(861), + [anon_sym_and] = ACTIONS(861), + [anon_sym_xor] = ACTIONS(861), + [anon_sym_or] = ACTIONS(861), + [anon_sym_not] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_CARET] = ACTIONS(861), [anon_sym_POUND] = ACTIONS(3), }, - [212] = { - [sym_comment] = STATE(212), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_export] = ACTIONS(829), - [anon_sym_alias] = ACTIONS(829), - [anon_sym_let] = ACTIONS(829), - [anon_sym_let_DASHenv] = ACTIONS(829), - [anon_sym_mut] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [sym_cmd_identifier] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_def] = ACTIONS(829), - [anon_sym_def_DASHenv] = ACTIONS(829), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_error] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_source] = ACTIONS(829), - [anon_sym_source_DASHenv] = ACTIONS(829), - [anon_sym_register] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_where] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_not] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), + [233] = { + [sym_comment] = STATE(233), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_export] = ACTIONS(927), + [anon_sym_alias] = ACTIONS(927), + [anon_sym_let] = ACTIONS(927), + [anon_sym_let_DASHenv] = ACTIONS(927), + [anon_sym_mut] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(927), + [sym_cmd_identifier] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(929), + [anon_sym_def] = ACTIONS(927), + [anon_sym_def_DASHenv] = ACTIONS(927), + [anon_sym_export_DASHenv] = ACTIONS(927), + [anon_sym_extern] = ACTIONS(927), + [anon_sym_module] = ACTIONS(927), + [anon_sym_use] = ACTIONS(927), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_error] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [anon_sym_loop] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [anon_sym_do] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_try] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_source] = ACTIONS(927), + [anon_sym_source_DASHenv] = ACTIONS(927), + [anon_sym_register] = ACTIONS(927), + [anon_sym_hide] = ACTIONS(927), + [anon_sym_hide_DASHenv] = ACTIONS(927), + [anon_sym_overlay] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_where] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_bit_DASHshl] = ACTIONS(927), + [anon_sym_bit_DASHshr] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_not_DASHin] = ACTIONS(927), + [anon_sym_starts_DASHwith] = ACTIONS(927), + [anon_sym_ends_DASHwith] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_bit_DASHand] = ACTIONS(927), + [anon_sym_bit_DASHxor] = ACTIONS(927), + [anon_sym_bit_DASHor] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_not] = ACTIONS(927), + [anon_sym_DOT_DOT_LT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [sym_val_nothing] = ACTIONS(927), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [aux_sym_val_number_token1] = ACTIONS(927), + [aux_sym_val_number_token2] = ACTIONS(927), + [aux_sym_val_number_token3] = ACTIONS(927), + [aux_sym_val_number_token4] = ACTIONS(927), + [aux_sym_val_number_token5] = ACTIONS(927), + [anon_sym_inf] = ACTIONS(927), + [anon_sym_DASHinf] = ACTIONS(927), + [anon_sym_NaN] = ACTIONS(927), + [anon_sym_0b] = ACTIONS(927), + [anon_sym_0o] = ACTIONS(927), + [anon_sym_0x] = ACTIONS(927), + [sym_val_date] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_POUND] = ACTIONS(3), + }, + [234] = { + [sym_comment] = STATE(234), + [ts_builtin_sym_end] = ACTIONS(871), + [anon_sym_export] = ACTIONS(869), + [anon_sym_alias] = ACTIONS(869), + [anon_sym_let] = ACTIONS(869), + [anon_sym_let_DASHenv] = ACTIONS(869), + [anon_sym_mut] = ACTIONS(869), + [anon_sym_const] = ACTIONS(869), + [anon_sym_SEMI] = ACTIONS(869), + [sym_cmd_identifier] = ACTIONS(869), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_def] = ACTIONS(869), + [anon_sym_def_DASHenv] = ACTIONS(869), + [anon_sym_export_DASHenv] = ACTIONS(869), + [anon_sym_extern] = ACTIONS(869), + [anon_sym_module] = ACTIONS(869), + [anon_sym_use] = ACTIONS(869), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_error] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_break] = ACTIONS(869), + [anon_sym_continue] = ACTIONS(869), + [anon_sym_for] = ACTIONS(869), + [anon_sym_in] = ACTIONS(869), + [anon_sym_loop] = ACTIONS(869), + [anon_sym_while] = ACTIONS(869), + [anon_sym_do] = ACTIONS(869), + [anon_sym_if] = ACTIONS(869), + [anon_sym_match] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_try] = ACTIONS(869), + [anon_sym_return] = ACTIONS(869), + [anon_sym_source] = ACTIONS(869), + [anon_sym_source_DASHenv] = ACTIONS(869), + [anon_sym_register] = ACTIONS(869), + [anon_sym_hide] = ACTIONS(869), + [anon_sym_hide_DASHenv] = ACTIONS(869), + [anon_sym_overlay] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_where] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_SLASH_SLASH] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_bit_DASHshl] = ACTIONS(869), + [anon_sym_bit_DASHshr] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_not_DASHin] = ACTIONS(869), + [anon_sym_starts_DASHwith] = ACTIONS(869), + [anon_sym_ends_DASHwith] = ACTIONS(869), + [anon_sym_EQ_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_bit_DASHand] = ACTIONS(869), + [anon_sym_bit_DASHxor] = ACTIONS(869), + [anon_sym_bit_DASHor] = ACTIONS(869), + [anon_sym_and] = ACTIONS(869), + [anon_sym_xor] = ACTIONS(869), + [anon_sym_or] = ACTIONS(869), + [anon_sym_not] = ACTIONS(869), + [anon_sym_DOT_DOT_LT] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [sym_val_nothing] = ACTIONS(869), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), + [aux_sym_val_number_token1] = ACTIONS(869), + [aux_sym_val_number_token2] = ACTIONS(869), + [aux_sym_val_number_token3] = ACTIONS(869), + [aux_sym_val_number_token4] = ACTIONS(869), + [aux_sym_val_number_token5] = ACTIONS(869), + [anon_sym_inf] = ACTIONS(869), + [anon_sym_DASHinf] = ACTIONS(869), + [anon_sym_NaN] = ACTIONS(869), + [anon_sym_0b] = ACTIONS(869), + [anon_sym_0o] = ACTIONS(869), + [anon_sym_0x] = ACTIONS(869), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym__str_single_quotes] = ACTIONS(869), + [sym__str_back_ticks] = ACTIONS(869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), + [anon_sym_CARET] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(3), + }, + [235] = { + [sym_comment] = STATE(235), + [ts_builtin_sym_end] = ACTIONS(875), + [anon_sym_export] = ACTIONS(873), + [anon_sym_alias] = ACTIONS(873), + [anon_sym_let] = ACTIONS(873), + [anon_sym_let_DASHenv] = ACTIONS(873), + [anon_sym_mut] = ACTIONS(873), + [anon_sym_const] = ACTIONS(873), + [anon_sym_SEMI] = ACTIONS(873), + [sym_cmd_identifier] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(875), + [anon_sym_def] = ACTIONS(873), + [anon_sym_def_DASHenv] = ACTIONS(873), + [anon_sym_export_DASHenv] = ACTIONS(873), + [anon_sym_extern] = ACTIONS(873), + [anon_sym_module] = ACTIONS(873), + [anon_sym_use] = ACTIONS(873), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_error] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_break] = ACTIONS(873), + [anon_sym_continue] = ACTIONS(873), + [anon_sym_for] = ACTIONS(873), + [anon_sym_in] = ACTIONS(873), + [anon_sym_loop] = ACTIONS(873), + [anon_sym_while] = ACTIONS(873), + [anon_sym_do] = ACTIONS(873), + [anon_sym_if] = ACTIONS(873), + [anon_sym_match] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_try] = ACTIONS(873), + [anon_sym_return] = ACTIONS(873), + [anon_sym_source] = ACTIONS(873), + [anon_sym_source_DASHenv] = ACTIONS(873), + [anon_sym_register] = ACTIONS(873), + [anon_sym_hide] = ACTIONS(873), + [anon_sym_hide_DASHenv] = ACTIONS(873), + [anon_sym_overlay] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_where] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_mod] = ACTIONS(873), + [anon_sym_SLASH_SLASH] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_bit_DASHshl] = ACTIONS(873), + [anon_sym_bit_DASHshr] = ACTIONS(873), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(873), + [anon_sym_BANG_TILDE] = ACTIONS(873), + [anon_sym_bit_DASHand] = ACTIONS(873), + [anon_sym_bit_DASHxor] = ACTIONS(873), + [anon_sym_bit_DASHor] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_xor] = ACTIONS(873), + [anon_sym_or] = ACTIONS(873), + [anon_sym_not] = ACTIONS(873), + [anon_sym_DOT_DOT_LT] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [sym_val_nothing] = ACTIONS(873), + [anon_sym_true] = ACTIONS(873), + [anon_sym_false] = ACTIONS(873), + [aux_sym_val_number_token1] = ACTIONS(873), + [aux_sym_val_number_token2] = ACTIONS(873), + [aux_sym_val_number_token3] = ACTIONS(873), + [aux_sym_val_number_token4] = ACTIONS(873), + [aux_sym_val_number_token5] = ACTIONS(873), + [anon_sym_inf] = ACTIONS(873), + [anon_sym_DASHinf] = ACTIONS(873), + [anon_sym_NaN] = ACTIONS(873), + [anon_sym_0b] = ACTIONS(873), + [anon_sym_0o] = ACTIONS(873), + [anon_sym_0x] = ACTIONS(873), + [sym_val_date] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym__str_single_quotes] = ACTIONS(873), + [sym__str_back_ticks] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), + [anon_sym_CARET] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(3), + }, + [236] = { + [sym_comment] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_export] = ACTIONS(877), + [anon_sym_alias] = ACTIONS(877), + [anon_sym_let] = ACTIONS(877), + [anon_sym_let_DASHenv] = ACTIONS(877), + [anon_sym_mut] = ACTIONS(877), + [anon_sym_const] = ACTIONS(877), + [anon_sym_SEMI] = ACTIONS(877), + [sym_cmd_identifier] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_def] = ACTIONS(877), + [anon_sym_def_DASHenv] = ACTIONS(877), + [anon_sym_export_DASHenv] = ACTIONS(877), + [anon_sym_extern] = ACTIONS(877), + [anon_sym_module] = ACTIONS(877), + [anon_sym_use] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_error] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_break] = ACTIONS(877), + [anon_sym_continue] = ACTIONS(877), + [anon_sym_for] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_loop] = ACTIONS(877), + [anon_sym_while] = ACTIONS(877), + [anon_sym_do] = ACTIONS(877), + [anon_sym_if] = ACTIONS(877), + [anon_sym_match] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_try] = ACTIONS(877), + [anon_sym_return] = ACTIONS(877), + [anon_sym_source] = ACTIONS(877), + [anon_sym_source_DASHenv] = ACTIONS(877), + [anon_sym_register] = ACTIONS(877), + [anon_sym_hide] = ACTIONS(877), + [anon_sym_hide_DASHenv] = ACTIONS(877), + [anon_sym_overlay] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_where] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_not] = ACTIONS(877), + [anon_sym_DOT_DOT_LT] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [sym_val_nothing] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym_val_number_token1] = ACTIONS(877), + [aux_sym_val_number_token2] = ACTIONS(877), + [aux_sym_val_number_token3] = ACTIONS(877), + [aux_sym_val_number_token4] = ACTIONS(877), + [aux_sym_val_number_token5] = ACTIONS(877), + [anon_sym_inf] = ACTIONS(877), + [anon_sym_DASHinf] = ACTIONS(877), + [anon_sym_NaN] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_CARET] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), + }, + [237] = { + [sym_comment] = STATE(237), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_export] = ACTIONS(829), + [anon_sym_alias] = ACTIONS(829), + [anon_sym_let] = ACTIONS(829), + [anon_sym_let_DASHenv] = ACTIONS(829), + [anon_sym_mut] = ACTIONS(829), + [anon_sym_const] = ACTIONS(829), + [anon_sym_SEMI] = ACTIONS(829), + [sym_cmd_identifier] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_def] = ACTIONS(829), + [anon_sym_def_DASHenv] = ACTIONS(829), + [anon_sym_export_DASHenv] = ACTIONS(829), + [anon_sym_extern] = ACTIONS(829), + [anon_sym_module] = ACTIONS(829), + [anon_sym_use] = ACTIONS(829), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_error] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_break] = ACTIONS(829), + [anon_sym_continue] = ACTIONS(829), + [anon_sym_for] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_loop] = ACTIONS(829), + [anon_sym_while] = ACTIONS(829), + [anon_sym_do] = ACTIONS(829), + [anon_sym_if] = ACTIONS(829), + [anon_sym_match] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_try] = ACTIONS(829), + [anon_sym_return] = ACTIONS(829), + [anon_sym_source] = ACTIONS(829), + [anon_sym_source_DASHenv] = ACTIONS(829), + [anon_sym_register] = ACTIONS(829), + [anon_sym_hide] = ACTIONS(829), + [anon_sym_hide_DASHenv] = ACTIONS(829), + [anon_sym_overlay] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_where] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_not] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), [anon_sym_DASHinf] = ACTIONS(829), [anon_sym_NaN] = ACTIONS(829), [anon_sym_0b] = ACTIONS(829), @@ -64762,8 +67214,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [213] = { - [sym_comment] = STATE(213), + [238] = { + [sym_comment] = STATE(238), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(961), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [239] = { + [sym_comment] = STATE(239), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [240] = { + [sym_comment] = STATE(240), + [ts_builtin_sym_end] = ACTIONS(835), + [anon_sym_export] = ACTIONS(833), + [anon_sym_alias] = ACTIONS(833), + [anon_sym_let] = ACTIONS(833), + [anon_sym_let_DASHenv] = ACTIONS(833), + [anon_sym_mut] = ACTIONS(833), + [anon_sym_const] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(833), + [sym_cmd_identifier] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_def] = ACTIONS(833), + [anon_sym_def_DASHenv] = ACTIONS(833), + [anon_sym_export_DASHenv] = ACTIONS(833), + [anon_sym_extern] = ACTIONS(833), + [anon_sym_module] = ACTIONS(833), + [anon_sym_use] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_error] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_break] = ACTIONS(833), + [anon_sym_continue] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_loop] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_match] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_try] = ACTIONS(833), + [anon_sym_return] = ACTIONS(833), + [anon_sym_source] = ACTIONS(833), + [anon_sym_source_DASHenv] = ACTIONS(833), + [anon_sym_register] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_hide_DASHenv] = ACTIONS(833), + [anon_sym_overlay] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_where] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_not] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_POUND] = ACTIONS(3), + }, + [241] = { + [sym_comment] = STATE(241), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_export] = ACTIONS(113), + [anon_sym_alias] = ACTIONS(113), + [anon_sym_let] = ACTIONS(113), + [anon_sym_let_DASHenv] = ACTIONS(113), + [anon_sym_mut] = ACTIONS(113), + [anon_sym_const] = ACTIONS(113), + [anon_sym_SEMI] = ACTIONS(113), + [sym_cmd_identifier] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_def] = ACTIONS(113), + [anon_sym_def_DASHenv] = ACTIONS(113), + [anon_sym_export_DASHenv] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(113), + [anon_sym_module] = ACTIONS(113), + [anon_sym_use] = ACTIONS(113), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_error] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_break] = ACTIONS(113), + [anon_sym_continue] = ACTIONS(113), + [anon_sym_for] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_loop] = ACTIONS(113), + [anon_sym_while] = ACTIONS(113), + [anon_sym_do] = ACTIONS(113), + [anon_sym_if] = ACTIONS(113), + [anon_sym_match] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_try] = ACTIONS(113), + [anon_sym_return] = ACTIONS(113), + [anon_sym_source] = ACTIONS(113), + [anon_sym_source_DASHenv] = ACTIONS(113), + [anon_sym_register] = ACTIONS(113), + [anon_sym_hide] = ACTIONS(113), + [anon_sym_hide_DASHenv] = ACTIONS(113), + [anon_sym_overlay] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_where] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_not] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_CARET] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [242] = { + [sym_comment] = STATE(242), + [ts_builtin_sym_end] = ACTIONS(835), + [anon_sym_export] = ACTIONS(833), + [anon_sym_alias] = ACTIONS(833), + [anon_sym_let] = ACTIONS(833), + [anon_sym_let_DASHenv] = ACTIONS(833), + [anon_sym_mut] = ACTIONS(833), + [anon_sym_const] = ACTIONS(833), + [anon_sym_SEMI] = ACTIONS(833), + [sym_cmd_identifier] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_def] = ACTIONS(833), + [anon_sym_def_DASHenv] = ACTIONS(833), + [anon_sym_export_DASHenv] = ACTIONS(833), + [anon_sym_extern] = ACTIONS(833), + [anon_sym_module] = ACTIONS(833), + [anon_sym_use] = ACTIONS(833), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_error] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_break] = ACTIONS(833), + [anon_sym_continue] = ACTIONS(833), + [anon_sym_for] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_loop] = ACTIONS(833), + [anon_sym_while] = ACTIONS(833), + [anon_sym_do] = ACTIONS(833), + [anon_sym_if] = ACTIONS(833), + [anon_sym_match] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_try] = ACTIONS(833), + [anon_sym_return] = ACTIONS(833), + [anon_sym_source] = ACTIONS(833), + [anon_sym_source_DASHenv] = ACTIONS(833), + [anon_sym_register] = ACTIONS(833), + [anon_sym_hide] = ACTIONS(833), + [anon_sym_hide_DASHenv] = ACTIONS(833), + [anon_sym_overlay] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_where] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_not] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_CARET] = ACTIONS(833), + [anon_sym_POUND] = ACTIONS(3), + }, + [243] = { + [sym_comment] = STATE(243), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [244] = { + [sym_comment] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(801), + [anon_sym_SLASH_SLASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [245] = { + [sym_comment] = STATE(245), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -64857,103 +67974,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [214] = { - [sym_comment] = STATE(214), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [246] = { + [sym_comment] = STATE(246), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_export] = ACTIONS(909), + [anon_sym_alias] = ACTIONS(909), + [anon_sym_let] = ACTIONS(909), + [anon_sym_let_DASHenv] = ACTIONS(909), + [anon_sym_mut] = ACTIONS(909), + [anon_sym_const] = ACTIONS(909), + [anon_sym_SEMI] = ACTIONS(909), + [sym_cmd_identifier] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_def] = ACTIONS(909), + [anon_sym_def_DASHenv] = ACTIONS(909), + [anon_sym_export_DASHenv] = ACTIONS(909), + [anon_sym_extern] = ACTIONS(909), + [anon_sym_module] = ACTIONS(909), + [anon_sym_use] = ACTIONS(909), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_error] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_break] = ACTIONS(909), + [anon_sym_continue] = ACTIONS(909), + [anon_sym_for] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(909), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(909), + [anon_sym_if] = ACTIONS(909), + [anon_sym_match] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_try] = ACTIONS(909), + [anon_sym_return] = ACTIONS(909), + [anon_sym_source] = ACTIONS(909), + [anon_sym_source_DASHenv] = ACTIONS(909), + [anon_sym_register] = ACTIONS(909), + [anon_sym_hide] = ACTIONS(909), + [anon_sym_hide_DASHenv] = ACTIONS(909), + [anon_sym_overlay] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_where] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_not] = ACTIONS(909), + [anon_sym_DOT_DOT_LT] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [sym_val_nothing] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym_val_number_token1] = ACTIONS(909), + [aux_sym_val_number_token2] = ACTIONS(909), + [aux_sym_val_number_token3] = ACTIONS(909), + [aux_sym_val_number_token4] = ACTIONS(909), + [aux_sym_val_number_token5] = ACTIONS(909), + [anon_sym_inf] = ACTIONS(909), + [anon_sym_DASHinf] = ACTIONS(909), + [anon_sym_NaN] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_CARET] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(3), }, - [215] = { - [sym_comment] = STATE(215), + [247] = { + [sym_comment] = STATE(247), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [248] = { + [sym_comment] = STATE(248), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -65047,198 +68259,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [216] = { - [sym_comment] = STATE(216), - [ts_builtin_sym_end] = ACTIONS(867), - [anon_sym_export] = ACTIONS(865), - [anon_sym_alias] = ACTIONS(865), - [anon_sym_let] = ACTIONS(865), - [anon_sym_let_DASHenv] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [sym_cmd_identifier] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_def] = ACTIONS(865), - [anon_sym_def_DASHenv] = ACTIONS(865), - [anon_sym_export_DASHenv] = ACTIONS(865), - [anon_sym_extern] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_use] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_error] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_in] = ACTIONS(865), - [anon_sym_loop] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_match] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_source] = ACTIONS(865), - [anon_sym_source_DASHenv] = ACTIONS(865), - [anon_sym_register] = ACTIONS(865), - [anon_sym_hide] = ACTIONS(865), - [anon_sym_hide_DASHenv] = ACTIONS(865), - [anon_sym_overlay] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_where] = ACTIONS(865), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_not] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_CARET] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(3), - }, - [217] = { - [sym_comment] = STATE(217), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), + [249] = { + [sym_comment] = STATE(249), + [ts_builtin_sym_end] = ACTIONS(941), + [anon_sym_export] = ACTIONS(939), + [anon_sym_alias] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_let_DASHenv] = ACTIONS(939), + [anon_sym_mut] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [sym_cmd_identifier] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_def] = ACTIONS(939), + [anon_sym_def_DASHenv] = ACTIONS(939), + [anon_sym_export_DASHenv] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_error] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_source] = ACTIONS(939), + [anon_sym_source_DASHenv] = ACTIONS(939), + [anon_sym_register] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_hide_DASHenv] = ACTIONS(939), + [anon_sym_overlay] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_bit_DASHshl] = ACTIONS(939), + [anon_sym_bit_DASHshr] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_LT2] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), [anon_sym_not_DASHin] = ACTIONS(939), [anon_sym_starts_DASHwith] = ACTIONS(939), [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_bit_DASHand] = ACTIONS(939), + [anon_sym_bit_DASHxor] = ACTIONS(939), + [anon_sym_bit_DASHor] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_not] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), [anon_sym_POUND] = ACTIONS(3), }, - [218] = { - [sym_comment] = STATE(218), + [250] = { + [sym_comment] = STATE(250), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -65332,293 +68449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [219] = { - [sym_comment] = STATE(219), - [ts_builtin_sym_end] = ACTIONS(933), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [sym_cmd_identifier] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_def] = ACTIONS(931), - [anon_sym_def_DASHenv] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_in] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_try] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_register] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_bit_DASHshl] = ACTIONS(931), - [anon_sym_bit_DASHshr] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_LT2] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_not_DASHin] = ACTIONS(931), - [anon_sym_starts_DASHwith] = ACTIONS(931), - [anon_sym_ends_DASHwith] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_BANG_TILDE] = ACTIONS(931), - [anon_sym_bit_DASHand] = ACTIONS(931), - [anon_sym_bit_DASHxor] = ACTIONS(931), - [anon_sym_bit_DASHor] = ACTIONS(931), - [anon_sym_and] = ACTIONS(931), - [anon_sym_xor] = ACTIONS(931), - [anon_sym_or] = ACTIONS(931), - [anon_sym_not] = ACTIONS(931), - [anon_sym_DOT_DOT_LT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [sym_val_nothing] = ACTIONS(931), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [aux_sym_val_number_token1] = ACTIONS(931), - [aux_sym_val_number_token2] = ACTIONS(931), - [aux_sym_val_number_token3] = ACTIONS(931), - [aux_sym_val_number_token4] = ACTIONS(931), - [aux_sym_val_number_token5] = ACTIONS(931), - [anon_sym_inf] = ACTIONS(931), - [anon_sym_DASHinf] = ACTIONS(931), - [anon_sym_NaN] = ACTIONS(931), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(931), - [anon_sym_0x] = ACTIONS(931), - [sym_val_date] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym__str_single_quotes] = ACTIONS(931), - [sym__str_back_ticks] = ACTIONS(931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(3), - }, - [220] = { - [sym_comment] = STATE(220), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(953), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [221] = { - [sym_comment] = STATE(221), - [ts_builtin_sym_end] = ACTIONS(897), - [anon_sym_export] = ACTIONS(895), - [anon_sym_alias] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_let_DASHenv] = ACTIONS(895), - [anon_sym_mut] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [sym_cmd_identifier] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_def] = ACTIONS(895), - [anon_sym_def_DASHenv] = ACTIONS(895), - [anon_sym_export_DASHenv] = ACTIONS(895), - [anon_sym_extern] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_use] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_loop] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_source] = ACTIONS(895), - [anon_sym_source_DASHenv] = ACTIONS(895), - [anon_sym_register] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_hide_DASHenv] = ACTIONS(895), - [anon_sym_overlay] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_where] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_not] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), - }, - [222] = { - [sym_comment] = STATE(222), + [251] = { + [sym_comment] = STATE(251), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -65712,103 +68544,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [223] = { - [sym_comment] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(953), - [anon_sym_and] = ACTIONS(955), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [224] = { - [sym_comment] = STATE(224), + [252] = { + [sym_comment] = STATE(252), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -65902,1053 +68639,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [225] = { - [sym_comment] = STATE(225), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_export] = ACTIONS(849), - [anon_sym_alias] = ACTIONS(849), - [anon_sym_let] = ACTIONS(849), - [anon_sym_let_DASHenv] = ACTIONS(849), - [anon_sym_mut] = ACTIONS(849), - [anon_sym_const] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [sym_cmd_identifier] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_def] = ACTIONS(849), - [anon_sym_def_DASHenv] = ACTIONS(849), - [anon_sym_export_DASHenv] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_use] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_error] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_match] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_source] = ACTIONS(849), - [anon_sym_source_DASHenv] = ACTIONS(849), - [anon_sym_register] = ACTIONS(849), - [anon_sym_hide] = ACTIONS(849), - [anon_sym_hide_DASHenv] = ACTIONS(849), - [anon_sym_overlay] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_where] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_not] = ACTIONS(849), - [anon_sym_DOT_DOT_LT] = ACTIONS(849), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(849), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [226] = { - [sym_comment] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_export] = ACTIONS(849), - [anon_sym_alias] = ACTIONS(849), - [anon_sym_let] = ACTIONS(849), - [anon_sym_let_DASHenv] = ACTIONS(849), - [anon_sym_mut] = ACTIONS(849), - [anon_sym_const] = ACTIONS(849), - [anon_sym_SEMI] = ACTIONS(849), - [sym_cmd_identifier] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_def] = ACTIONS(849), - [anon_sym_def_DASHenv] = ACTIONS(849), - [anon_sym_export_DASHenv] = ACTIONS(849), - [anon_sym_extern] = ACTIONS(849), - [anon_sym_module] = ACTIONS(849), - [anon_sym_use] = ACTIONS(849), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_error] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_break] = ACTIONS(849), - [anon_sym_continue] = ACTIONS(849), - [anon_sym_for] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_loop] = ACTIONS(849), - [anon_sym_while] = ACTIONS(849), - [anon_sym_do] = ACTIONS(849), - [anon_sym_if] = ACTIONS(849), - [anon_sym_match] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_try] = ACTIONS(849), - [anon_sym_return] = ACTIONS(849), - [anon_sym_source] = ACTIONS(849), - [anon_sym_source_DASHenv] = ACTIONS(849), - [anon_sym_register] = ACTIONS(849), - [anon_sym_hide] = ACTIONS(849), - [anon_sym_hide_DASHenv] = ACTIONS(849), - [anon_sym_overlay] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_where] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_not] = ACTIONS(849), - [anon_sym_DOT_DOT_LT] = ACTIONS(117), - [anon_sym_DOT_DOT] = ACTIONS(117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(117), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_CARET] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [227] = { - [sym_comment] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(889), - [anon_sym_export] = ACTIONS(887), - [anon_sym_alias] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_let_DASHenv] = ACTIONS(887), - [anon_sym_mut] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(887), - [sym_cmd_identifier] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_def] = ACTIONS(887), - [anon_sym_def_DASHenv] = ACTIONS(887), - [anon_sym_export_DASHenv] = ACTIONS(887), - [anon_sym_extern] = ACTIONS(887), - [anon_sym_module] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_error] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_in] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_try] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_source] = ACTIONS(887), - [anon_sym_source_DASHenv] = ACTIONS(887), - [anon_sym_register] = ACTIONS(887), - [anon_sym_hide] = ACTIONS(887), - [anon_sym_hide_DASHenv] = ACTIONS(887), - [anon_sym_overlay] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_STAR_STAR] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_SLASH] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_bit_DASHshl] = ACTIONS(887), - [anon_sym_bit_DASHshr] = ACTIONS(887), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_LT2] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_not_DASHin] = ACTIONS(887), - [anon_sym_starts_DASHwith] = ACTIONS(887), - [anon_sym_ends_DASHwith] = ACTIONS(887), - [anon_sym_EQ_TILDE] = ACTIONS(887), - [anon_sym_BANG_TILDE] = ACTIONS(887), - [anon_sym_bit_DASHand] = ACTIONS(887), - [anon_sym_bit_DASHxor] = ACTIONS(887), - [anon_sym_bit_DASHor] = ACTIONS(887), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(887), - [anon_sym_or] = ACTIONS(887), - [anon_sym_not] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_CARET] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(3), - }, - [228] = { - [sym_comment] = STATE(228), - [ts_builtin_sym_end] = ACTIONS(901), - [anon_sym_export] = ACTIONS(899), - [anon_sym_alias] = ACTIONS(899), - [anon_sym_let] = ACTIONS(899), - [anon_sym_let_DASHenv] = ACTIONS(899), - [anon_sym_mut] = ACTIONS(899), - [anon_sym_const] = ACTIONS(899), - [anon_sym_SEMI] = ACTIONS(899), - [sym_cmd_identifier] = ACTIONS(899), - [anon_sym_LF] = ACTIONS(901), - [anon_sym_def] = ACTIONS(899), - [anon_sym_def_DASHenv] = ACTIONS(899), - [anon_sym_export_DASHenv] = ACTIONS(899), - [anon_sym_extern] = ACTIONS(899), - [anon_sym_module] = ACTIONS(899), - [anon_sym_use] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_error] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_break] = ACTIONS(899), - [anon_sym_continue] = ACTIONS(899), - [anon_sym_for] = ACTIONS(899), - [anon_sym_in] = ACTIONS(899), - [anon_sym_loop] = ACTIONS(899), - [anon_sym_while] = ACTIONS(899), - [anon_sym_do] = ACTIONS(899), - [anon_sym_if] = ACTIONS(899), - [anon_sym_match] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_try] = ACTIONS(899), - [anon_sym_return] = ACTIONS(899), - [anon_sym_source] = ACTIONS(899), - [anon_sym_source_DASHenv] = ACTIONS(899), - [anon_sym_register] = ACTIONS(899), - [anon_sym_hide] = ACTIONS(899), - [anon_sym_hide_DASHenv] = ACTIONS(899), - [anon_sym_overlay] = ACTIONS(899), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_where] = ACTIONS(899), - [anon_sym_STAR_STAR] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_mod] = ACTIONS(899), - [anon_sym_SLASH_SLASH] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_bit_DASHshl] = ACTIONS(899), - [anon_sym_bit_DASHshr] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_LT2] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_not_DASHin] = ACTIONS(899), - [anon_sym_starts_DASHwith] = ACTIONS(899), - [anon_sym_ends_DASHwith] = ACTIONS(899), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(899), - [anon_sym_bit_DASHand] = ACTIONS(899), - [anon_sym_bit_DASHxor] = ACTIONS(899), - [anon_sym_bit_DASHor] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_not] = ACTIONS(899), - [anon_sym_DOT_DOT_LT] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [sym_val_nothing] = ACTIONS(899), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [aux_sym_val_number_token1] = ACTIONS(899), - [aux_sym_val_number_token2] = ACTIONS(899), - [aux_sym_val_number_token3] = ACTIONS(899), - [aux_sym_val_number_token4] = ACTIONS(899), - [aux_sym_val_number_token5] = ACTIONS(899), - [anon_sym_inf] = ACTIONS(899), - [anon_sym_DASHinf] = ACTIONS(899), - [anon_sym_NaN] = ACTIONS(899), - [anon_sym_0b] = ACTIONS(899), - [anon_sym_0o] = ACTIONS(899), - [anon_sym_0x] = ACTIONS(899), - [sym_val_date] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(899), - [sym__str_single_quotes] = ACTIONS(899), - [sym__str_back_ticks] = ACTIONS(899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), - [anon_sym_CARET] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(3), - }, - [229] = { - [sym_comment] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(871), - [anon_sym_export] = ACTIONS(869), - [anon_sym_alias] = ACTIONS(869), - [anon_sym_let] = ACTIONS(869), - [anon_sym_let_DASHenv] = ACTIONS(869), - [anon_sym_mut] = ACTIONS(869), - [anon_sym_const] = ACTIONS(869), - [anon_sym_SEMI] = ACTIONS(869), - [sym_cmd_identifier] = ACTIONS(869), - [anon_sym_LF] = ACTIONS(871), - [anon_sym_def] = ACTIONS(869), - [anon_sym_def_DASHenv] = ACTIONS(869), - [anon_sym_export_DASHenv] = ACTIONS(869), - [anon_sym_extern] = ACTIONS(869), - [anon_sym_module] = ACTIONS(869), - [anon_sym_use] = ACTIONS(869), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_error] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_break] = ACTIONS(869), - [anon_sym_continue] = ACTIONS(869), - [anon_sym_for] = ACTIONS(869), - [anon_sym_in] = ACTIONS(869), - [anon_sym_loop] = ACTIONS(869), - [anon_sym_while] = ACTIONS(869), - [anon_sym_do] = ACTIONS(869), - [anon_sym_if] = ACTIONS(869), - [anon_sym_match] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_try] = ACTIONS(869), - [anon_sym_return] = ACTIONS(869), - [anon_sym_source] = ACTIONS(869), - [anon_sym_source_DASHenv] = ACTIONS(869), - [anon_sym_register] = ACTIONS(869), - [anon_sym_hide] = ACTIONS(869), - [anon_sym_hide_DASHenv] = ACTIONS(869), - [anon_sym_overlay] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_where] = ACTIONS(869), - [anon_sym_STAR_STAR] = ACTIONS(869), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_mod] = ACTIONS(869), - [anon_sym_SLASH_SLASH] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(869), - [anon_sym_bit_DASHshr] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_not_DASHin] = ACTIONS(869), - [anon_sym_starts_DASHwith] = ACTIONS(869), - [anon_sym_ends_DASHwith] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [anon_sym_bit_DASHand] = ACTIONS(869), - [anon_sym_bit_DASHxor] = ACTIONS(869), - [anon_sym_bit_DASHor] = ACTIONS(869), - [anon_sym_and] = ACTIONS(869), - [anon_sym_xor] = ACTIONS(869), - [anon_sym_or] = ACTIONS(869), - [anon_sym_not] = ACTIONS(869), - [anon_sym_DOT_DOT_LT] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [sym_val_nothing] = ACTIONS(869), - [anon_sym_true] = ACTIONS(869), - [anon_sym_false] = ACTIONS(869), - [aux_sym_val_number_token1] = ACTIONS(869), - [aux_sym_val_number_token2] = ACTIONS(869), - [aux_sym_val_number_token3] = ACTIONS(869), - [aux_sym_val_number_token4] = ACTIONS(869), - [aux_sym_val_number_token5] = ACTIONS(869), - [anon_sym_inf] = ACTIONS(869), - [anon_sym_DASHinf] = ACTIONS(869), - [anon_sym_NaN] = ACTIONS(869), - [anon_sym_0b] = ACTIONS(869), - [anon_sym_0o] = ACTIONS(869), - [anon_sym_0x] = ACTIONS(869), - [sym_val_date] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym__str_single_quotes] = ACTIONS(869), - [sym__str_back_ticks] = ACTIONS(869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), - [anon_sym_CARET] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(3), - }, - [230] = { - [sym_comment] = STATE(230), - [ts_builtin_sym_end] = ACTIONS(859), - [anon_sym_export] = ACTIONS(857), - [anon_sym_alias] = ACTIONS(857), - [anon_sym_let] = ACTIONS(857), - [anon_sym_let_DASHenv] = ACTIONS(857), - [anon_sym_mut] = ACTIONS(857), - [anon_sym_const] = ACTIONS(857), - [anon_sym_SEMI] = ACTIONS(857), - [sym_cmd_identifier] = ACTIONS(857), - [anon_sym_LF] = ACTIONS(859), - [anon_sym_def] = ACTIONS(857), - [anon_sym_def_DASHenv] = ACTIONS(857), - [anon_sym_export_DASHenv] = ACTIONS(857), - [anon_sym_extern] = ACTIONS(857), - [anon_sym_module] = ACTIONS(857), - [anon_sym_use] = ACTIONS(857), - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_error] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_break] = ACTIONS(857), - [anon_sym_continue] = ACTIONS(857), - [anon_sym_for] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_loop] = ACTIONS(857), - [anon_sym_while] = ACTIONS(857), - [anon_sym_do] = ACTIONS(857), - [anon_sym_if] = ACTIONS(857), - [anon_sym_match] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_try] = ACTIONS(857), - [anon_sym_return] = ACTIONS(857), - [anon_sym_source] = ACTIONS(857), - [anon_sym_source_DASHenv] = ACTIONS(857), - [anon_sym_register] = ACTIONS(857), - [anon_sym_hide] = ACTIONS(857), - [anon_sym_hide_DASHenv] = ACTIONS(857), - [anon_sym_overlay] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_where] = ACTIONS(857), - [anon_sym_STAR_STAR] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_mod] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_bit_DASHshl] = ACTIONS(857), - [anon_sym_bit_DASHshr] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT2] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_not_DASHin] = ACTIONS(857), - [anon_sym_starts_DASHwith] = ACTIONS(857), - [anon_sym_ends_DASHwith] = ACTIONS(857), - [anon_sym_EQ_TILDE] = ACTIONS(857), - [anon_sym_BANG_TILDE] = ACTIONS(857), - [anon_sym_bit_DASHand] = ACTIONS(857), - [anon_sym_bit_DASHxor] = ACTIONS(857), - [anon_sym_bit_DASHor] = ACTIONS(857), - [anon_sym_and] = ACTIONS(857), - [anon_sym_xor] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_not] = ACTIONS(857), - [anon_sym_DOT_DOT_LT] = ACTIONS(857), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(857), - [sym_val_nothing] = ACTIONS(857), - [anon_sym_true] = ACTIONS(857), - [anon_sym_false] = ACTIONS(857), - [aux_sym_val_number_token1] = ACTIONS(857), - [aux_sym_val_number_token2] = ACTIONS(857), - [aux_sym_val_number_token3] = ACTIONS(857), - [aux_sym_val_number_token4] = ACTIONS(857), - [aux_sym_val_number_token5] = ACTIONS(857), - [anon_sym_inf] = ACTIONS(857), - [anon_sym_DASHinf] = ACTIONS(857), - [anon_sym_NaN] = ACTIONS(857), - [anon_sym_0b] = ACTIONS(857), - [anon_sym_0o] = ACTIONS(857), - [anon_sym_0x] = ACTIONS(857), - [sym_val_date] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym__str_single_quotes] = ACTIONS(857), - [sym__str_back_ticks] = ACTIONS(857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(857), - [anon_sym_CARET] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(3), - }, - [231] = { - [sym_comment] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(823), - [anon_sym_export] = ACTIONS(821), - [anon_sym_alias] = ACTIONS(821), - [anon_sym_let] = ACTIONS(821), - [anon_sym_let_DASHenv] = ACTIONS(821), - [anon_sym_mut] = ACTIONS(821), - [anon_sym_const] = ACTIONS(821), - [anon_sym_SEMI] = ACTIONS(821), - [sym_cmd_identifier] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(823), - [anon_sym_def] = ACTIONS(821), - [anon_sym_def_DASHenv] = ACTIONS(821), - [anon_sym_export_DASHenv] = ACTIONS(821), - [anon_sym_extern] = ACTIONS(821), - [anon_sym_module] = ACTIONS(821), - [anon_sym_use] = ACTIONS(821), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_error] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_break] = ACTIONS(821), - [anon_sym_continue] = ACTIONS(821), - [anon_sym_for] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_loop] = ACTIONS(821), - [anon_sym_while] = ACTIONS(821), - [anon_sym_do] = ACTIONS(821), - [anon_sym_if] = ACTIONS(821), - [anon_sym_match] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_try] = ACTIONS(821), - [anon_sym_return] = ACTIONS(821), - [anon_sym_source] = ACTIONS(821), - [anon_sym_source_DASHenv] = ACTIONS(821), - [anon_sym_register] = ACTIONS(821), - [anon_sym_hide] = ACTIONS(821), - [anon_sym_hide_DASHenv] = ACTIONS(821), - [anon_sym_overlay] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_where] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_mod] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_bit_DASHshl] = ACTIONS(821), - [anon_sym_bit_DASHshr] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT2] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_not_DASHin] = ACTIONS(821), - [anon_sym_starts_DASHwith] = ACTIONS(821), - [anon_sym_ends_DASHwith] = ACTIONS(821), - [anon_sym_EQ_TILDE] = ACTIONS(821), - [anon_sym_BANG_TILDE] = ACTIONS(821), - [anon_sym_bit_DASHand] = ACTIONS(821), - [anon_sym_bit_DASHxor] = ACTIONS(821), - [anon_sym_bit_DASHor] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_not] = ACTIONS(821), - [anon_sym_DOT_DOT_LT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(821), - [sym_val_nothing] = ACTIONS(821), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [aux_sym_val_number_token1] = ACTIONS(821), - [aux_sym_val_number_token2] = ACTIONS(821), - [aux_sym_val_number_token3] = ACTIONS(821), - [aux_sym_val_number_token4] = ACTIONS(821), - [aux_sym_val_number_token5] = ACTIONS(821), - [anon_sym_inf] = ACTIONS(821), - [anon_sym_DASHinf] = ACTIONS(821), - [anon_sym_NaN] = ACTIONS(821), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(821), - [anon_sym_0x] = ACTIONS(821), - [sym_val_date] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym__str_single_quotes] = ACTIONS(821), - [sym__str_back_ticks] = ACTIONS(821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(821), - [anon_sym_CARET] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(3), - }, - [232] = { - [sym_comment] = STATE(232), - [ts_builtin_sym_end] = ACTIONS(827), - [anon_sym_export] = ACTIONS(825), - [anon_sym_alias] = ACTIONS(825), - [anon_sym_let] = ACTIONS(825), - [anon_sym_let_DASHenv] = ACTIONS(825), - [anon_sym_mut] = ACTIONS(825), - [anon_sym_const] = ACTIONS(825), - [anon_sym_SEMI] = ACTIONS(825), - [sym_cmd_identifier] = ACTIONS(825), - [anon_sym_LF] = ACTIONS(827), - [anon_sym_def] = ACTIONS(825), - [anon_sym_def_DASHenv] = ACTIONS(825), - [anon_sym_export_DASHenv] = ACTIONS(825), - [anon_sym_extern] = ACTIONS(825), - [anon_sym_module] = ACTIONS(825), - [anon_sym_use] = ACTIONS(825), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_error] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_break] = ACTIONS(825), - [anon_sym_continue] = ACTIONS(825), - [anon_sym_for] = ACTIONS(825), - [anon_sym_in] = ACTIONS(825), - [anon_sym_loop] = ACTIONS(825), - [anon_sym_while] = ACTIONS(825), - [anon_sym_do] = ACTIONS(825), - [anon_sym_if] = ACTIONS(825), - [anon_sym_match] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_try] = ACTIONS(825), - [anon_sym_return] = ACTIONS(825), - [anon_sym_source] = ACTIONS(825), - [anon_sym_source_DASHenv] = ACTIONS(825), - [anon_sym_register] = ACTIONS(825), - [anon_sym_hide] = ACTIONS(825), - [anon_sym_hide_DASHenv] = ACTIONS(825), - [anon_sym_overlay] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_where] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_mod] = ACTIONS(825), - [anon_sym_SLASH_SLASH] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_bit_DASHshl] = ACTIONS(825), - [anon_sym_bit_DASHshr] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_not_DASHin] = ACTIONS(825), - [anon_sym_starts_DASHwith] = ACTIONS(825), - [anon_sym_ends_DASHwith] = ACTIONS(825), - [anon_sym_EQ_TILDE] = ACTIONS(825), - [anon_sym_BANG_TILDE] = ACTIONS(825), - [anon_sym_bit_DASHand] = ACTIONS(825), - [anon_sym_bit_DASHxor] = ACTIONS(825), - [anon_sym_bit_DASHor] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_not] = ACTIONS(825), - [anon_sym_DOT_DOT_LT] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(825), - [sym_val_nothing] = ACTIONS(825), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [aux_sym_val_number_token1] = ACTIONS(825), - [aux_sym_val_number_token2] = ACTIONS(825), - [aux_sym_val_number_token3] = ACTIONS(825), - [aux_sym_val_number_token4] = ACTIONS(825), - [aux_sym_val_number_token5] = ACTIONS(825), - [anon_sym_inf] = ACTIONS(825), - [anon_sym_DASHinf] = ACTIONS(825), - [anon_sym_NaN] = ACTIONS(825), - [anon_sym_0b] = ACTIONS(825), - [anon_sym_0o] = ACTIONS(825), - [anon_sym_0x] = ACTIONS(825), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(825), - [anon_sym_CARET] = ACTIONS(825), - [anon_sym_POUND] = ACTIONS(3), - }, - [233] = { - [sym_comment] = STATE(233), - [ts_builtin_sym_end] = ACTIONS(875), - [anon_sym_export] = ACTIONS(873), - [anon_sym_alias] = ACTIONS(873), - [anon_sym_let] = ACTIONS(873), - [anon_sym_let_DASHenv] = ACTIONS(873), - [anon_sym_mut] = ACTIONS(873), - [anon_sym_const] = ACTIONS(873), - [anon_sym_SEMI] = ACTIONS(873), - [sym_cmd_identifier] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(875), - [anon_sym_def] = ACTIONS(873), - [anon_sym_def_DASHenv] = ACTIONS(873), - [anon_sym_export_DASHenv] = ACTIONS(873), - [anon_sym_extern] = ACTIONS(873), - [anon_sym_module] = ACTIONS(873), - [anon_sym_use] = ACTIONS(873), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_error] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_break] = ACTIONS(873), - [anon_sym_continue] = ACTIONS(873), - [anon_sym_for] = ACTIONS(873), - [anon_sym_in] = ACTIONS(873), - [anon_sym_loop] = ACTIONS(873), - [anon_sym_while] = ACTIONS(873), - [anon_sym_do] = ACTIONS(873), - [anon_sym_if] = ACTIONS(873), - [anon_sym_match] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_try] = ACTIONS(873), - [anon_sym_return] = ACTIONS(873), - [anon_sym_source] = ACTIONS(873), - [anon_sym_source_DASHenv] = ACTIONS(873), - [anon_sym_register] = ACTIONS(873), - [anon_sym_hide] = ACTIONS(873), - [anon_sym_hide_DASHenv] = ACTIONS(873), - [anon_sym_overlay] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_where] = ACTIONS(873), - [anon_sym_STAR_STAR] = ACTIONS(873), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_bit_DASHshl] = ACTIONS(873), - [anon_sym_bit_DASHshr] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_not_DASHin] = ACTIONS(873), - [anon_sym_starts_DASHwith] = ACTIONS(873), - [anon_sym_ends_DASHwith] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [anon_sym_bit_DASHand] = ACTIONS(873), - [anon_sym_bit_DASHxor] = ACTIONS(873), - [anon_sym_bit_DASHor] = ACTIONS(873), - [anon_sym_and] = ACTIONS(873), - [anon_sym_xor] = ACTIONS(873), - [anon_sym_or] = ACTIONS(873), - [anon_sym_not] = ACTIONS(873), - [anon_sym_DOT_DOT_LT] = ACTIONS(873), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [sym_val_nothing] = ACTIONS(873), - [anon_sym_true] = ACTIONS(873), - [anon_sym_false] = ACTIONS(873), - [aux_sym_val_number_token1] = ACTIONS(873), - [aux_sym_val_number_token2] = ACTIONS(873), - [aux_sym_val_number_token3] = ACTIONS(873), - [aux_sym_val_number_token4] = ACTIONS(873), - [aux_sym_val_number_token5] = ACTIONS(873), - [anon_sym_inf] = ACTIONS(873), - [anon_sym_DASHinf] = ACTIONS(873), - [anon_sym_NaN] = ACTIONS(873), - [anon_sym_0b] = ACTIONS(873), - [anon_sym_0o] = ACTIONS(873), - [anon_sym_0x] = ACTIONS(873), - [sym_val_date] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym__str_single_quotes] = ACTIONS(873), - [sym__str_back_ticks] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), - [anon_sym_CARET] = ACTIONS(873), + [253] = { + [sym_comment] = STATE(253), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [234] = { - [sym_comment] = STATE(234), - [ts_builtin_sym_end] = ACTIONS(115), - [anon_sym_export] = ACTIONS(113), - [anon_sym_alias] = ACTIONS(113), - [anon_sym_let] = ACTIONS(113), - [anon_sym_let_DASHenv] = ACTIONS(113), - [anon_sym_mut] = ACTIONS(113), - [anon_sym_const] = ACTIONS(113), - [anon_sym_SEMI] = ACTIONS(113), - [sym_cmd_identifier] = ACTIONS(113), - [anon_sym_LF] = ACTIONS(115), - [anon_sym_def] = ACTIONS(113), - [anon_sym_def_DASHenv] = ACTIONS(113), - [anon_sym_export_DASHenv] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_module] = ACTIONS(113), - [anon_sym_use] = ACTIONS(113), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_error] = ACTIONS(113), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_break] = ACTIONS(113), - [anon_sym_continue] = ACTIONS(113), - [anon_sym_for] = ACTIONS(113), - [anon_sym_in] = ACTIONS(113), - [anon_sym_loop] = ACTIONS(113), - [anon_sym_while] = ACTIONS(113), - [anon_sym_do] = ACTIONS(113), - [anon_sym_if] = ACTIONS(113), - [anon_sym_match] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_try] = ACTIONS(113), - [anon_sym_return] = ACTIONS(113), - [anon_sym_source] = ACTIONS(113), - [anon_sym_source_DASHenv] = ACTIONS(113), - [anon_sym_register] = ACTIONS(113), - [anon_sym_hide] = ACTIONS(113), - [anon_sym_hide_DASHenv] = ACTIONS(113), - [anon_sym_overlay] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_where] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(113), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_bit_DASHshl] = ACTIONS(113), - [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(113), - [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(113), - [anon_sym_not_DASHin] = ACTIONS(113), - [anon_sym_starts_DASHwith] = ACTIONS(113), - [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(113), - [anon_sym_BANG_TILDE] = ACTIONS(113), - [anon_sym_bit_DASHand] = ACTIONS(113), - [anon_sym_bit_DASHxor] = ACTIONS(113), - [anon_sym_bit_DASHor] = ACTIONS(113), - [anon_sym_and] = ACTIONS(113), - [anon_sym_xor] = ACTIONS(113), - [anon_sym_or] = ACTIONS(113), - [anon_sym_not] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(113), - [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(113), - [sym_val_nothing] = ACTIONS(113), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [aux_sym_val_number_token1] = ACTIONS(113), - [aux_sym_val_number_token2] = ACTIONS(113), - [aux_sym_val_number_token3] = ACTIONS(113), - [aux_sym_val_number_token4] = ACTIONS(113), - [aux_sym_val_number_token5] = ACTIONS(113), - [anon_sym_inf] = ACTIONS(113), - [anon_sym_DASHinf] = ACTIONS(113), - [anon_sym_NaN] = ACTIONS(113), - [anon_sym_0b] = ACTIONS(113), - [anon_sym_0o] = ACTIONS(113), - [anon_sym_0x] = ACTIONS(113), - [sym_val_date] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_CARET] = ACTIONS(113), + [254] = { + [sym_comment] = STATE(254), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(955), + [anon_sym_BANG_TILDE] = ACTIONS(955), + [anon_sym_bit_DASHand] = ACTIONS(957), + [anon_sym_bit_DASHxor] = ACTIONS(959), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [235] = { - [sym_comment] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [255] = { + [sym_comment] = STATE(255), + [ts_builtin_sym_end] = ACTIONS(887), + [anon_sym_export] = ACTIONS(885), + [anon_sym_alias] = ACTIONS(885), + [anon_sym_let] = ACTIONS(885), + [anon_sym_let_DASHenv] = ACTIONS(885), + [anon_sym_mut] = ACTIONS(885), + [anon_sym_const] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(885), + [sym_cmd_identifier] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_def] = ACTIONS(885), + [anon_sym_def_DASHenv] = ACTIONS(885), + [anon_sym_export_DASHenv] = ACTIONS(885), + [anon_sym_extern] = ACTIONS(885), + [anon_sym_module] = ACTIONS(885), + [anon_sym_use] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_error] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_break] = ACTIONS(885), + [anon_sym_continue] = ACTIONS(885), + [anon_sym_for] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [anon_sym_loop] = ACTIONS(885), + [anon_sym_while] = ACTIONS(885), + [anon_sym_do] = ACTIONS(885), + [anon_sym_if] = ACTIONS(885), + [anon_sym_match] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_try] = ACTIONS(885), + [anon_sym_return] = ACTIONS(885), + [anon_sym_source] = ACTIONS(885), + [anon_sym_source_DASHenv] = ACTIONS(885), + [anon_sym_register] = ACTIONS(885), + [anon_sym_hide] = ACTIONS(885), + [anon_sym_hide_DASHenv] = ACTIONS(885), + [anon_sym_overlay] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_where] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_bit_DASHshl] = ACTIONS(885), + [anon_sym_bit_DASHshr] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_not_DASHin] = ACTIONS(885), + [anon_sym_starts_DASHwith] = ACTIONS(885), + [anon_sym_ends_DASHwith] = ACTIONS(885), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_bit_DASHand] = ACTIONS(885), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_not] = ACTIONS(885), + [anon_sym_DOT_DOT_LT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [sym_val_nothing] = ACTIONS(885), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [aux_sym_val_number_token1] = ACTIONS(885), + [aux_sym_val_number_token2] = ACTIONS(885), + [aux_sym_val_number_token3] = ACTIONS(885), + [aux_sym_val_number_token4] = ACTIONS(885), + [aux_sym_val_number_token5] = ACTIONS(885), + [anon_sym_inf] = ACTIONS(885), + [anon_sym_DASHinf] = ACTIONS(885), + [anon_sym_NaN] = ACTIONS(885), + [anon_sym_0b] = ACTIONS(885), + [anon_sym_0o] = ACTIONS(885), + [anon_sym_0x] = ACTIONS(885), + [sym_val_date] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [sym__str_single_quotes] = ACTIONS(885), + [sym__str_back_ticks] = ACTIONS(885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), + [anon_sym_CARET] = ACTIONS(885), [anon_sym_POUND] = ACTIONS(3), }, - [236] = { - [sym_comment] = STATE(236), + [256] = { + [sym_comment] = STATE(256), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -67042,483 +69019,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [237] = { - [sym_comment] = STATE(237), - [ts_builtin_sym_end] = ACTIONS(835), - [anon_sym_export] = ACTIONS(833), - [anon_sym_alias] = ACTIONS(833), - [anon_sym_let] = ACTIONS(833), - [anon_sym_let_DASHenv] = ACTIONS(833), - [anon_sym_mut] = ACTIONS(833), - [anon_sym_const] = ACTIONS(833), - [anon_sym_SEMI] = ACTIONS(833), - [sym_cmd_identifier] = ACTIONS(833), - [anon_sym_LF] = ACTIONS(835), - [anon_sym_def] = ACTIONS(833), - [anon_sym_def_DASHenv] = ACTIONS(833), - [anon_sym_export_DASHenv] = ACTIONS(833), - [anon_sym_extern] = ACTIONS(833), - [anon_sym_module] = ACTIONS(833), - [anon_sym_use] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(833), - [anon_sym_error] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(833), - [anon_sym_DASH] = ACTIONS(833), - [anon_sym_break] = ACTIONS(833), - [anon_sym_continue] = ACTIONS(833), - [anon_sym_for] = ACTIONS(833), - [anon_sym_in] = ACTIONS(833), - [anon_sym_loop] = ACTIONS(833), - [anon_sym_while] = ACTIONS(833), - [anon_sym_do] = ACTIONS(833), - [anon_sym_if] = ACTIONS(833), - [anon_sym_match] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_try] = ACTIONS(833), - [anon_sym_return] = ACTIONS(833), - [anon_sym_source] = ACTIONS(833), - [anon_sym_source_DASHenv] = ACTIONS(833), - [anon_sym_register] = ACTIONS(833), - [anon_sym_hide] = ACTIONS(833), - [anon_sym_hide_DASHenv] = ACTIONS(833), - [anon_sym_overlay] = ACTIONS(833), - [anon_sym_STAR] = ACTIONS(833), - [anon_sym_where] = ACTIONS(833), - [anon_sym_STAR_STAR] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_SLASH] = ACTIONS(833), - [anon_sym_mod] = ACTIONS(833), - [anon_sym_SLASH_SLASH] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_bit_DASHshl] = ACTIONS(833), - [anon_sym_bit_DASHshr] = ACTIONS(833), - [anon_sym_EQ_EQ] = ACTIONS(833), - [anon_sym_BANG_EQ] = ACTIONS(833), - [anon_sym_LT2] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(833), - [anon_sym_GT_EQ] = ACTIONS(833), - [anon_sym_not_DASHin] = ACTIONS(833), - [anon_sym_starts_DASHwith] = ACTIONS(833), - [anon_sym_ends_DASHwith] = ACTIONS(833), - [anon_sym_EQ_TILDE] = ACTIONS(833), - [anon_sym_BANG_TILDE] = ACTIONS(833), - [anon_sym_bit_DASHand] = ACTIONS(833), - [anon_sym_bit_DASHxor] = ACTIONS(833), - [anon_sym_bit_DASHor] = ACTIONS(833), - [anon_sym_and] = ACTIONS(833), - [anon_sym_xor] = ACTIONS(833), - [anon_sym_or] = ACTIONS(833), - [anon_sym_not] = ACTIONS(833), - [anon_sym_DOT_DOT_LT] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(833), - [sym_val_nothing] = ACTIONS(833), - [anon_sym_true] = ACTIONS(833), - [anon_sym_false] = ACTIONS(833), - [aux_sym_val_number_token1] = ACTIONS(833), - [aux_sym_val_number_token2] = ACTIONS(833), - [aux_sym_val_number_token3] = ACTIONS(833), - [aux_sym_val_number_token4] = ACTIONS(833), - [aux_sym_val_number_token5] = ACTIONS(833), - [anon_sym_inf] = ACTIONS(833), - [anon_sym_DASHinf] = ACTIONS(833), - [anon_sym_NaN] = ACTIONS(833), - [anon_sym_0b] = ACTIONS(833), - [anon_sym_0o] = ACTIONS(833), - [anon_sym_0x] = ACTIONS(833), - [sym_val_date] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(833), - [sym__str_single_quotes] = ACTIONS(833), - [sym__str_back_ticks] = ACTIONS(833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), - [anon_sym_CARET] = ACTIONS(833), - [anon_sym_POUND] = ACTIONS(3), - }, - [238] = { - [sym_comment] = STATE(238), - [ts_builtin_sym_end] = ACTIONS(839), - [anon_sym_export] = ACTIONS(837), - [anon_sym_alias] = ACTIONS(837), - [anon_sym_let] = ACTIONS(837), - [anon_sym_let_DASHenv] = ACTIONS(837), - [anon_sym_mut] = ACTIONS(837), - [anon_sym_const] = ACTIONS(837), - [anon_sym_SEMI] = ACTIONS(837), - [sym_cmd_identifier] = ACTIONS(837), - [anon_sym_LF] = ACTIONS(839), - [anon_sym_def] = ACTIONS(837), - [anon_sym_def_DASHenv] = ACTIONS(837), - [anon_sym_export_DASHenv] = ACTIONS(837), - [anon_sym_extern] = ACTIONS(837), - [anon_sym_module] = ACTIONS(837), - [anon_sym_use] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_error] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_break] = ACTIONS(837), - [anon_sym_continue] = ACTIONS(837), - [anon_sym_for] = ACTIONS(837), - [anon_sym_in] = ACTIONS(837), - [anon_sym_loop] = ACTIONS(837), - [anon_sym_while] = ACTIONS(837), - [anon_sym_do] = ACTIONS(837), - [anon_sym_if] = ACTIONS(837), - [anon_sym_match] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_try] = ACTIONS(837), - [anon_sym_return] = ACTIONS(837), - [anon_sym_source] = ACTIONS(837), - [anon_sym_source_DASHenv] = ACTIONS(837), - [anon_sym_register] = ACTIONS(837), - [anon_sym_hide] = ACTIONS(837), - [anon_sym_hide_DASHenv] = ACTIONS(837), - [anon_sym_overlay] = ACTIONS(837), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_where] = ACTIONS(837), - [anon_sym_STAR_STAR] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_mod] = ACTIONS(837), - [anon_sym_SLASH_SLASH] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_bit_DASHshl] = ACTIONS(837), - [anon_sym_bit_DASHshr] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_LT2] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_not_DASHin] = ACTIONS(837), - [anon_sym_starts_DASHwith] = ACTIONS(837), - [anon_sym_ends_DASHwith] = ACTIONS(837), - [anon_sym_EQ_TILDE] = ACTIONS(837), - [anon_sym_BANG_TILDE] = ACTIONS(837), - [anon_sym_bit_DASHand] = ACTIONS(837), - [anon_sym_bit_DASHxor] = ACTIONS(837), - [anon_sym_bit_DASHor] = ACTIONS(837), - [anon_sym_and] = ACTIONS(837), - [anon_sym_xor] = ACTIONS(837), - [anon_sym_or] = ACTIONS(837), - [anon_sym_not] = ACTIONS(837), - [anon_sym_DOT_DOT_LT] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(837), - [sym_val_nothing] = ACTIONS(837), - [anon_sym_true] = ACTIONS(837), - [anon_sym_false] = ACTIONS(837), - [aux_sym_val_number_token1] = ACTIONS(837), - [aux_sym_val_number_token2] = ACTIONS(837), - [aux_sym_val_number_token3] = ACTIONS(837), - [aux_sym_val_number_token4] = ACTIONS(837), - [aux_sym_val_number_token5] = ACTIONS(837), - [anon_sym_inf] = ACTIONS(837), - [anon_sym_DASHinf] = ACTIONS(837), - [anon_sym_NaN] = ACTIONS(837), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(837), - [anon_sym_0x] = ACTIONS(837), - [sym_val_date] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(837), - [sym__str_single_quotes] = ACTIONS(837), - [sym__str_back_ticks] = ACTIONS(837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3), - }, - [239] = { - [sym_comment] = STATE(239), - [ts_builtin_sym_end] = ACTIONS(843), - [anon_sym_export] = ACTIONS(841), - [anon_sym_alias] = ACTIONS(841), - [anon_sym_let] = ACTIONS(841), - [anon_sym_let_DASHenv] = ACTIONS(841), - [anon_sym_mut] = ACTIONS(841), - [anon_sym_const] = ACTIONS(841), - [anon_sym_SEMI] = ACTIONS(841), - [sym_cmd_identifier] = ACTIONS(841), - [anon_sym_LF] = ACTIONS(843), - [anon_sym_def] = ACTIONS(841), - [anon_sym_def_DASHenv] = ACTIONS(841), - [anon_sym_export_DASHenv] = ACTIONS(841), - [anon_sym_extern] = ACTIONS(841), - [anon_sym_module] = ACTIONS(841), - [anon_sym_use] = ACTIONS(841), - [anon_sym_LBRACK] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_error] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_break] = ACTIONS(841), - [anon_sym_continue] = ACTIONS(841), - [anon_sym_for] = ACTIONS(841), - [anon_sym_in] = ACTIONS(841), - [anon_sym_loop] = ACTIONS(841), - [anon_sym_while] = ACTIONS(841), - [anon_sym_do] = ACTIONS(841), - [anon_sym_if] = ACTIONS(841), - [anon_sym_match] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_try] = ACTIONS(841), - [anon_sym_return] = ACTIONS(841), - [anon_sym_source] = ACTIONS(841), - [anon_sym_source_DASHenv] = ACTIONS(841), - [anon_sym_register] = ACTIONS(841), - [anon_sym_hide] = ACTIONS(841), - [anon_sym_hide_DASHenv] = ACTIONS(841), - [anon_sym_overlay] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_where] = ACTIONS(841), - [anon_sym_STAR_STAR] = ACTIONS(841), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_mod] = ACTIONS(841), - [anon_sym_SLASH_SLASH] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_bit_DASHshl] = ACTIONS(841), - [anon_sym_bit_DASHshr] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(841), - [anon_sym_LT2] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_not_DASHin] = ACTIONS(841), - [anon_sym_starts_DASHwith] = ACTIONS(841), - [anon_sym_ends_DASHwith] = ACTIONS(841), - [anon_sym_EQ_TILDE] = ACTIONS(841), - [anon_sym_BANG_TILDE] = ACTIONS(841), - [anon_sym_bit_DASHand] = ACTIONS(841), - [anon_sym_bit_DASHxor] = ACTIONS(841), - [anon_sym_bit_DASHor] = ACTIONS(841), - [anon_sym_and] = ACTIONS(841), - [anon_sym_xor] = ACTIONS(841), - [anon_sym_or] = ACTIONS(841), - [anon_sym_not] = ACTIONS(841), - [anon_sym_DOT_DOT_LT] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(841), - [sym_val_nothing] = ACTIONS(841), - [anon_sym_true] = ACTIONS(841), - [anon_sym_false] = ACTIONS(841), - [aux_sym_val_number_token1] = ACTIONS(841), - [aux_sym_val_number_token2] = ACTIONS(841), - [aux_sym_val_number_token3] = ACTIONS(841), - [aux_sym_val_number_token4] = ACTIONS(841), - [aux_sym_val_number_token5] = ACTIONS(841), - [anon_sym_inf] = ACTIONS(841), - [anon_sym_DASHinf] = ACTIONS(841), - [anon_sym_NaN] = ACTIONS(841), - [anon_sym_0b] = ACTIONS(841), - [anon_sym_0o] = ACTIONS(841), - [anon_sym_0x] = ACTIONS(841), - [sym_val_date] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(841), - [sym__str_single_quotes] = ACTIONS(841), - [sym__str_back_ticks] = ACTIONS(841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), - [anon_sym_CARET] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(3), - }, - [240] = { - [sym_comment] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(847), - [anon_sym_export] = ACTIONS(845), - [anon_sym_alias] = ACTIONS(845), - [anon_sym_let] = ACTIONS(845), - [anon_sym_let_DASHenv] = ACTIONS(845), - [anon_sym_mut] = ACTIONS(845), - [anon_sym_const] = ACTIONS(845), - [anon_sym_SEMI] = ACTIONS(845), - [sym_cmd_identifier] = ACTIONS(845), - [anon_sym_LF] = ACTIONS(847), - [anon_sym_def] = ACTIONS(845), - [anon_sym_def_DASHenv] = ACTIONS(845), - [anon_sym_export_DASHenv] = ACTIONS(845), - [anon_sym_extern] = ACTIONS(845), - [anon_sym_module] = ACTIONS(845), - [anon_sym_use] = ACTIONS(845), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_error] = ACTIONS(845), - [anon_sym_GT] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_break] = ACTIONS(845), - [anon_sym_continue] = ACTIONS(845), - [anon_sym_for] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_loop] = ACTIONS(845), - [anon_sym_while] = ACTIONS(845), - [anon_sym_do] = ACTIONS(845), - [anon_sym_if] = ACTIONS(845), - [anon_sym_match] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_try] = ACTIONS(845), - [anon_sym_return] = ACTIONS(845), - [anon_sym_source] = ACTIONS(845), - [anon_sym_source_DASHenv] = ACTIONS(845), - [anon_sym_register] = ACTIONS(845), - [anon_sym_hide] = ACTIONS(845), - [anon_sym_hide_DASHenv] = ACTIONS(845), - [anon_sym_overlay] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(845), - [anon_sym_where] = ACTIONS(845), - [anon_sym_STAR_STAR] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(845), - [anon_sym_mod] = ACTIONS(845), - [anon_sym_SLASH_SLASH] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_bit_DASHshl] = ACTIONS(845), - [anon_sym_bit_DASHshr] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_LT2] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_not_DASHin] = ACTIONS(845), - [anon_sym_starts_DASHwith] = ACTIONS(845), - [anon_sym_ends_DASHwith] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_BANG_TILDE] = ACTIONS(845), - [anon_sym_bit_DASHand] = ACTIONS(845), - [anon_sym_bit_DASHxor] = ACTIONS(845), - [anon_sym_bit_DASHor] = ACTIONS(845), - [anon_sym_and] = ACTIONS(845), - [anon_sym_xor] = ACTIONS(845), - [anon_sym_or] = ACTIONS(845), - [anon_sym_not] = ACTIONS(845), - [anon_sym_DOT_DOT_LT] = ACTIONS(845), - [anon_sym_DOT_DOT] = ACTIONS(845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(845), - [sym_val_nothing] = ACTIONS(845), - [anon_sym_true] = ACTIONS(845), - [anon_sym_false] = ACTIONS(845), - [aux_sym_val_number_token1] = ACTIONS(845), - [aux_sym_val_number_token2] = ACTIONS(845), - [aux_sym_val_number_token3] = ACTIONS(845), - [aux_sym_val_number_token4] = ACTIONS(845), - [aux_sym_val_number_token5] = ACTIONS(845), - [anon_sym_inf] = ACTIONS(845), - [anon_sym_DASHinf] = ACTIONS(845), - [anon_sym_NaN] = ACTIONS(845), - [anon_sym_0b] = ACTIONS(845), - [anon_sym_0o] = ACTIONS(845), - [anon_sym_0x] = ACTIONS(845), - [sym_val_date] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [sym__str_single_quotes] = ACTIONS(845), - [sym__str_back_ticks] = ACTIONS(845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(845), - [anon_sym_CARET] = ACTIONS(845), - [anon_sym_POUND] = ACTIONS(3), - }, - [241] = { - [sym_comment] = STATE(241), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(953), - [anon_sym_and] = ACTIONS(955), - [anon_sym_xor] = ACTIONS(957), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [257] = { + [sym_comment] = STATE(257), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_export] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_let_DASHenv] = ACTIONS(103), + [anon_sym_mut] = ACTIONS(103), + [anon_sym_const] = ACTIONS(103), + [anon_sym_SEMI] = ACTIONS(103), + [sym_cmd_identifier] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_def] = ACTIONS(103), + [anon_sym_def_DASHenv] = ACTIONS(103), + [anon_sym_export_DASHenv] = ACTIONS(103), + [anon_sym_extern] = ACTIONS(103), + [anon_sym_module] = ACTIONS(103), + [anon_sym_use] = ACTIONS(103), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_error] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_break] = ACTIONS(103), + [anon_sym_continue] = ACTIONS(103), + [anon_sym_for] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_loop] = ACTIONS(103), + [anon_sym_while] = ACTIONS(103), + [anon_sym_do] = ACTIONS(103), + [anon_sym_if] = ACTIONS(103), + [anon_sym_match] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_try] = ACTIONS(103), + [anon_sym_return] = ACTIONS(103), + [anon_sym_source] = ACTIONS(103), + [anon_sym_source_DASHenv] = ACTIONS(103), + [anon_sym_register] = ACTIONS(103), + [anon_sym_hide] = ACTIONS(103), + [anon_sym_hide_DASHenv] = ACTIONS(103), + [anon_sym_overlay] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_where] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_not] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_CARET] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [242] = { - [sym_comment] = STATE(242), + [258] = { + [sym_comment] = STATE(258), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_export] = ACTIONS(829), [anon_sym_alias] = ACTIONS(829), @@ -67612,2008 +69209,566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [243] = { - [sym_comment] = STATE(243), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_export] = ACTIONS(861), - [anon_sym_alias] = ACTIONS(861), - [anon_sym_let] = ACTIONS(861), - [anon_sym_let_DASHenv] = ACTIONS(861), - [anon_sym_mut] = ACTIONS(861), - [anon_sym_const] = ACTIONS(861), - [anon_sym_SEMI] = ACTIONS(861), - [sym_cmd_identifier] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_def] = ACTIONS(861), - [anon_sym_def_DASHenv] = ACTIONS(861), - [anon_sym_export_DASHenv] = ACTIONS(861), - [anon_sym_extern] = ACTIONS(861), - [anon_sym_module] = ACTIONS(861), - [anon_sym_use] = ACTIONS(861), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_error] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_break] = ACTIONS(861), - [anon_sym_continue] = ACTIONS(861), - [anon_sym_for] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_loop] = ACTIONS(861), - [anon_sym_while] = ACTIONS(861), - [anon_sym_do] = ACTIONS(861), - [anon_sym_if] = ACTIONS(861), - [anon_sym_match] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_try] = ACTIONS(861), - [anon_sym_return] = ACTIONS(861), - [anon_sym_source] = ACTIONS(861), - [anon_sym_source_DASHenv] = ACTIONS(861), - [anon_sym_register] = ACTIONS(861), - [anon_sym_hide] = ACTIONS(861), - [anon_sym_hide_DASHenv] = ACTIONS(861), - [anon_sym_overlay] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_where] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_not] = ACTIONS(861), - [anon_sym_DOT_DOT_LT] = ACTIONS(861), - [anon_sym_DOT_DOT] = ACTIONS(861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [sym_val_nothing] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym_val_number_token1] = ACTIONS(861), - [aux_sym_val_number_token2] = ACTIONS(861), - [aux_sym_val_number_token3] = ACTIONS(861), - [aux_sym_val_number_token4] = ACTIONS(861), - [aux_sym_val_number_token5] = ACTIONS(861), - [anon_sym_inf] = ACTIONS(861), - [anon_sym_DASHinf] = ACTIONS(861), - [anon_sym_NaN] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_CARET] = ACTIONS(861), + [259] = { + [sym_comment] = STATE(259), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_export] = ACTIONS(801), + [anon_sym_alias] = ACTIONS(801), + [anon_sym_let] = ACTIONS(801), + [anon_sym_let_DASHenv] = ACTIONS(801), + [anon_sym_mut] = ACTIONS(801), + [anon_sym_const] = ACTIONS(801), + [anon_sym_SEMI] = ACTIONS(801), + [sym_cmd_identifier] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_def] = ACTIONS(801), + [anon_sym_def_DASHenv] = ACTIONS(801), + [anon_sym_export_DASHenv] = ACTIONS(801), + [anon_sym_extern] = ACTIONS(801), + [anon_sym_module] = ACTIONS(801), + [anon_sym_use] = ACTIONS(801), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_error] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(945), + [anon_sym_break] = ACTIONS(801), + [anon_sym_continue] = ACTIONS(801), + [anon_sym_for] = ACTIONS(801), + [anon_sym_in] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(801), + [anon_sym_while] = ACTIONS(801), + [anon_sym_do] = ACTIONS(801), + [anon_sym_if] = ACTIONS(801), + [anon_sym_match] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_try] = ACTIONS(801), + [anon_sym_return] = ACTIONS(801), + [anon_sym_source] = ACTIONS(801), + [anon_sym_source_DASHenv] = ACTIONS(801), + [anon_sym_register] = ACTIONS(801), + [anon_sym_hide] = ACTIONS(801), + [anon_sym_hide_DASHenv] = ACTIONS(801), + [anon_sym_overlay] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(949), + [anon_sym_where] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(951), + [anon_sym_PLUS_PLUS] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(949), + [anon_sym_mod] = ACTIONS(949), + [anon_sym_SLASH_SLASH] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(945), + [anon_sym_bit_DASHshl] = ACTIONS(953), + [anon_sym_bit_DASHshr] = ACTIONS(953), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_not_DASHin] = ACTIONS(947), + [anon_sym_starts_DASHwith] = ACTIONS(947), + [anon_sym_ends_DASHwith] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_not] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_CARET] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [244] = { - [sym_comment] = STATE(244), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(947), - [anon_sym_BANG_TILDE] = ACTIONS(947), - [anon_sym_bit_DASHand] = ACTIONS(949), - [anon_sym_bit_DASHxor] = ACTIONS(951), - [anon_sym_bit_DASHor] = ACTIONS(953), - [anon_sym_and] = ACTIONS(955), - [anon_sym_xor] = ACTIONS(957), - [anon_sym_or] = ACTIONS(959), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [260] = { + [sym_comment] = STATE(260), + [ts_builtin_sym_end] = ACTIONS(891), + [anon_sym_export] = ACTIONS(889), + [anon_sym_alias] = ACTIONS(889), + [anon_sym_let] = ACTIONS(889), + [anon_sym_let_DASHenv] = ACTIONS(889), + [anon_sym_mut] = ACTIONS(889), + [anon_sym_const] = ACTIONS(889), + [anon_sym_SEMI] = ACTIONS(889), + [sym_cmd_identifier] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_def] = ACTIONS(889), + [anon_sym_def_DASHenv] = ACTIONS(889), + [anon_sym_export_DASHenv] = ACTIONS(889), + [anon_sym_extern] = ACTIONS(889), + [anon_sym_module] = ACTIONS(889), + [anon_sym_use] = ACTIONS(889), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_error] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_break] = ACTIONS(889), + [anon_sym_continue] = ACTIONS(889), + [anon_sym_for] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [anon_sym_loop] = ACTIONS(889), + [anon_sym_while] = ACTIONS(889), + [anon_sym_do] = ACTIONS(889), + [anon_sym_if] = ACTIONS(889), + [anon_sym_match] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_try] = ACTIONS(889), + [anon_sym_return] = ACTIONS(889), + [anon_sym_source] = ACTIONS(889), + [anon_sym_source_DASHenv] = ACTIONS(889), + [anon_sym_register] = ACTIONS(889), + [anon_sym_hide] = ACTIONS(889), + [anon_sym_hide_DASHenv] = ACTIONS(889), + [anon_sym_overlay] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_where] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_SLASH_SLASH] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_bit_DASHshl] = ACTIONS(889), + [anon_sym_bit_DASHshr] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT2] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_not_DASHin] = ACTIONS(889), + [anon_sym_starts_DASHwith] = ACTIONS(889), + [anon_sym_ends_DASHwith] = ACTIONS(889), + [anon_sym_EQ_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_bit_DASHand] = ACTIONS(889), + [anon_sym_bit_DASHxor] = ACTIONS(889), + [anon_sym_bit_DASHor] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_not] = ACTIONS(889), + [anon_sym_DOT_DOT_LT] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [sym_val_nothing] = ACTIONS(889), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), + [aux_sym_val_number_token1] = ACTIONS(889), + [aux_sym_val_number_token2] = ACTIONS(889), + [aux_sym_val_number_token3] = ACTIONS(889), + [aux_sym_val_number_token4] = ACTIONS(889), + [aux_sym_val_number_token5] = ACTIONS(889), + [anon_sym_inf] = ACTIONS(889), + [anon_sym_DASHinf] = ACTIONS(889), + [anon_sym_NaN] = ACTIONS(889), + [anon_sym_0b] = ACTIONS(889), + [anon_sym_0o] = ACTIONS(889), + [anon_sym_0x] = ACTIONS(889), + [sym_val_date] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym__str_single_quotes] = ACTIONS(889), + [sym__str_back_ticks] = ACTIONS(889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), + [anon_sym_CARET] = ACTIONS(889), [anon_sym_POUND] = ACTIONS(3), }, - [245] = { - [sym_comment] = STATE(245), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_export] = ACTIONS(829), - [anon_sym_alias] = ACTIONS(829), - [anon_sym_let] = ACTIONS(829), - [anon_sym_let_DASHenv] = ACTIONS(829), - [anon_sym_mut] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [sym_cmd_identifier] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_def] = ACTIONS(829), - [anon_sym_def_DASHenv] = ACTIONS(829), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_error] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_source] = ACTIONS(829), - [anon_sym_source_DASHenv] = ACTIONS(829), - [anon_sym_register] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_where] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_not] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), + [261] = { + [sym_comment] = STATE(261), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_export] = ACTIONS(893), + [anon_sym_alias] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_let_DASHenv] = ACTIONS(893), + [anon_sym_mut] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(893), + [sym_cmd_identifier] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_def] = ACTIONS(893), + [anon_sym_def_DASHenv] = ACTIONS(893), + [anon_sym_export_DASHenv] = ACTIONS(893), + [anon_sym_extern] = ACTIONS(893), + [anon_sym_module] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_error] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [anon_sym_do] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_try] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_source] = ACTIONS(893), + [anon_sym_source_DASHenv] = ACTIONS(893), + [anon_sym_register] = ACTIONS(893), + [anon_sym_hide] = ACTIONS(893), + [anon_sym_hide_DASHenv] = ACTIONS(893), + [anon_sym_overlay] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_not] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [sym_val_nothing] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym_val_number_token1] = ACTIONS(893), + [aux_sym_val_number_token2] = ACTIONS(893), + [aux_sym_val_number_token3] = ACTIONS(893), + [aux_sym_val_number_token4] = ACTIONS(893), + [aux_sym_val_number_token5] = ACTIONS(893), + [anon_sym_inf] = ACTIONS(893), + [anon_sym_DASHinf] = ACTIONS(893), + [anon_sym_NaN] = ACTIONS(893), + [anon_sym_0b] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), [anon_sym_POUND] = ACTIONS(3), }, - [246] = { - [sym_comment] = STATE(246), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_export] = ACTIONS(829), - [anon_sym_alias] = ACTIONS(829), - [anon_sym_let] = ACTIONS(829), - [anon_sym_let_DASHenv] = ACTIONS(829), - [anon_sym_mut] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [sym_cmd_identifier] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_def] = ACTIONS(829), - [anon_sym_def_DASHenv] = ACTIONS(829), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_error] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_source] = ACTIONS(829), - [anon_sym_source_DASHenv] = ACTIONS(829), - [anon_sym_register] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_where] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_not] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), + [262] = { + [sym_path] = STATE(316), + [sym_comment] = STATE(262), + [aux_sym_cell_path_repeat1] = STATE(270), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_err_GT] = ACTIONS(740), + [anon_sym_out_GT] = ACTIONS(740), + [anon_sym_e_GT] = ACTIONS(740), + [anon_sym_o_GT] = ACTIONS(740), + [anon_sym_err_PLUSout_GT] = ACTIONS(740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(740), + [anon_sym_o_PLUSe_GT] = ACTIONS(740), + [anon_sym_e_PLUSo_GT] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), + [aux_sym_unquoted_token1] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [247] = { - [sym_comment] = STATE(247), - [ts_builtin_sym_end] = ACTIONS(881), - [anon_sym_export] = ACTIONS(879), - [anon_sym_alias] = ACTIONS(879), - [anon_sym_let] = ACTIONS(879), - [anon_sym_let_DASHenv] = ACTIONS(879), - [anon_sym_mut] = ACTIONS(879), - [anon_sym_const] = ACTIONS(879), - [anon_sym_SEMI] = ACTIONS(879), - [sym_cmd_identifier] = ACTIONS(879), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_def] = ACTIONS(879), - [anon_sym_def_DASHenv] = ACTIONS(879), - [anon_sym_export_DASHenv] = ACTIONS(879), - [anon_sym_extern] = ACTIONS(879), - [anon_sym_module] = ACTIONS(879), - [anon_sym_use] = ACTIONS(879), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_error] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_break] = ACTIONS(879), - [anon_sym_continue] = ACTIONS(879), - [anon_sym_for] = ACTIONS(879), - [anon_sym_in] = ACTIONS(879), - [anon_sym_loop] = ACTIONS(879), - [anon_sym_while] = ACTIONS(879), - [anon_sym_do] = ACTIONS(879), - [anon_sym_if] = ACTIONS(879), - [anon_sym_match] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_try] = ACTIONS(879), - [anon_sym_return] = ACTIONS(879), - [anon_sym_source] = ACTIONS(879), - [anon_sym_source_DASHenv] = ACTIONS(879), - [anon_sym_register] = ACTIONS(879), - [anon_sym_hide] = ACTIONS(879), - [anon_sym_hide_DASHenv] = ACTIONS(879), - [anon_sym_overlay] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_where] = ACTIONS(879), - [anon_sym_STAR_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_bit_DASHshl] = ACTIONS(879), - [anon_sym_bit_DASHshr] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_not_DASHin] = ACTIONS(879), - [anon_sym_starts_DASHwith] = ACTIONS(879), - [anon_sym_ends_DASHwith] = ACTIONS(879), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(879), - [anon_sym_bit_DASHxor] = ACTIONS(879), - [anon_sym_bit_DASHor] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_not] = ACTIONS(879), - [anon_sym_DOT_DOT_LT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(879), - [sym_val_nothing] = ACTIONS(879), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [aux_sym_val_number_token1] = ACTIONS(879), - [aux_sym_val_number_token2] = ACTIONS(879), - [aux_sym_val_number_token3] = ACTIONS(879), - [aux_sym_val_number_token4] = ACTIONS(879), - [aux_sym_val_number_token5] = ACTIONS(879), - [anon_sym_inf] = ACTIONS(879), - [anon_sym_DASHinf] = ACTIONS(879), - [anon_sym_NaN] = ACTIONS(879), - [anon_sym_0b] = ACTIONS(879), - [anon_sym_0o] = ACTIONS(879), - [anon_sym_0x] = ACTIONS(879), - [sym_val_date] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(879), - [sym__str_single_quotes] = ACTIONS(879), - [sym__str_back_ticks] = ACTIONS(879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), - [anon_sym_CARET] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3), + [263] = { + [sym_pipeline_parenthesized] = STATE(715), + [sym_pipeline_parenthesized_last] = STATE(3410), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(263), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [248] = { - [sym_comment] = STATE(248), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(939), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_bit_DASHshl] = ACTIONS(945), - [anon_sym_bit_DASHshr] = ACTIONS(945), - [anon_sym_EQ_EQ] = ACTIONS(935), - [anon_sym_BANG_EQ] = ACTIONS(935), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(935), - [anon_sym_not_DASHin] = ACTIONS(939), - [anon_sym_starts_DASHwith] = ACTIONS(939), - [anon_sym_ends_DASHwith] = ACTIONS(939), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), + [264] = { + [sym_cell_path] = STATE(344), + [sym_path] = STATE(268), + [sym_comment] = STATE(264), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_in] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_SLASH_SLASH] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_bit_DASHshl] = ACTIONS(707), + [anon_sym_bit_DASHshr] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_LT2] = ACTIONS(707), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_not_DASHin] = ACTIONS(707), + [anon_sym_starts_DASHwith] = ACTIONS(707), + [anon_sym_ends_DASHwith] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_BANG_TILDE] = ACTIONS(707), + [anon_sym_bit_DASHand] = ACTIONS(707), + [anon_sym_bit_DASHxor] = ACTIONS(707), + [anon_sym_bit_DASHor] = ACTIONS(707), + [anon_sym_and] = ACTIONS(707), + [anon_sym_xor] = ACTIONS(707), + [anon_sym_or] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_err_GT] = ACTIONS(707), + [anon_sym_out_GT] = ACTIONS(707), + [anon_sym_e_GT] = ACTIONS(707), + [anon_sym_o_GT] = ACTIONS(707), + [anon_sym_err_PLUSout_GT] = ACTIONS(707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(707), + [anon_sym_o_PLUSe_GT] = ACTIONS(707), + [anon_sym_e_PLUSo_GT] = ACTIONS(707), + [sym_short_flag] = ACTIONS(707), + [aux_sym_unquoted_token1] = ACTIONS(707), [anon_sym_POUND] = ACTIONS(3), }, - [249] = { - [sym_comment] = STATE(249), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_export] = ACTIONS(829), - [anon_sym_alias] = ACTIONS(829), - [anon_sym_let] = ACTIONS(829), - [anon_sym_let_DASHenv] = ACTIONS(829), - [anon_sym_mut] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [sym_cmd_identifier] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_def] = ACTIONS(829), - [anon_sym_def_DASHenv] = ACTIONS(829), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_error] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_source] = ACTIONS(829), - [anon_sym_source_DASHenv] = ACTIONS(829), - [anon_sym_register] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_where] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_not] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), - }, - [250] = { - [sym_comment] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(893), - [anon_sym_export] = ACTIONS(891), - [anon_sym_alias] = ACTIONS(891), - [anon_sym_let] = ACTIONS(891), - [anon_sym_let_DASHenv] = ACTIONS(891), - [anon_sym_mut] = ACTIONS(891), - [anon_sym_const] = ACTIONS(891), - [anon_sym_SEMI] = ACTIONS(891), - [sym_cmd_identifier] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(893), - [anon_sym_def] = ACTIONS(891), - [anon_sym_def_DASHenv] = ACTIONS(891), - [anon_sym_export_DASHenv] = ACTIONS(891), - [anon_sym_extern] = ACTIONS(891), - [anon_sym_module] = ACTIONS(891), - [anon_sym_use] = ACTIONS(891), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_error] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_break] = ACTIONS(891), - [anon_sym_continue] = ACTIONS(891), - [anon_sym_for] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_loop] = ACTIONS(891), - [anon_sym_while] = ACTIONS(891), - [anon_sym_do] = ACTIONS(891), - [anon_sym_if] = ACTIONS(891), - [anon_sym_match] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_try] = ACTIONS(891), - [anon_sym_return] = ACTIONS(891), - [anon_sym_source] = ACTIONS(891), - [anon_sym_source_DASHenv] = ACTIONS(891), - [anon_sym_register] = ACTIONS(891), - [anon_sym_hide] = ACTIONS(891), - [anon_sym_hide_DASHenv] = ACTIONS(891), - [anon_sym_overlay] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_where] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_not] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [sym_val_nothing] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [aux_sym_val_number_token1] = ACTIONS(891), - [aux_sym_val_number_token2] = ACTIONS(891), - [aux_sym_val_number_token3] = ACTIONS(891), - [aux_sym_val_number_token4] = ACTIONS(891), - [aux_sym_val_number_token5] = ACTIONS(891), - [anon_sym_inf] = ACTIONS(891), - [anon_sym_DASHinf] = ACTIONS(891), - [anon_sym_NaN] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(891), - [anon_sym_0o] = ACTIONS(891), - [anon_sym_0x] = ACTIONS(891), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_CARET] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), - }, - [251] = { - [sym_comment] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_export] = ACTIONS(793), - [anon_sym_alias] = ACTIONS(793), - [anon_sym_let] = ACTIONS(793), - [anon_sym_let_DASHenv] = ACTIONS(793), - [anon_sym_mut] = ACTIONS(793), - [anon_sym_const] = ACTIONS(793), - [anon_sym_SEMI] = ACTIONS(793), - [sym_cmd_identifier] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_def] = ACTIONS(793), - [anon_sym_def_DASHenv] = ACTIONS(793), - [anon_sym_export_DASHenv] = ACTIONS(793), - [anon_sym_extern] = ACTIONS(793), - [anon_sym_module] = ACTIONS(793), - [anon_sym_use] = ACTIONS(793), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_error] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_break] = ACTIONS(793), - [anon_sym_continue] = ACTIONS(793), - [anon_sym_for] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_loop] = ACTIONS(793), - [anon_sym_while] = ACTIONS(793), - [anon_sym_do] = ACTIONS(793), - [anon_sym_if] = ACTIONS(793), - [anon_sym_match] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_try] = ACTIONS(793), - [anon_sym_return] = ACTIONS(793), - [anon_sym_source] = ACTIONS(793), - [anon_sym_source_DASHenv] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_hide] = ACTIONS(793), - [anon_sym_hide_DASHenv] = ACTIONS(793), - [anon_sym_overlay] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(941), - [anon_sym_where] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(943), - [anon_sym_PLUS_PLUS] = ACTIONS(943), - [anon_sym_SLASH] = ACTIONS(941), - [anon_sym_mod] = ACTIONS(941), - [anon_sym_SLASH_SLASH] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_not] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_CARET] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [252] = { - [sym_comment] = STATE(252), - [ts_builtin_sym_end] = ACTIONS(855), - [anon_sym_export] = ACTIONS(853), - [anon_sym_alias] = ACTIONS(853), - [anon_sym_let] = ACTIONS(853), - [anon_sym_let_DASHenv] = ACTIONS(853), - [anon_sym_mut] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(853), - [sym_cmd_identifier] = ACTIONS(853), - [anon_sym_LF] = ACTIONS(855), - [anon_sym_def] = ACTIONS(853), - [anon_sym_def_DASHenv] = ACTIONS(853), - [anon_sym_export_DASHenv] = ACTIONS(853), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_module] = ACTIONS(853), - [anon_sym_use] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_error] = ACTIONS(853), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_in] = ACTIONS(853), - [anon_sym_loop] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_match] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_try] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_source] = ACTIONS(853), - [anon_sym_source_DASHenv] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_hide_DASHenv] = ACTIONS(853), - [anon_sym_overlay] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_where] = ACTIONS(853), - [anon_sym_STAR_STAR] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_mod] = ACTIONS(853), - [anon_sym_SLASH_SLASH] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_bit_DASHshl] = ACTIONS(853), - [anon_sym_bit_DASHshr] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT2] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_not_DASHin] = ACTIONS(853), - [anon_sym_starts_DASHwith] = ACTIONS(853), - [anon_sym_ends_DASHwith] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_BANG_TILDE] = ACTIONS(853), - [anon_sym_bit_DASHand] = ACTIONS(853), - [anon_sym_bit_DASHxor] = ACTIONS(853), - [anon_sym_bit_DASHor] = ACTIONS(853), - [anon_sym_and] = ACTIONS(853), - [anon_sym_xor] = ACTIONS(853), - [anon_sym_or] = ACTIONS(853), - [anon_sym_not] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [sym_val_nothing] = ACTIONS(853), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [aux_sym_val_number_token1] = ACTIONS(853), - [aux_sym_val_number_token2] = ACTIONS(853), - [aux_sym_val_number_token3] = ACTIONS(853), - [aux_sym_val_number_token4] = ACTIONS(853), - [aux_sym_val_number_token5] = ACTIONS(853), - [anon_sym_inf] = ACTIONS(853), - [anon_sym_DASHinf] = ACTIONS(853), - [anon_sym_NaN] = ACTIONS(853), - [anon_sym_0b] = ACTIONS(853), - [anon_sym_0o] = ACTIONS(853), - [anon_sym_0x] = ACTIONS(853), - [sym_val_date] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym__str_single_quotes] = ACTIONS(853), - [sym__str_back_ticks] = ACTIONS(853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_POUND] = ACTIONS(3), - }, - [253] = { - [sym_comment] = STATE(253), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_export] = ACTIONS(903), - [anon_sym_alias] = ACTIONS(903), - [anon_sym_let] = ACTIONS(903), - [anon_sym_let_DASHenv] = ACTIONS(903), - [anon_sym_mut] = ACTIONS(903), - [anon_sym_const] = ACTIONS(903), - [anon_sym_SEMI] = ACTIONS(903), - [sym_cmd_identifier] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_def] = ACTIONS(903), - [anon_sym_def_DASHenv] = ACTIONS(903), - [anon_sym_export_DASHenv] = ACTIONS(903), - [anon_sym_extern] = ACTIONS(903), - [anon_sym_module] = ACTIONS(903), - [anon_sym_use] = ACTIONS(903), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_error] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(903), - [anon_sym_for] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_loop] = ACTIONS(903), - [anon_sym_while] = ACTIONS(903), - [anon_sym_do] = ACTIONS(903), - [anon_sym_if] = ACTIONS(903), - [anon_sym_match] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_try] = ACTIONS(903), - [anon_sym_return] = ACTIONS(903), - [anon_sym_source] = ACTIONS(903), - [anon_sym_source_DASHenv] = ACTIONS(903), - [anon_sym_register] = ACTIONS(903), - [anon_sym_hide] = ACTIONS(903), - [anon_sym_hide_DASHenv] = ACTIONS(903), - [anon_sym_overlay] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_where] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_not] = ACTIONS(903), - [anon_sym_DOT_DOT_LT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [sym_val_nothing] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym_val_number_token1] = ACTIONS(903), - [aux_sym_val_number_token2] = ACTIONS(903), - [aux_sym_val_number_token3] = ACTIONS(903), - [aux_sym_val_number_token4] = ACTIONS(903), - [aux_sym_val_number_token5] = ACTIONS(903), - [anon_sym_inf] = ACTIONS(903), - [anon_sym_DASHinf] = ACTIONS(903), - [anon_sym_NaN] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_CARET] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(3), - }, - [254] = { - [sym_comment] = STATE(254), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_export] = ACTIONS(907), - [anon_sym_alias] = ACTIONS(907), - [anon_sym_let] = ACTIONS(907), - [anon_sym_let_DASHenv] = ACTIONS(907), - [anon_sym_mut] = ACTIONS(907), - [anon_sym_const] = ACTIONS(907), - [anon_sym_SEMI] = ACTIONS(907), - [sym_cmd_identifier] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_def] = ACTIONS(907), - [anon_sym_def_DASHenv] = ACTIONS(907), - [anon_sym_export_DASHenv] = ACTIONS(907), - [anon_sym_extern] = ACTIONS(907), - [anon_sym_module] = ACTIONS(907), - [anon_sym_use] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_error] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_break] = ACTIONS(907), - [anon_sym_continue] = ACTIONS(907), - [anon_sym_for] = ACTIONS(907), - [anon_sym_in] = ACTIONS(907), - [anon_sym_loop] = ACTIONS(907), - [anon_sym_while] = ACTIONS(907), - [anon_sym_do] = ACTIONS(907), - [anon_sym_if] = ACTIONS(907), - [anon_sym_match] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_try] = ACTIONS(907), - [anon_sym_return] = ACTIONS(907), - [anon_sym_source] = ACTIONS(907), - [anon_sym_source_DASHenv] = ACTIONS(907), - [anon_sym_register] = ACTIONS(907), - [anon_sym_hide] = ACTIONS(907), - [anon_sym_hide_DASHenv] = ACTIONS(907), - [anon_sym_overlay] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_where] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_bit_DASHshl] = ACTIONS(907), - [anon_sym_bit_DASHshr] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_LT2] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_not_DASHin] = ACTIONS(907), - [anon_sym_starts_DASHwith] = ACTIONS(907), - [anon_sym_ends_DASHwith] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_BANG_TILDE] = ACTIONS(907), - [anon_sym_bit_DASHand] = ACTIONS(907), - [anon_sym_bit_DASHxor] = ACTIONS(907), - [anon_sym_bit_DASHor] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_not] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [sym_val_nothing] = ACTIONS(907), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [aux_sym_val_number_token1] = ACTIONS(907), - [aux_sym_val_number_token2] = ACTIONS(907), - [aux_sym_val_number_token3] = ACTIONS(907), - [aux_sym_val_number_token4] = ACTIONS(907), - [aux_sym_val_number_token5] = ACTIONS(907), - [anon_sym_inf] = ACTIONS(907), - [anon_sym_DASHinf] = ACTIONS(907), - [anon_sym_NaN] = ACTIONS(907), - [anon_sym_0b] = ACTIONS(907), - [anon_sym_0o] = ACTIONS(907), - [anon_sym_0x] = ACTIONS(907), - [sym_val_date] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__str_single_quotes] = ACTIONS(907), - [sym__str_back_ticks] = ACTIONS(907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), - [anon_sym_CARET] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(3), - }, - [255] = { - [sym_comment] = STATE(255), - [ts_builtin_sym_end] = ACTIONS(925), - [anon_sym_export] = ACTIONS(923), - [anon_sym_alias] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_let_DASHenv] = ACTIONS(923), - [anon_sym_mut] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(923), - [sym_cmd_identifier] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_def] = ACTIONS(923), - [anon_sym_def_DASHenv] = ACTIONS(923), - [anon_sym_export_DASHenv] = ACTIONS(923), - [anon_sym_extern] = ACTIONS(923), - [anon_sym_module] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_error] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [anon_sym_do] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_try] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_source] = ACTIONS(923), - [anon_sym_source_DASHenv] = ACTIONS(923), - [anon_sym_register] = ACTIONS(923), - [anon_sym_hide] = ACTIONS(923), - [anon_sym_hide_DASHenv] = ACTIONS(923), - [anon_sym_overlay] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_not] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [sym_val_nothing] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym_val_number_token1] = ACTIONS(923), - [aux_sym_val_number_token2] = ACTIONS(923), - [aux_sym_val_number_token3] = ACTIONS(923), - [aux_sym_val_number_token4] = ACTIONS(923), - [aux_sym_val_number_token5] = ACTIONS(923), - [anon_sym_inf] = ACTIONS(923), - [anon_sym_DASHinf] = ACTIONS(923), - [anon_sym_NaN] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [256] = { - [sym_comment] = STATE(256), - [ts_builtin_sym_end] = ACTIONS(929), - [anon_sym_export] = ACTIONS(927), - [anon_sym_alias] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_let_DASHenv] = ACTIONS(927), - [anon_sym_mut] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [sym_cmd_identifier] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_def] = ACTIONS(927), - [anon_sym_def_DASHenv] = ACTIONS(927), - [anon_sym_export_DASHenv] = ACTIONS(927), - [anon_sym_extern] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_error] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_source] = ACTIONS(927), - [anon_sym_source_DASHenv] = ACTIONS(927), - [anon_sym_register] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_hide_DASHenv] = ACTIONS(927), - [anon_sym_overlay] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_not] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [257] = { - [sym_comment] = STATE(257), - [ts_builtin_sym_end] = ACTIONS(929), - [anon_sym_export] = ACTIONS(927), - [anon_sym_alias] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_let_DASHenv] = ACTIONS(927), - [anon_sym_mut] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(927), - [sym_cmd_identifier] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_def] = ACTIONS(927), - [anon_sym_def_DASHenv] = ACTIONS(927), - [anon_sym_export_DASHenv] = ACTIONS(927), - [anon_sym_extern] = ACTIONS(927), - [anon_sym_module] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_error] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [anon_sym_do] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_try] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_source] = ACTIONS(927), - [anon_sym_source_DASHenv] = ACTIONS(927), - [anon_sym_register] = ACTIONS(927), - [anon_sym_hide] = ACTIONS(927), - [anon_sym_hide_DASHenv] = ACTIONS(927), - [anon_sym_overlay] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_not] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [258] = { - [sym_comment] = STATE(258), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_export] = ACTIONS(829), - [anon_sym_alias] = ACTIONS(829), - [anon_sym_let] = ACTIONS(829), - [anon_sym_let_DASHenv] = ACTIONS(829), - [anon_sym_mut] = ACTIONS(829), - [anon_sym_const] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(829), - [sym_cmd_identifier] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_def] = ACTIONS(829), - [anon_sym_def_DASHenv] = ACTIONS(829), - [anon_sym_export_DASHenv] = ACTIONS(829), - [anon_sym_extern] = ACTIONS(829), - [anon_sym_module] = ACTIONS(829), - [anon_sym_use] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_error] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_break] = ACTIONS(829), - [anon_sym_continue] = ACTIONS(829), - [anon_sym_for] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(829), - [anon_sym_while] = ACTIONS(829), - [anon_sym_do] = ACTIONS(829), - [anon_sym_if] = ACTIONS(829), - [anon_sym_match] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_try] = ACTIONS(829), - [anon_sym_return] = ACTIONS(829), - [anon_sym_source] = ACTIONS(829), - [anon_sym_source_DASHenv] = ACTIONS(829), - [anon_sym_register] = ACTIONS(829), - [anon_sym_hide] = ACTIONS(829), - [anon_sym_hide_DASHenv] = ACTIONS(829), - [anon_sym_overlay] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_where] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_not] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), - }, - [259] = { - [sym_comment] = STATE(259), - [ts_builtin_sym_end] = ACTIONS(921), - [anon_sym_export] = ACTIONS(919), - [anon_sym_alias] = ACTIONS(919), - [anon_sym_let] = ACTIONS(919), - [anon_sym_let_DASHenv] = ACTIONS(919), - [anon_sym_mut] = ACTIONS(919), - [anon_sym_const] = ACTIONS(919), - [anon_sym_SEMI] = ACTIONS(919), - [sym_cmd_identifier] = ACTIONS(919), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_def] = ACTIONS(919), - [anon_sym_def_DASHenv] = ACTIONS(919), - [anon_sym_export_DASHenv] = ACTIONS(919), - [anon_sym_extern] = ACTIONS(919), - [anon_sym_module] = ACTIONS(919), - [anon_sym_use] = ACTIONS(919), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_error] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_break] = ACTIONS(919), - [anon_sym_continue] = ACTIONS(919), - [anon_sym_for] = ACTIONS(919), - [anon_sym_in] = ACTIONS(919), - [anon_sym_loop] = ACTIONS(919), - [anon_sym_while] = ACTIONS(919), - [anon_sym_do] = ACTIONS(919), - [anon_sym_if] = ACTIONS(919), - [anon_sym_match] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_try] = ACTIONS(919), - [anon_sym_return] = ACTIONS(919), - [anon_sym_source] = ACTIONS(919), - [anon_sym_source_DASHenv] = ACTIONS(919), - [anon_sym_register] = ACTIONS(919), - [anon_sym_hide] = ACTIONS(919), - [anon_sym_hide_DASHenv] = ACTIONS(919), - [anon_sym_overlay] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_where] = ACTIONS(919), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_not] = ACTIONS(919), - [anon_sym_DOT_DOT_LT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(919), - [sym_val_nothing] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym_val_number_token1] = ACTIONS(919), - [aux_sym_val_number_token2] = ACTIONS(919), - [aux_sym_val_number_token3] = ACTIONS(919), - [aux_sym_val_number_token4] = ACTIONS(919), - [aux_sym_val_number_token5] = ACTIONS(919), - [anon_sym_inf] = ACTIONS(919), - [anon_sym_DASHinf] = ACTIONS(919), - [anon_sym_NaN] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(919), - [anon_sym_0x] = ACTIONS(919), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [anon_sym_CARET] = ACTIONS(919), - [anon_sym_POUND] = ACTIONS(3), - }, - [260] = { - [sym_comment] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_export] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_let_DASHenv] = ACTIONS(103), - [anon_sym_mut] = ACTIONS(103), - [anon_sym_const] = ACTIONS(103), - [anon_sym_SEMI] = ACTIONS(103), - [sym_cmd_identifier] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_def] = ACTIONS(103), - [anon_sym_def_DASHenv] = ACTIONS(103), - [anon_sym_export_DASHenv] = ACTIONS(103), - [anon_sym_extern] = ACTIONS(103), - [anon_sym_module] = ACTIONS(103), - [anon_sym_use] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_error] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_break] = ACTIONS(103), - [anon_sym_continue] = ACTIONS(103), - [anon_sym_for] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_loop] = ACTIONS(103), - [anon_sym_while] = ACTIONS(103), - [anon_sym_do] = ACTIONS(103), - [anon_sym_if] = ACTIONS(103), - [anon_sym_match] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_try] = ACTIONS(103), - [anon_sym_return] = ACTIONS(103), - [anon_sym_source] = ACTIONS(103), - [anon_sym_source_DASHenv] = ACTIONS(103), - [anon_sym_register] = ACTIONS(103), - [anon_sym_hide] = ACTIONS(103), - [anon_sym_hide_DASHenv] = ACTIONS(103), - [anon_sym_overlay] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_where] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_not] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_CARET] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [261] = { - [sym_comment] = STATE(261), - [ts_builtin_sym_end] = ACTIONS(885), - [anon_sym_export] = ACTIONS(883), - [anon_sym_alias] = ACTIONS(883), - [anon_sym_let] = ACTIONS(883), - [anon_sym_let_DASHenv] = ACTIONS(883), - [anon_sym_mut] = ACTIONS(883), - [anon_sym_const] = ACTIONS(883), - [anon_sym_SEMI] = ACTIONS(883), - [sym_cmd_identifier] = ACTIONS(883), - [anon_sym_LF] = ACTIONS(885), - [anon_sym_def] = ACTIONS(883), - [anon_sym_def_DASHenv] = ACTIONS(883), - [anon_sym_export_DASHenv] = ACTIONS(883), - [anon_sym_extern] = ACTIONS(883), - [anon_sym_module] = ACTIONS(883), - [anon_sym_use] = ACTIONS(883), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_error] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_break] = ACTIONS(883), - [anon_sym_continue] = ACTIONS(883), - [anon_sym_for] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_loop] = ACTIONS(883), - [anon_sym_while] = ACTIONS(883), - [anon_sym_do] = ACTIONS(883), - [anon_sym_if] = ACTIONS(883), - [anon_sym_match] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_try] = ACTIONS(883), - [anon_sym_return] = ACTIONS(883), - [anon_sym_source] = ACTIONS(883), - [anon_sym_source_DASHenv] = ACTIONS(883), - [anon_sym_register] = ACTIONS(883), - [anon_sym_hide] = ACTIONS(883), - [anon_sym_hide_DASHenv] = ACTIONS(883), - [anon_sym_overlay] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_where] = ACTIONS(883), - [anon_sym_STAR_STAR] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(883), - [anon_sym_bit_DASHshr] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(883), - [anon_sym_not_DASHin] = ACTIONS(883), - [anon_sym_starts_DASHwith] = ACTIONS(883), - [anon_sym_ends_DASHwith] = ACTIONS(883), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_BANG_TILDE] = ACTIONS(883), - [anon_sym_bit_DASHand] = ACTIONS(883), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(883), - [anon_sym_and] = ACTIONS(883), - [anon_sym_xor] = ACTIONS(883), - [anon_sym_or] = ACTIONS(883), - [anon_sym_not] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [sym_val_nothing] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [aux_sym_val_number_token1] = ACTIONS(883), - [aux_sym_val_number_token2] = ACTIONS(883), - [aux_sym_val_number_token3] = ACTIONS(883), - [aux_sym_val_number_token4] = ACTIONS(883), - [aux_sym_val_number_token5] = ACTIONS(883), - [anon_sym_inf] = ACTIONS(883), - [anon_sym_DASHinf] = ACTIONS(883), - [anon_sym_NaN] = ACTIONS(883), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(883), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(883), - [anon_sym_CARET] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), - }, - [262] = { - [sym_pipeline] = STATE(716), - [sym_pipeline_last] = STATE(3327), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), - [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), - [sym_comment] = STATE(262), - [aux_sym_pipeline_repeat1] = STATE(324), - [sym_cmd_identifier] = ACTIONS(19), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(961), - [anon_sym_DASH] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_do] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_try] = ACTIONS(59), - [anon_sym_return] = ACTIONS(61), - [anon_sym_where] = ACTIONS(73), - [anon_sym_not] = ACTIONS(75), - [anon_sym_DOT_DOT_LT] = ACTIONS(77), - [anon_sym_DOT_DOT] = ACTIONS(79), - [anon_sym_DOT_DOT_EQ] = ACTIONS(77), - [sym_val_nothing] = ACTIONS(81), - [anon_sym_true] = ACTIONS(83), - [anon_sym_false] = ACTIONS(83), - [aux_sym_val_number_token1] = ACTIONS(85), - [aux_sym_val_number_token2] = ACTIONS(85), - [aux_sym_val_number_token3] = ACTIONS(87), - [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), - }, - [263] = { - [sym_cell_path] = STATE(346), - [sym_path] = STATE(277), - [sym_comment] = STATE(263), - [anon_sym_SEMI] = ACTIONS(736), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_PIPE] = ACTIONS(736), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_GT] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_in] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_STAR_STAR] = ACTIONS(736), - [anon_sym_PLUS_PLUS] = ACTIONS(736), - [anon_sym_SLASH] = ACTIONS(736), - [anon_sym_mod] = ACTIONS(736), - [anon_sym_SLASH_SLASH] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_bit_DASHshl] = ACTIONS(736), - [anon_sym_bit_DASHshr] = ACTIONS(736), - [anon_sym_EQ_EQ] = ACTIONS(736), - [anon_sym_BANG_EQ] = ACTIONS(736), - [anon_sym_LT2] = ACTIONS(736), - [anon_sym_LT_EQ] = ACTIONS(736), - [anon_sym_GT_EQ] = ACTIONS(736), - [anon_sym_not_DASHin] = ACTIONS(736), - [anon_sym_starts_DASHwith] = ACTIONS(736), - [anon_sym_ends_DASHwith] = ACTIONS(736), - [anon_sym_EQ_TILDE] = ACTIONS(736), - [anon_sym_BANG_TILDE] = ACTIONS(736), - [anon_sym_bit_DASHand] = ACTIONS(736), - [anon_sym_bit_DASHxor] = ACTIONS(736), - [anon_sym_bit_DASHor] = ACTIONS(736), - [anon_sym_and] = ACTIONS(736), - [anon_sym_xor] = ACTIONS(736), - [anon_sym_or] = ACTIONS(736), - [anon_sym_DOT_DOT_LT] = ACTIONS(736), - [anon_sym_DOT_DOT] = ACTIONS(736), - [anon_sym_DOT_DOT_EQ] = ACTIONS(736), - [sym_val_nothing] = ACTIONS(736), - [anon_sym_true] = ACTIONS(736), - [anon_sym_false] = ACTIONS(736), - [aux_sym_val_number_token1] = ACTIONS(736), - [aux_sym_val_number_token2] = ACTIONS(736), - [aux_sym_val_number_token3] = ACTIONS(736), - [aux_sym_val_number_token4] = ACTIONS(736), - [aux_sym_val_number_token5] = ACTIONS(736), - [anon_sym_inf] = ACTIONS(736), - [anon_sym_DASHinf] = ACTIONS(736), - [anon_sym_NaN] = ACTIONS(736), - [anon_sym_0b] = ACTIONS(736), - [anon_sym_0o] = ACTIONS(736), - [anon_sym_0x] = ACTIONS(736), - [sym_val_date] = ACTIONS(736), - [anon_sym_DQUOTE] = ACTIONS(736), - [sym__str_single_quotes] = ACTIONS(736), - [sym__str_back_ticks] = ACTIONS(736), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), - [anon_sym_err_GT] = ACTIONS(736), - [anon_sym_out_GT] = ACTIONS(736), - [anon_sym_e_GT] = ACTIONS(736), - [anon_sym_o_GT] = ACTIONS(736), - [anon_sym_err_PLUSout_GT] = ACTIONS(736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(736), - [anon_sym_o_PLUSe_GT] = ACTIONS(736), - [anon_sym_e_PLUSo_GT] = ACTIONS(736), - [sym_short_flag] = ACTIONS(736), - [aux_sym_unquoted_token1] = ACTIONS(736), - [anon_sym_POUND] = ACTIONS(3), - }, - [264] = { - [sym_pipeline] = STATE(713), - [sym_pipeline_last] = STATE(3079), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(264), - [aux_sym_pipeline_repeat1] = STATE(316), + [265] = { + [sym_pipeline] = STATE(726), + [sym_pipeline_last] = STATE(3245), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(265), + [aux_sym_pipeline_repeat1] = STATE(309), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -69649,49 +69804,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [265] = { - [sym_pipeline] = STATE(707), - [sym_pipeline_last] = STATE(3352), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), + [266] = { + [sym_pipeline] = STATE(727), + [sym_pipeline_last] = STATE(3409), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), - [sym_comment] = STATE(265), - [aux_sym_pipeline_repeat1] = STATE(324), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), + [sym_comment] = STATE(266), + [aux_sym_pipeline_repeat1] = STATE(312), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(973), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -69727,127 +69882,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), - }, - [266] = { - [sym_cell_path] = STATE(329), - [sym_path] = STATE(277), - [sym_comment] = STATE(266), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_in] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_mod] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_bit_DASHshl] = ACTIONS(706), - [anon_sym_bit_DASHshr] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_LT2] = ACTIONS(706), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_not_DASHin] = ACTIONS(706), - [anon_sym_starts_DASHwith] = ACTIONS(706), - [anon_sym_ends_DASHwith] = ACTIONS(706), - [anon_sym_EQ_TILDE] = ACTIONS(706), - [anon_sym_BANG_TILDE] = ACTIONS(706), - [anon_sym_bit_DASHand] = ACTIONS(706), - [anon_sym_bit_DASHxor] = ACTIONS(706), - [anon_sym_bit_DASHor] = ACTIONS(706), - [anon_sym_and] = ACTIONS(706), - [anon_sym_xor] = ACTIONS(706), - [anon_sym_or] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_err_GT] = ACTIONS(706), - [anon_sym_out_GT] = ACTIONS(706), - [anon_sym_e_GT] = ACTIONS(706), - [anon_sym_o_GT] = ACTIONS(706), - [anon_sym_err_PLUSout_GT] = ACTIONS(706), - [anon_sym_out_PLUSerr_GT] = ACTIONS(706), - [anon_sym_o_PLUSe_GT] = ACTIONS(706), - [anon_sym_e_PLUSo_GT] = ACTIONS(706), - [sym_short_flag] = ACTIONS(706), - [aux_sym_unquoted_token1] = ACTIONS(706), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(145), }, [267] = { - [sym_pipeline] = STATE(713), - [sym_pipeline_last] = STATE(3350), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), + [sym_pipeline] = STATE(700), + [sym_pipeline_last] = STATE(3352), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), [sym_comment] = STATE(267), - [aux_sym_pipeline_repeat1] = STATE(324), + [aux_sym_pipeline_repeat1] = STATE(312), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(973), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -69883,57 +69960,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, [268] = { - [sym_pipeline_parenthesized] = STATE(715), - [sym_pipeline_parenthesized_last] = STATE(3338), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), + [sym_path] = STATE(316), [sym_comment] = STATE(268), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), + [aux_sym_cell_path_repeat1] = STATE(262), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_err_GT] = ACTIONS(752), + [anon_sym_out_GT] = ACTIONS(752), + [anon_sym_e_GT] = ACTIONS(752), + [anon_sym_o_GT] = ACTIONS(752), + [anon_sym_err_PLUSout_GT] = ACTIONS(752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(752), + [anon_sym_o_PLUSe_GT] = ACTIONS(752), + [anon_sym_e_PLUSo_GT] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [aux_sym_unquoted_token1] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [269] = { + [sym_cell_path] = STATE(326), + [sym_path] = STATE(268), + [sym_comment] = STATE(269), + [anon_sym_SEMI] = ACTIONS(748), + [anon_sym_LF] = ACTIONS(750), + [anon_sym_LBRACK] = ACTIONS(748), + [anon_sym_LPAREN] = ACTIONS(748), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_PIPE] = ACTIONS(748), + [anon_sym_DOLLAR] = ACTIONS(748), + [anon_sym_GT] = ACTIONS(748), + [anon_sym_DASH_DASH] = ACTIONS(748), + [anon_sym_DASH] = ACTIONS(748), + [anon_sym_in] = ACTIONS(748), + [anon_sym_LBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(748), + [anon_sym_STAR_STAR] = ACTIONS(748), + [anon_sym_PLUS_PLUS] = ACTIONS(748), + [anon_sym_SLASH] = ACTIONS(748), + [anon_sym_mod] = ACTIONS(748), + [anon_sym_SLASH_SLASH] = ACTIONS(748), + [anon_sym_PLUS] = ACTIONS(748), + [anon_sym_bit_DASHshl] = ACTIONS(748), + [anon_sym_bit_DASHshr] = ACTIONS(748), + [anon_sym_EQ_EQ] = ACTIONS(748), + [anon_sym_BANG_EQ] = ACTIONS(748), + [anon_sym_LT2] = ACTIONS(748), + [anon_sym_LT_EQ] = ACTIONS(748), + [anon_sym_GT_EQ] = ACTIONS(748), + [anon_sym_not_DASHin] = ACTIONS(748), + [anon_sym_starts_DASHwith] = ACTIONS(748), + [anon_sym_ends_DASHwith] = ACTIONS(748), + [anon_sym_EQ_TILDE] = ACTIONS(748), + [anon_sym_BANG_TILDE] = ACTIONS(748), + [anon_sym_bit_DASHand] = ACTIONS(748), + [anon_sym_bit_DASHxor] = ACTIONS(748), + [anon_sym_bit_DASHor] = ACTIONS(748), + [anon_sym_and] = ACTIONS(748), + [anon_sym_xor] = ACTIONS(748), + [anon_sym_or] = ACTIONS(748), + [anon_sym_DOT_DOT_LT] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(748), + [anon_sym_DOT_DOT_EQ] = ACTIONS(748), + [sym_val_nothing] = ACTIONS(748), + [anon_sym_true] = ACTIONS(748), + [anon_sym_false] = ACTIONS(748), + [aux_sym_val_number_token1] = ACTIONS(748), + [aux_sym_val_number_token2] = ACTIONS(748), + [aux_sym_val_number_token3] = ACTIONS(748), + [aux_sym_val_number_token4] = ACTIONS(748), + [aux_sym_val_number_token5] = ACTIONS(748), + [anon_sym_inf] = ACTIONS(748), + [anon_sym_DASHinf] = ACTIONS(748), + [anon_sym_NaN] = ACTIONS(748), + [anon_sym_0b] = ACTIONS(748), + [anon_sym_0o] = ACTIONS(748), + [anon_sym_0x] = ACTIONS(748), + [sym_val_date] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(748), + [sym__str_single_quotes] = ACTIONS(748), + [sym__str_back_ticks] = ACTIONS(748), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), + [anon_sym_err_GT] = ACTIONS(748), + [anon_sym_out_GT] = ACTIONS(748), + [anon_sym_e_GT] = ACTIONS(748), + [anon_sym_o_GT] = ACTIONS(748), + [anon_sym_err_PLUSout_GT] = ACTIONS(748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(748), + [anon_sym_o_PLUSe_GT] = ACTIONS(748), + [anon_sym_e_PLUSo_GT] = ACTIONS(748), + [sym_short_flag] = ACTIONS(748), + [aux_sym_unquoted_token1] = ACTIONS(748), + [anon_sym_POUND] = ACTIONS(3), + }, + [270] = { + [sym_path] = STATE(316), + [sym_comment] = STATE(270), + [aux_sym_cell_path_repeat1] = STATE(270), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_in] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(975), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_SLASH_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_bit_DASHshl] = ACTIONS(729), + [anon_sym_bit_DASHshr] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_LT2] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_not_DASHin] = ACTIONS(729), + [anon_sym_starts_DASHwith] = ACTIONS(729), + [anon_sym_ends_DASHwith] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_bit_DASHand] = ACTIONS(729), + [anon_sym_bit_DASHxor] = ACTIONS(729), + [anon_sym_bit_DASHor] = ACTIONS(729), + [anon_sym_and] = ACTIONS(729), + [anon_sym_xor] = ACTIONS(729), + [anon_sym_or] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_err_GT] = ACTIONS(729), + [anon_sym_out_GT] = ACTIONS(729), + [anon_sym_e_GT] = ACTIONS(729), + [anon_sym_o_GT] = ACTIONS(729), + [anon_sym_err_PLUSout_GT] = ACTIONS(729), + [anon_sym_out_PLUSerr_GT] = ACTIONS(729), + [anon_sym_o_PLUSe_GT] = ACTIONS(729), + [anon_sym_e_PLUSo_GT] = ACTIONS(729), + [sym_short_flag] = ACTIONS(729), + [aux_sym_unquoted_token1] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(3), + }, + [271] = { + [sym_pipeline_parenthesized] = STATE(717), + [sym_pipeline_parenthesized_last] = STATE(3412), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(271), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -69960,370 +70271,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), - }, - [269] = { - [sym_cell_path] = STATE(339), - [sym_path] = STATE(277), - [sym_comment] = STATE(269), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_DASH_DASH] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_in] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_STAR_STAR] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_mod] = ACTIONS(740), - [anon_sym_SLASH_SLASH] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_bit_DASHshl] = ACTIONS(740), - [anon_sym_bit_DASHshr] = ACTIONS(740), - [anon_sym_EQ_EQ] = ACTIONS(740), - [anon_sym_BANG_EQ] = ACTIONS(740), - [anon_sym_LT2] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(740), - [anon_sym_not_DASHin] = ACTIONS(740), - [anon_sym_starts_DASHwith] = ACTIONS(740), - [anon_sym_ends_DASHwith] = ACTIONS(740), - [anon_sym_EQ_TILDE] = ACTIONS(740), - [anon_sym_BANG_TILDE] = ACTIONS(740), - [anon_sym_bit_DASHand] = ACTIONS(740), - [anon_sym_bit_DASHxor] = ACTIONS(740), - [anon_sym_bit_DASHor] = ACTIONS(740), - [anon_sym_and] = ACTIONS(740), - [anon_sym_xor] = ACTIONS(740), - [anon_sym_or] = ACTIONS(740), - [anon_sym_DOT_DOT_LT] = ACTIONS(740), - [anon_sym_DOT_DOT] = ACTIONS(740), - [anon_sym_DOT_DOT_EQ] = ACTIONS(740), - [sym_val_nothing] = ACTIONS(740), - [anon_sym_true] = ACTIONS(740), - [anon_sym_false] = ACTIONS(740), - [aux_sym_val_number_token1] = ACTIONS(740), - [aux_sym_val_number_token2] = ACTIONS(740), - [aux_sym_val_number_token3] = ACTIONS(740), - [aux_sym_val_number_token4] = ACTIONS(740), - [aux_sym_val_number_token5] = ACTIONS(740), - [anon_sym_inf] = ACTIONS(740), - [anon_sym_DASHinf] = ACTIONS(740), - [anon_sym_NaN] = ACTIONS(740), - [anon_sym_0b] = ACTIONS(740), - [anon_sym_0o] = ACTIONS(740), - [anon_sym_0x] = ACTIONS(740), - [sym_val_date] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [sym__str_single_quotes] = ACTIONS(740), - [sym__str_back_ticks] = ACTIONS(740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), - [anon_sym_err_GT] = ACTIONS(740), - [anon_sym_out_GT] = ACTIONS(740), - [anon_sym_e_GT] = ACTIONS(740), - [anon_sym_o_GT] = ACTIONS(740), - [anon_sym_err_PLUSout_GT] = ACTIONS(740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(740), - [anon_sym_o_PLUSe_GT] = ACTIONS(740), - [anon_sym_e_PLUSo_GT] = ACTIONS(740), - [sym_short_flag] = ACTIONS(740), - [aux_sym_unquoted_token1] = ACTIONS(740), - [anon_sym_POUND] = ACTIONS(3), - }, - [270] = { - [sym_cell_path] = STATE(342), - [sym_path] = STATE(277), - [sym_comment] = STATE(270), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_RBRACE] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_mod] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_bit_DASHshl] = ACTIONS(712), - [anon_sym_bit_DASHshr] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT2] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_not_DASHin] = ACTIONS(712), - [anon_sym_starts_DASHwith] = ACTIONS(712), - [anon_sym_ends_DASHwith] = ACTIONS(712), - [anon_sym_EQ_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_bit_DASHand] = ACTIONS(712), - [anon_sym_bit_DASHxor] = ACTIONS(712), - [anon_sym_bit_DASHor] = ACTIONS(712), - [anon_sym_and] = ACTIONS(712), - [anon_sym_xor] = ACTIONS(712), - [anon_sym_or] = ACTIONS(712), - [anon_sym_DOT_DOT_LT] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(712), - [sym_val_nothing] = ACTIONS(712), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [aux_sym_val_number_token1] = ACTIONS(712), - [aux_sym_val_number_token2] = ACTIONS(712), - [aux_sym_val_number_token3] = ACTIONS(712), - [aux_sym_val_number_token4] = ACTIONS(712), - [aux_sym_val_number_token5] = ACTIONS(712), - [anon_sym_inf] = ACTIONS(712), - [anon_sym_DASHinf] = ACTIONS(712), - [anon_sym_NaN] = ACTIONS(712), - [anon_sym_0b] = ACTIONS(712), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [sym__str_single_quotes] = ACTIONS(712), - [sym__str_back_ticks] = ACTIONS(712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(712), - [anon_sym_err_GT] = ACTIONS(712), - [anon_sym_out_GT] = ACTIONS(712), - [anon_sym_e_GT] = ACTIONS(712), - [anon_sym_o_GT] = ACTIONS(712), - [anon_sym_err_PLUSout_GT] = ACTIONS(712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(712), - [anon_sym_o_PLUSe_GT] = ACTIONS(712), - [anon_sym_e_PLUSo_GT] = ACTIONS(712), - [sym_short_flag] = ACTIONS(712), - [aux_sym_unquoted_token1] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(3), - }, - [271] = { - [sym_cell_path] = STATE(343), - [sym_path] = STATE(277), - [sym_comment] = STATE(271), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_DASH_DASH] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_in] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_RBRACE] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_STAR_STAR] = ACTIONS(720), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_mod] = ACTIONS(720), - [anon_sym_SLASH_SLASH] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_bit_DASHshl] = ACTIONS(720), - [anon_sym_bit_DASHshr] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_LT2] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_not_DASHin] = ACTIONS(720), - [anon_sym_starts_DASHwith] = ACTIONS(720), - [anon_sym_ends_DASHwith] = ACTIONS(720), - [anon_sym_EQ_TILDE] = ACTIONS(720), - [anon_sym_BANG_TILDE] = ACTIONS(720), - [anon_sym_bit_DASHand] = ACTIONS(720), - [anon_sym_bit_DASHxor] = ACTIONS(720), - [anon_sym_bit_DASHor] = ACTIONS(720), - [anon_sym_and] = ACTIONS(720), - [anon_sym_xor] = ACTIONS(720), - [anon_sym_or] = ACTIONS(720), - [anon_sym_DOT_DOT_LT] = ACTIONS(720), - [anon_sym_DOT_DOT] = ACTIONS(720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(720), - [sym_val_nothing] = ACTIONS(720), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [aux_sym_val_number_token1] = ACTIONS(720), - [aux_sym_val_number_token2] = ACTIONS(720), - [aux_sym_val_number_token3] = ACTIONS(720), - [aux_sym_val_number_token4] = ACTIONS(720), - [aux_sym_val_number_token5] = ACTIONS(720), - [anon_sym_inf] = ACTIONS(720), - [anon_sym_DASHinf] = ACTIONS(720), - [anon_sym_NaN] = ACTIONS(720), - [anon_sym_0b] = ACTIONS(720), - [anon_sym_0o] = ACTIONS(720), - [anon_sym_0x] = ACTIONS(720), - [sym_val_date] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym__str_single_quotes] = ACTIONS(720), - [sym__str_back_ticks] = ACTIONS(720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(720), - [anon_sym_err_GT] = ACTIONS(720), - [anon_sym_out_GT] = ACTIONS(720), - [anon_sym_e_GT] = ACTIONS(720), - [anon_sym_o_GT] = ACTIONS(720), - [anon_sym_err_PLUSout_GT] = ACTIONS(720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(720), - [anon_sym_o_PLUSe_GT] = ACTIONS(720), - [anon_sym_e_PLUSo_GT] = ACTIONS(720), - [sym_short_flag] = ACTIONS(720), - [aux_sym_unquoted_token1] = ACTIONS(720), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, [272] = { - [sym_cell_path] = STATE(345), - [sym_path] = STATE(277), + [sym_pipeline_parenthesized] = STATE(729), + [sym_pipeline_parenthesized_last] = STATE(3348), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), [sym_comment] = STATE(272), - [anon_sym_SEMI] = ACTIONS(716), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(716), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_in] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_STAR_STAR] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), - [anon_sym_mod] = ACTIONS(716), - [anon_sym_SLASH_SLASH] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_bit_DASHshl] = ACTIONS(716), - [anon_sym_bit_DASHshr] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(716), - [anon_sym_LT2] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_not_DASHin] = ACTIONS(716), - [anon_sym_starts_DASHwith] = ACTIONS(716), - [anon_sym_ends_DASHwith] = ACTIONS(716), - [anon_sym_EQ_TILDE] = ACTIONS(716), - [anon_sym_BANG_TILDE] = ACTIONS(716), - [anon_sym_bit_DASHand] = ACTIONS(716), - [anon_sym_bit_DASHxor] = ACTIONS(716), - [anon_sym_bit_DASHor] = ACTIONS(716), - [anon_sym_and] = ACTIONS(716), - [anon_sym_xor] = ACTIONS(716), - [anon_sym_or] = ACTIONS(716), - [anon_sym_DOT_DOT_LT] = ACTIONS(716), - [anon_sym_DOT_DOT] = ACTIONS(716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(716), - [sym_val_nothing] = ACTIONS(716), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [aux_sym_val_number_token1] = ACTIONS(716), - [aux_sym_val_number_token2] = ACTIONS(716), - [aux_sym_val_number_token3] = ACTIONS(716), - [aux_sym_val_number_token4] = ACTIONS(716), - [aux_sym_val_number_token5] = ACTIONS(716), - [anon_sym_inf] = ACTIONS(716), - [anon_sym_DASHinf] = ACTIONS(716), - [anon_sym_NaN] = ACTIONS(716), - [anon_sym_0b] = ACTIONS(716), - [anon_sym_0o] = ACTIONS(716), - [anon_sym_0x] = ACTIONS(716), - [sym_val_date] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(716), - [sym__str_single_quotes] = ACTIONS(716), - [sym__str_back_ticks] = ACTIONS(716), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(716), - [anon_sym_err_GT] = ACTIONS(716), - [anon_sym_out_GT] = ACTIONS(716), - [anon_sym_e_GT] = ACTIONS(716), - [anon_sym_o_GT] = ACTIONS(716), - [anon_sym_err_PLUSout_GT] = ACTIONS(716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(716), - [anon_sym_o_PLUSe_GT] = ACTIONS(716), - [anon_sym_e_PLUSo_GT] = ACTIONS(716), - [sym_short_flag] = ACTIONS(716), - [aux_sym_unquoted_token1] = ACTIONS(716), - [anon_sym_POUND] = ACTIONS(3), - }, - [273] = { - [sym_pipeline_parenthesized] = STATE(727), - [sym_pipeline_parenthesized_last] = STATE(3389), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(273), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -70350,58 +70349,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [274] = { - [sym_pipeline_parenthesized] = STATE(710), - [sym_pipeline_parenthesized_last] = STATE(3337), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(274), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), + [273] = { + [sym_pipeline_parenthesized] = STATE(728), + [sym_pipeline_parenthesized_last] = STATE(3349), + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3345), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(273), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(324), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -70428,128 +70427,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), - }, - [275] = { - [sym_cell_path] = STATE(352), - [sym_path] = STATE(277), - [sym_comment] = STATE(275), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_DASH_DASH] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_in] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_RBRACE] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_STAR_STAR] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_mod] = ACTIONS(724), - [anon_sym_SLASH_SLASH] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_bit_DASHshl] = ACTIONS(724), - [anon_sym_bit_DASHshr] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(724), - [anon_sym_BANG_EQ] = ACTIONS(724), - [anon_sym_LT2] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(724), - [anon_sym_not_DASHin] = ACTIONS(724), - [anon_sym_starts_DASHwith] = ACTIONS(724), - [anon_sym_ends_DASHwith] = ACTIONS(724), - [anon_sym_EQ_TILDE] = ACTIONS(724), - [anon_sym_BANG_TILDE] = ACTIONS(724), - [anon_sym_bit_DASHand] = ACTIONS(724), - [anon_sym_bit_DASHxor] = ACTIONS(724), - [anon_sym_bit_DASHor] = ACTIONS(724), - [anon_sym_and] = ACTIONS(724), - [anon_sym_xor] = ACTIONS(724), - [anon_sym_or] = ACTIONS(724), - [anon_sym_DOT_DOT_LT] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(724), - [sym_val_nothing] = ACTIONS(724), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [aux_sym_val_number_token1] = ACTIONS(724), - [aux_sym_val_number_token2] = ACTIONS(724), - [aux_sym_val_number_token3] = ACTIONS(724), - [aux_sym_val_number_token4] = ACTIONS(724), - [aux_sym_val_number_token5] = ACTIONS(724), - [anon_sym_inf] = ACTIONS(724), - [anon_sym_DASHinf] = ACTIONS(724), - [anon_sym_NaN] = ACTIONS(724), - [anon_sym_0b] = ACTIONS(724), - [anon_sym_0o] = ACTIONS(724), - [anon_sym_0x] = ACTIONS(724), - [sym_val_date] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [sym__str_single_quotes] = ACTIONS(724), - [sym__str_back_ticks] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(724), - [anon_sym_err_GT] = ACTIONS(724), - [anon_sym_out_GT] = ACTIONS(724), - [anon_sym_e_GT] = ACTIONS(724), - [anon_sym_o_GT] = ACTIONS(724), - [anon_sym_err_PLUSout_GT] = ACTIONS(724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(724), - [anon_sym_o_PLUSe_GT] = ACTIONS(724), - [anon_sym_e_PLUSo_GT] = ACTIONS(724), - [sym_short_flag] = ACTIONS(724), - [aux_sym_unquoted_token1] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [276] = { - [sym_pipeline] = STATE(707), - [sym_pipeline_last] = STATE(3078), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(276), - [aux_sym_pipeline_repeat1] = STATE(316), + [274] = { + [sym_pipeline] = STATE(720), + [sym_pipeline_last] = STATE(3308), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(274), + [aux_sym_pipeline_repeat1] = STATE(309), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -70585,283 +70506,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), - }, - [277] = { - [sym_path] = STATE(309), - [sym_comment] = STATE(277), - [aux_sym_cell_path_repeat1] = STATE(278), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_in] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_bit_DASHshl] = ACTIONS(728), - [anon_sym_bit_DASHshr] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(728), - [anon_sym_BANG_EQ] = ACTIONS(728), - [anon_sym_LT2] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(728), - [anon_sym_not_DASHin] = ACTIONS(728), - [anon_sym_starts_DASHwith] = ACTIONS(728), - [anon_sym_ends_DASHwith] = ACTIONS(728), - [anon_sym_EQ_TILDE] = ACTIONS(728), - [anon_sym_BANG_TILDE] = ACTIONS(728), - [anon_sym_bit_DASHand] = ACTIONS(728), - [anon_sym_bit_DASHxor] = ACTIONS(728), - [anon_sym_bit_DASHor] = ACTIONS(728), - [anon_sym_and] = ACTIONS(728), - [anon_sym_xor] = ACTIONS(728), - [anon_sym_or] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_err_GT] = ACTIONS(728), - [anon_sym_out_GT] = ACTIONS(728), - [anon_sym_e_GT] = ACTIONS(728), - [anon_sym_o_GT] = ACTIONS(728), - [anon_sym_err_PLUSout_GT] = ACTIONS(728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(728), - [anon_sym_o_PLUSe_GT] = ACTIONS(728), - [anon_sym_e_PLUSo_GT] = ACTIONS(728), - [sym_short_flag] = ACTIONS(728), - [aux_sym_unquoted_token1] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(145), }, - [278] = { - [sym_path] = STATE(309), - [sym_comment] = STATE(278), - [aux_sym_cell_path_repeat1] = STATE(279), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_DASH_DASH] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(963), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_mod] = ACTIONS(732), - [anon_sym_SLASH_SLASH] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_bit_DASHshl] = ACTIONS(732), - [anon_sym_bit_DASHshr] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_LT2] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_not_DASHin] = ACTIONS(732), - [anon_sym_starts_DASHwith] = ACTIONS(732), - [anon_sym_ends_DASHwith] = ACTIONS(732), - [anon_sym_EQ_TILDE] = ACTIONS(732), - [anon_sym_BANG_TILDE] = ACTIONS(732), - [anon_sym_bit_DASHand] = ACTIONS(732), - [anon_sym_bit_DASHxor] = ACTIONS(732), - [anon_sym_bit_DASHor] = ACTIONS(732), - [anon_sym_and] = ACTIONS(732), - [anon_sym_xor] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_err_GT] = ACTIONS(732), - [anon_sym_out_GT] = ACTIONS(732), - [anon_sym_e_GT] = ACTIONS(732), - [anon_sym_o_GT] = ACTIONS(732), - [anon_sym_err_PLUSout_GT] = ACTIONS(732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(732), - [anon_sym_o_PLUSe_GT] = ACTIONS(732), - [anon_sym_e_PLUSo_GT] = ACTIONS(732), - [sym_short_flag] = ACTIONS(732), - [aux_sym_unquoted_token1] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(3), - }, - [279] = { - [sym_path] = STATE(309), - [sym_comment] = STATE(279), - [aux_sym_cell_path_repeat1] = STATE(279), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_in] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(967), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_STAR_STAR] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_mod] = ACTIONS(699), - [anon_sym_SLASH_SLASH] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_bit_DASHshl] = ACTIONS(699), - [anon_sym_bit_DASHshr] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT2] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_not_DASHin] = ACTIONS(699), - [anon_sym_starts_DASHwith] = ACTIONS(699), - [anon_sym_ends_DASHwith] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(699), - [anon_sym_BANG_TILDE] = ACTIONS(699), - [anon_sym_bit_DASHand] = ACTIONS(699), - [anon_sym_bit_DASHxor] = ACTIONS(699), - [anon_sym_bit_DASHor] = ACTIONS(699), - [anon_sym_and] = ACTIONS(699), - [anon_sym_xor] = ACTIONS(699), - [anon_sym_or] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_err_GT] = ACTIONS(699), - [anon_sym_out_GT] = ACTIONS(699), - [anon_sym_e_GT] = ACTIONS(699), - [anon_sym_o_GT] = ACTIONS(699), - [anon_sym_err_PLUSout_GT] = ACTIONS(699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(699), - [anon_sym_o_PLUSe_GT] = ACTIONS(699), - [anon_sym_e_PLUSo_GT] = ACTIONS(699), - [sym_short_flag] = ACTIONS(699), - [aux_sym_unquoted_token1] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(3), + [275] = { + [sym_pipeline] = STATE(720), + [sym_pipeline_last] = STATE(3398), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), + [sym_val_number] = STATE(107), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), + [sym_comment] = STATE(275), + [aux_sym_pipeline_repeat1] = STATE(312), + [sym_cmd_identifier] = ACTIONS(19), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(973), + [anon_sym_DASH] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_do] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_match] = ACTIONS(55), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_try] = ACTIONS(59), + [anon_sym_return] = ACTIONS(61), + [anon_sym_where] = ACTIONS(73), + [anon_sym_not] = ACTIONS(75), + [anon_sym_DOT_DOT_LT] = ACTIONS(77), + [anon_sym_DOT_DOT] = ACTIONS(79), + [anon_sym_DOT_DOT_EQ] = ACTIONS(77), + [sym_val_nothing] = ACTIONS(81), + [anon_sym_true] = ACTIONS(83), + [anon_sym_false] = ACTIONS(83), + [aux_sym_val_number_token1] = ACTIONS(85), + [aux_sym_val_number_token2] = ACTIONS(85), + [aux_sym_val_number_token3] = ACTIONS(87), + [aux_sym_val_number_token4] = ACTIONS(87), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(145), }, - [280] = { - [sym_pipeline] = STATE(699), - [sym_pipeline_last] = STATE(3324), - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3119), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), + [276] = { + [sym_pipeline] = STATE(726), + [sym_pipeline_last] = STATE(3396), + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3129), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), - [sym_comment] = STATE(280), - [aux_sym_pipeline_repeat1] = STATE(324), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), + [sym_comment] = STATE(276), + [aux_sym_pipeline_repeat1] = STATE(312), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(973), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -70897,49 +70662,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [281] = { - [sym_pipeline] = STATE(699), - [sym_pipeline_last] = STATE(3075), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(281), - [aux_sym_pipeline_repeat1] = STATE(316), + [277] = { + [sym_pipeline] = STATE(700), + [sym_pipeline_last] = STATE(3271), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(277), + [aux_sym_pipeline_repeat1] = STATE(309), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -70975,12 +70740,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [282] = { - [sym_cell_path] = STATE(338), - [sym_path] = STATE(277), - [sym_comment] = STATE(282), + [278] = { + [sym_pipeline] = STATE(727), + [sym_pipeline_last] = STATE(3260), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3010), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(278), + [aux_sym_pipeline_repeat1] = STATE(309), + [sym_cmd_identifier] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(191), + [anon_sym_continue] = ACTIONS(193), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), + }, + [279] = { + [sym_cell_path] = STATE(362), + [sym_path] = STATE(268), + [sym_comment] = STATE(279), [anon_sym_SEMI] = ACTIONS(744), [anon_sym_LF] = ACTIONS(746), [anon_sym_LBRACK] = ACTIONS(744), @@ -70994,7 +70837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(744), [anon_sym_LBRACE] = ACTIONS(744), [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_STAR] = ACTIONS(744), [anon_sym_STAR_STAR] = ACTIONS(744), [anon_sym_PLUS_PLUS] = ACTIONS(744), @@ -71055,402 +70898,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [283] = { - [sym_pipeline] = STATE(716), - [sym_pipeline_last] = STATE(3077), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3036), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(283), - [aux_sym_pipeline_repeat1] = STATE(316), - [sym_cmd_identifier] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), - }, - [284] = { - [sym_pipeline_parenthesized] = STATE(729), - [sym_pipeline_parenthesized_last] = STATE(3388), - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3366), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(284), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(311), - [sym_cmd_identifier] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), - }, - [285] = { - [sym_pipeline_parenthesized] = STATE(715), - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3465), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), - [sym_comment] = STATE(285), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(312), - [sym_cmd_identifier] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [280] = { + [sym_cell_path] = STATE(392), + [sym_path] = STATE(268), + [sym_comment] = STATE(280), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_in] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_STAR_STAR] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_mod] = ACTIONS(717), + [anon_sym_SLASH_SLASH] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_bit_DASHshl] = ACTIONS(717), + [anon_sym_bit_DASHshr] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(717), + [anon_sym_BANG_EQ] = ACTIONS(717), + [anon_sym_LT2] = ACTIONS(717), + [anon_sym_LT_EQ] = ACTIONS(717), + [anon_sym_GT_EQ] = ACTIONS(717), + [anon_sym_not_DASHin] = ACTIONS(717), + [anon_sym_starts_DASHwith] = ACTIONS(717), + [anon_sym_ends_DASHwith] = ACTIONS(717), + [anon_sym_EQ_TILDE] = ACTIONS(717), + [anon_sym_BANG_TILDE] = ACTIONS(717), + [anon_sym_bit_DASHand] = ACTIONS(717), + [anon_sym_bit_DASHxor] = ACTIONS(717), + [anon_sym_bit_DASHor] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_xor] = ACTIONS(717), + [anon_sym_or] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_err_GT] = ACTIONS(717), + [anon_sym_out_GT] = ACTIONS(717), + [anon_sym_e_GT] = ACTIONS(717), + [anon_sym_o_GT] = ACTIONS(717), + [anon_sym_err_PLUSout_GT] = ACTIONS(717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(717), + [anon_sym_o_PLUSe_GT] = ACTIONS(717), + [anon_sym_e_PLUSo_GT] = ACTIONS(717), + [sym_short_flag] = ACTIONS(717), + [aux_sym_unquoted_token1] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(3), }, - [286] = { - [sym_pipeline] = STATE(713), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3340), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(286), - [aux_sym_pipeline_repeat1] = STATE(322), - [sym_cmd_identifier] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [281] = { + [sym_cell_path] = STATE(370), + [sym_path] = STATE(268), + [sym_comment] = STATE(281), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_DASH_DASH] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_in] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_STAR_STAR] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_SLASH_SLASH] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_bit_DASHshl] = ACTIONS(721), + [anon_sym_bit_DASHshr] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [anon_sym_LT2] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(721), + [anon_sym_GT_EQ] = ACTIONS(721), + [anon_sym_not_DASHin] = ACTIONS(721), + [anon_sym_starts_DASHwith] = ACTIONS(721), + [anon_sym_ends_DASHwith] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_BANG_TILDE] = ACTIONS(721), + [anon_sym_bit_DASHand] = ACTIONS(721), + [anon_sym_bit_DASHxor] = ACTIONS(721), + [anon_sym_bit_DASHor] = ACTIONS(721), + [anon_sym_and] = ACTIONS(721), + [anon_sym_xor] = ACTIONS(721), + [anon_sym_or] = ACTIONS(721), + [anon_sym_DOT_DOT_LT] = ACTIONS(721), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(721), + [sym_val_nothing] = ACTIONS(721), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [aux_sym_val_number_token1] = ACTIONS(721), + [aux_sym_val_number_token2] = ACTIONS(721), + [aux_sym_val_number_token3] = ACTIONS(721), + [aux_sym_val_number_token4] = ACTIONS(721), + [aux_sym_val_number_token5] = ACTIONS(721), + [anon_sym_inf] = ACTIONS(721), + [anon_sym_DASHinf] = ACTIONS(721), + [anon_sym_NaN] = ACTIONS(721), + [anon_sym_0b] = ACTIONS(721), + [anon_sym_0o] = ACTIONS(721), + [anon_sym_0x] = ACTIONS(721), + [sym_val_date] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym__str_single_quotes] = ACTIONS(721), + [sym__str_back_ticks] = ACTIONS(721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(721), + [anon_sym_err_GT] = ACTIONS(721), + [anon_sym_out_GT] = ACTIONS(721), + [anon_sym_e_GT] = ACTIONS(721), + [anon_sym_o_GT] = ACTIONS(721), + [anon_sym_err_PLUSout_GT] = ACTIONS(721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(721), + [anon_sym_o_PLUSe_GT] = ACTIONS(721), + [anon_sym_e_PLUSo_GT] = ACTIONS(721), + [sym_short_flag] = ACTIONS(721), + [aux_sym_unquoted_token1] = ACTIONS(721), + [anon_sym_POUND] = ACTIONS(3), }, - [287] = { - [sym_cell_path] = STATE(428), - [sym_path] = STATE(299), - [sym_comment] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(742), - [anon_sym_SEMI] = ACTIONS(740), - [anon_sym_LF] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(740), - [anon_sym_LPAREN] = ACTIONS(740), - [anon_sym_PIPE] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(740), - [anon_sym_GT] = ACTIONS(740), - [anon_sym_DASH_DASH] = ACTIONS(740), - [anon_sym_DASH] = ACTIONS(740), - [anon_sym_in] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(740), - [anon_sym_STAR_STAR] = ACTIONS(740), - [anon_sym_PLUS_PLUS] = ACTIONS(740), - [anon_sym_SLASH] = ACTIONS(740), - [anon_sym_mod] = ACTIONS(740), - [anon_sym_SLASH_SLASH] = ACTIONS(740), - [anon_sym_PLUS] = ACTIONS(740), - [anon_sym_bit_DASHshl] = ACTIONS(740), - [anon_sym_bit_DASHshr] = ACTIONS(740), - [anon_sym_EQ_EQ] = ACTIONS(740), - [anon_sym_BANG_EQ] = ACTIONS(740), - [anon_sym_LT2] = ACTIONS(740), - [anon_sym_LT_EQ] = ACTIONS(740), - [anon_sym_GT_EQ] = ACTIONS(740), - [anon_sym_not_DASHin] = ACTIONS(740), - [anon_sym_starts_DASHwith] = ACTIONS(740), - [anon_sym_ends_DASHwith] = ACTIONS(740), - [anon_sym_EQ_TILDE] = ACTIONS(740), - [anon_sym_BANG_TILDE] = ACTIONS(740), - [anon_sym_bit_DASHand] = ACTIONS(740), - [anon_sym_bit_DASHxor] = ACTIONS(740), - [anon_sym_bit_DASHor] = ACTIONS(740), - [anon_sym_and] = ACTIONS(740), - [anon_sym_xor] = ACTIONS(740), - [anon_sym_or] = ACTIONS(740), - [anon_sym_DOT_DOT_LT] = ACTIONS(740), - [anon_sym_DOT_DOT] = ACTIONS(740), - [anon_sym_DOT_DOT_EQ] = ACTIONS(740), - [sym_val_nothing] = ACTIONS(740), - [anon_sym_true] = ACTIONS(740), - [anon_sym_false] = ACTIONS(740), - [aux_sym_val_number_token1] = ACTIONS(740), - [aux_sym_val_number_token2] = ACTIONS(740), - [aux_sym_val_number_token3] = ACTIONS(740), - [aux_sym_val_number_token4] = ACTIONS(740), - [aux_sym_val_number_token5] = ACTIONS(740), - [anon_sym_inf] = ACTIONS(740), - [anon_sym_DASHinf] = ACTIONS(740), - [anon_sym_NaN] = ACTIONS(740), - [anon_sym_0b] = ACTIONS(740), - [anon_sym_0o] = ACTIONS(740), - [anon_sym_0x] = ACTIONS(740), - [sym_val_date] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(740), - [sym__str_single_quotes] = ACTIONS(740), - [sym__str_back_ticks] = ACTIONS(740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), - [anon_sym_err_GT] = ACTIONS(740), - [anon_sym_out_GT] = ACTIONS(740), - [anon_sym_e_GT] = ACTIONS(740), - [anon_sym_o_GT] = ACTIONS(740), - [anon_sym_err_PLUSout_GT] = ACTIONS(740), - [anon_sym_out_PLUSerr_GT] = ACTIONS(740), - [anon_sym_o_PLUSe_GT] = ACTIONS(740), - [anon_sym_e_PLUSo_GT] = ACTIONS(740), - [sym_short_flag] = ACTIONS(740), - [aux_sym_unquoted_token1] = ACTIONS(740), + [282] = { + [sym_cell_path] = STATE(395), + [sym_path] = STATE(268), + [sym_comment] = STATE(282), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_mod] = ACTIONS(725), + [anon_sym_SLASH_SLASH] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_bit_DASHshl] = ACTIONS(725), + [anon_sym_bit_DASHshr] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_LT2] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_not_DASHin] = ACTIONS(725), + [anon_sym_starts_DASHwith] = ACTIONS(725), + [anon_sym_ends_DASHwith] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_bit_DASHand] = ACTIONS(725), + [anon_sym_bit_DASHxor] = ACTIONS(725), + [anon_sym_bit_DASHor] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_err_GT] = ACTIONS(725), + [anon_sym_out_GT] = ACTIONS(725), + [anon_sym_e_GT] = ACTIONS(725), + [anon_sym_o_GT] = ACTIONS(725), + [anon_sym_err_PLUSout_GT] = ACTIONS(725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(725), + [anon_sym_o_PLUSe_GT] = ACTIONS(725), + [anon_sym_e_PLUSo_GT] = ACTIONS(725), + [sym_short_flag] = ACTIONS(725), + [aux_sym_unquoted_token1] = ACTIONS(725), [anon_sym_POUND] = ACTIONS(3), }, - [288] = { - [sym_cell_path] = STATE(420), - [sym_path] = STATE(299), - [sym_comment] = STATE(288), - [ts_builtin_sym_end] = ACTIONS(738), + [283] = { + [sym_cell_path] = STATE(359), + [sym_path] = STATE(268), + [sym_comment] = STATE(283), [anon_sym_SEMI] = ACTIONS(736), [anon_sym_LF] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(736), [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_PIPE] = ACTIONS(736), [anon_sym_DOLLAR] = ACTIONS(736), [anon_sym_GT] = ACTIONS(736), @@ -71458,7 +71148,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(736), [anon_sym_in] = ACTIONS(736), [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_DOT] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_STAR] = ACTIONS(736), [anon_sym_STAR_STAR] = ACTIONS(736), [anon_sym_PLUS_PLUS] = ACTIONS(736), @@ -71519,123 +71210,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(736), [anon_sym_POUND] = ACTIONS(3), }, - [289] = { - [sym_pipeline_parenthesized] = STATE(710), - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3465), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), - [sym_comment] = STATE(289), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(312), - [sym_cmd_identifier] = ACTIONS(277), - [anon_sym_LBRACK] = ACTIONS(179), - [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), - [anon_sym_return] = ACTIONS(213), - [anon_sym_where] = ACTIONS(225), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(229), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(229), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(239), - [aux_sym_val_number_token4] = ACTIONS(239), - [aux_sym_val_number_token5] = ACTIONS(239), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(239), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__str_single_quotes] = ACTIONS(247), - [sym__str_back_ticks] = ACTIONS(247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [284] = { + [sym_cell_path] = STATE(372), + [sym_path] = STATE(268), + [sym_comment] = STATE(284), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_SLASH_SLASH] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_bit_DASHshl] = ACTIONS(713), + [anon_sym_bit_DASHshr] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_LT2] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_not_DASHin] = ACTIONS(713), + [anon_sym_starts_DASHwith] = ACTIONS(713), + [anon_sym_ends_DASHwith] = ACTIONS(713), + [anon_sym_EQ_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_bit_DASHand] = ACTIONS(713), + [anon_sym_bit_DASHxor] = ACTIONS(713), + [anon_sym_bit_DASHor] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_DOT_DOT_LT] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(713), + [sym_val_nothing] = ACTIONS(713), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [aux_sym_val_number_token1] = ACTIONS(713), + [aux_sym_val_number_token2] = ACTIONS(713), + [aux_sym_val_number_token3] = ACTIONS(713), + [aux_sym_val_number_token4] = ACTIONS(713), + [aux_sym_val_number_token5] = ACTIONS(713), + [anon_sym_inf] = ACTIONS(713), + [anon_sym_DASHinf] = ACTIONS(713), + [anon_sym_NaN] = ACTIONS(713), + [anon_sym_0b] = ACTIONS(713), + [anon_sym_0o] = ACTIONS(713), + [anon_sym_0x] = ACTIONS(713), + [sym_val_date] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym__str_single_quotes] = ACTIONS(713), + [sym__str_back_ticks] = ACTIONS(713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(713), + [anon_sym_err_GT] = ACTIONS(713), + [anon_sym_out_GT] = ACTIONS(713), + [anon_sym_e_GT] = ACTIONS(713), + [anon_sym_o_GT] = ACTIONS(713), + [anon_sym_err_PLUSout_GT] = ACTIONS(713), + [anon_sym_out_PLUSerr_GT] = ACTIONS(713), + [anon_sym_o_PLUSe_GT] = ACTIONS(713), + [anon_sym_e_PLUSo_GT] = ACTIONS(713), + [sym_short_flag] = ACTIONS(713), + [aux_sym_unquoted_token1] = ACTIONS(713), + [anon_sym_POUND] = ACTIONS(3), }, - [290] = { - [sym_pipeline] = STATE(707), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3340), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(290), - [aux_sym_pipeline_repeat1] = STATE(322), + [285] = { + [sym_comment] = STATE(285), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(769), + [anon_sym_out_GT] = ACTIONS(769), + [anon_sym_e_GT] = ACTIONS(769), + [anon_sym_o_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT] = ACTIONS(769), + [sym_short_flag] = ACTIONS(769), + [aux_sym_unquoted_token1] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(3), + }, + [286] = { + [sym_pipeline] = STATE(727), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3411), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(286), + [aux_sym_pipeline_repeat1] = STATE(311), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -71671,89 +71440,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [291] = { - [sym_expr_parenthesized] = STATE(347), - [sym_val_number] = STATE(347), - [sym_comment] = STATE(291), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LF] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_DASH_DASH] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_in] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_STAR_STAR] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_mod] = ACTIONS(756), - [anon_sym_SLASH_SLASH] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_bit_DASHshl] = ACTIONS(756), - [anon_sym_bit_DASHshr] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_LT2] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_not_DASHin] = ACTIONS(756), - [anon_sym_starts_DASHwith] = ACTIONS(756), - [anon_sym_ends_DASHwith] = ACTIONS(756), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_bit_DASHand] = ACTIONS(756), - [anon_sym_bit_DASHxor] = ACTIONS(756), - [anon_sym_bit_DASHor] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_xor] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [anon_sym_DOT_DOT_LT] = ACTIONS(756), - [anon_sym_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [sym_val_nothing] = ACTIONS(756), - [anon_sym_true] = ACTIONS(756), - [anon_sym_false] = ACTIONS(756), - [aux_sym_val_number_token1] = ACTIONS(974), - [aux_sym_val_number_token2] = ACTIONS(974), - [aux_sym_val_number_token3] = ACTIONS(974), - [aux_sym_val_number_token4] = ACTIONS(974), - [aux_sym_val_number_token5] = ACTIONS(974), - [anon_sym_inf] = ACTIONS(974), - [anon_sym_DASHinf] = ACTIONS(974), - [anon_sym_NaN] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(756), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [sym__str_single_quotes] = ACTIONS(756), - [sym__str_back_ticks] = ACTIONS(756), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), - [anon_sym_err_GT] = ACTIONS(756), - [anon_sym_out_GT] = ACTIONS(756), - [anon_sym_e_GT] = ACTIONS(756), - [anon_sym_o_GT] = ACTIONS(756), - [anon_sym_err_PLUSout_GT] = ACTIONS(756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(756), - [anon_sym_o_PLUSe_GT] = ACTIONS(756), - [anon_sym_e_PLUSo_GT] = ACTIONS(756), - [sym_short_flag] = ACTIONS(756), - [aux_sym_unquoted_token1] = ACTIONS(756), + [287] = { + [sym_cell_path] = STATE(459), + [sym_path] = STATE(308), + [sym_comment] = STATE(287), + [ts_builtin_sym_end] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_PIPE] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_GT] = ACTIONS(725), + [anon_sym_DASH_DASH] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_in] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(725), + [anon_sym_STAR_STAR] = ACTIONS(725), + [anon_sym_PLUS_PLUS] = ACTIONS(725), + [anon_sym_SLASH] = ACTIONS(725), + [anon_sym_mod] = ACTIONS(725), + [anon_sym_SLASH_SLASH] = ACTIONS(725), + [anon_sym_PLUS] = ACTIONS(725), + [anon_sym_bit_DASHshl] = ACTIONS(725), + [anon_sym_bit_DASHshr] = ACTIONS(725), + [anon_sym_EQ_EQ] = ACTIONS(725), + [anon_sym_BANG_EQ] = ACTIONS(725), + [anon_sym_LT2] = ACTIONS(725), + [anon_sym_LT_EQ] = ACTIONS(725), + [anon_sym_GT_EQ] = ACTIONS(725), + [anon_sym_not_DASHin] = ACTIONS(725), + [anon_sym_starts_DASHwith] = ACTIONS(725), + [anon_sym_ends_DASHwith] = ACTIONS(725), + [anon_sym_EQ_TILDE] = ACTIONS(725), + [anon_sym_BANG_TILDE] = ACTIONS(725), + [anon_sym_bit_DASHand] = ACTIONS(725), + [anon_sym_bit_DASHxor] = ACTIONS(725), + [anon_sym_bit_DASHor] = ACTIONS(725), + [anon_sym_and] = ACTIONS(725), + [anon_sym_xor] = ACTIONS(725), + [anon_sym_or] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_err_GT] = ACTIONS(725), + [anon_sym_out_GT] = ACTIONS(725), + [anon_sym_e_GT] = ACTIONS(725), + [anon_sym_o_GT] = ACTIONS(725), + [anon_sym_err_PLUSout_GT] = ACTIONS(725), + [anon_sym_out_PLUSerr_GT] = ACTIONS(725), + [anon_sym_o_PLUSe_GT] = ACTIONS(725), + [anon_sym_e_PLUSo_GT] = ACTIONS(725), + [sym_short_flag] = ACTIONS(725), + [aux_sym_unquoted_token1] = ACTIONS(725), [anon_sym_POUND] = ACTIONS(3), }, - [292] = { - [sym_cell_path] = STATE(418), - [sym_path] = STATE(299), - [sym_comment] = STATE(292), + [288] = { + [sym_cell_path] = STATE(423), + [sym_path] = STATE(308), + [sym_comment] = STATE(288), [ts_builtin_sym_end] = ACTIONS(746), [anon_sym_SEMI] = ACTIONS(744), [anon_sym_LF] = ACTIONS(746), @@ -71766,7 +71535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(744), [anon_sym_in] = ACTIONS(744), [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(980), [anon_sym_STAR] = ACTIONS(744), [anon_sym_STAR_STAR] = ACTIONS(744), [anon_sym_PLUS_PLUS] = ACTIONS(744), @@ -71827,585 +71596,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(744), [anon_sym_POUND] = ACTIONS(3), }, - [293] = { - [sym_comment] = STATE(293), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_in] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_bit_DASHshl] = ACTIONS(748), - [anon_sym_bit_DASHshr] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_LT2] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_not_DASHin] = ACTIONS(748), - [anon_sym_starts_DASHwith] = ACTIONS(748), - [anon_sym_ends_DASHwith] = ACTIONS(748), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_bit_DASHand] = ACTIONS(748), - [anon_sym_bit_DASHxor] = ACTIONS(748), - [anon_sym_bit_DASHor] = ACTIONS(748), - [anon_sym_and] = ACTIONS(748), - [anon_sym_xor] = ACTIONS(748), - [anon_sym_or] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_err_GT] = ACTIONS(748), - [anon_sym_out_GT] = ACTIONS(748), - [anon_sym_e_GT] = ACTIONS(748), - [anon_sym_o_GT] = ACTIONS(748), - [anon_sym_err_PLUSout_GT] = ACTIONS(748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(748), - [anon_sym_o_PLUSe_GT] = ACTIONS(748), - [anon_sym_e_PLUSo_GT] = ACTIONS(748), - [sym_short_flag] = ACTIONS(748), - [aux_sym_unquoted_token1] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_in] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_bit_DASHshl] = ACTIONS(748), - [anon_sym_bit_DASHshr] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_LT2] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_not_DASHin] = ACTIONS(748), - [anon_sym_starts_DASHwith] = ACTIONS(748), - [anon_sym_ends_DASHwith] = ACTIONS(748), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_bit_DASHand] = ACTIONS(748), - [anon_sym_bit_DASHxor] = ACTIONS(748), - [anon_sym_bit_DASHor] = ACTIONS(748), - [anon_sym_and] = ACTIONS(748), - [anon_sym_xor] = ACTIONS(748), - [anon_sym_or] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_err_GT] = ACTIONS(748), - [anon_sym_out_GT] = ACTIONS(748), - [anon_sym_e_GT] = ACTIONS(748), - [anon_sym_o_GT] = ACTIONS(748), - [anon_sym_err_PLUSout_GT] = ACTIONS(748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(748), - [anon_sym_o_PLUSe_GT] = ACTIONS(748), - [anon_sym_e_PLUSo_GT] = ACTIONS(748), - [sym_short_flag] = ACTIONS(748), - [aux_sym_unquoted_token1] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - }, - [295] = { - [sym_cell_path] = STATE(429), - [sym_path] = STATE(299), - [sym_comment] = STATE(295), - [ts_builtin_sym_end] = ACTIONS(726), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(724), - [anon_sym_LPAREN] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_DASH_DASH] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_in] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(724), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_STAR_STAR] = ACTIONS(724), - [anon_sym_PLUS_PLUS] = ACTIONS(724), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_mod] = ACTIONS(724), - [anon_sym_SLASH_SLASH] = ACTIONS(724), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_bit_DASHshl] = ACTIONS(724), - [anon_sym_bit_DASHshr] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(724), - [anon_sym_BANG_EQ] = ACTIONS(724), - [anon_sym_LT2] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(724), - [anon_sym_GT_EQ] = ACTIONS(724), - [anon_sym_not_DASHin] = ACTIONS(724), - [anon_sym_starts_DASHwith] = ACTIONS(724), - [anon_sym_ends_DASHwith] = ACTIONS(724), - [anon_sym_EQ_TILDE] = ACTIONS(724), - [anon_sym_BANG_TILDE] = ACTIONS(724), - [anon_sym_bit_DASHand] = ACTIONS(724), - [anon_sym_bit_DASHxor] = ACTIONS(724), - [anon_sym_bit_DASHor] = ACTIONS(724), - [anon_sym_and] = ACTIONS(724), - [anon_sym_xor] = ACTIONS(724), - [anon_sym_or] = ACTIONS(724), - [anon_sym_DOT_DOT_LT] = ACTIONS(724), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(724), - [sym_val_nothing] = ACTIONS(724), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [aux_sym_val_number_token1] = ACTIONS(724), - [aux_sym_val_number_token2] = ACTIONS(724), - [aux_sym_val_number_token3] = ACTIONS(724), - [aux_sym_val_number_token4] = ACTIONS(724), - [aux_sym_val_number_token5] = ACTIONS(724), - [anon_sym_inf] = ACTIONS(724), - [anon_sym_DASHinf] = ACTIONS(724), - [anon_sym_NaN] = ACTIONS(724), - [anon_sym_0b] = ACTIONS(724), - [anon_sym_0o] = ACTIONS(724), - [anon_sym_0x] = ACTIONS(724), - [sym_val_date] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [sym__str_single_quotes] = ACTIONS(724), - [sym__str_back_ticks] = ACTIONS(724), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(724), - [anon_sym_err_GT] = ACTIONS(724), - [anon_sym_out_GT] = ACTIONS(724), - [anon_sym_e_GT] = ACTIONS(724), - [anon_sym_o_GT] = ACTIONS(724), - [anon_sym_err_PLUSout_GT] = ACTIONS(724), - [anon_sym_out_PLUSerr_GT] = ACTIONS(724), - [anon_sym_o_PLUSe_GT] = ACTIONS(724), - [anon_sym_e_PLUSo_GT] = ACTIONS(724), - [sym_short_flag] = ACTIONS(724), - [aux_sym_unquoted_token1] = ACTIONS(724), - [anon_sym_POUND] = ACTIONS(3), - }, - [296] = { - [sym_path] = STATE(363), - [sym_comment] = STATE(296), - [aux_sym_cell_path_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(734), - [anon_sym_SEMI] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_DASH_DASH] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(732), - [anon_sym_PLUS_PLUS] = ACTIONS(732), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_mod] = ACTIONS(732), - [anon_sym_SLASH_SLASH] = ACTIONS(732), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_bit_DASHshl] = ACTIONS(732), - [anon_sym_bit_DASHshr] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(732), - [anon_sym_BANG_EQ] = ACTIONS(732), - [anon_sym_LT2] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(732), - [anon_sym_GT_EQ] = ACTIONS(732), - [anon_sym_not_DASHin] = ACTIONS(732), - [anon_sym_starts_DASHwith] = ACTIONS(732), - [anon_sym_ends_DASHwith] = ACTIONS(732), - [anon_sym_EQ_TILDE] = ACTIONS(732), - [anon_sym_BANG_TILDE] = ACTIONS(732), - [anon_sym_bit_DASHand] = ACTIONS(732), - [anon_sym_bit_DASHxor] = ACTIONS(732), - [anon_sym_bit_DASHor] = ACTIONS(732), - [anon_sym_and] = ACTIONS(732), - [anon_sym_xor] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_err_GT] = ACTIONS(732), - [anon_sym_out_GT] = ACTIONS(732), - [anon_sym_e_GT] = ACTIONS(732), - [anon_sym_o_GT] = ACTIONS(732), - [anon_sym_err_PLUSout_GT] = ACTIONS(732), - [anon_sym_out_PLUSerr_GT] = ACTIONS(732), - [anon_sym_o_PLUSe_GT] = ACTIONS(732), - [anon_sym_e_PLUSo_GT] = ACTIONS(732), - [sym_short_flag] = ACTIONS(732), - [aux_sym_unquoted_token1] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(3), - }, - [297] = { - [sym_cell_path] = STATE(416), - [sym_path] = STATE(299), - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(722), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(720), - [anon_sym_LPAREN] = ACTIONS(720), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_DOLLAR] = ACTIONS(720), - [anon_sym_GT] = ACTIONS(720), - [anon_sym_DASH_DASH] = ACTIONS(720), - [anon_sym_DASH] = ACTIONS(720), - [anon_sym_in] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(720), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(720), - [anon_sym_STAR_STAR] = ACTIONS(720), - [anon_sym_PLUS_PLUS] = ACTIONS(720), - [anon_sym_SLASH] = ACTIONS(720), - [anon_sym_mod] = ACTIONS(720), - [anon_sym_SLASH_SLASH] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(720), - [anon_sym_bit_DASHshl] = ACTIONS(720), - [anon_sym_bit_DASHshr] = ACTIONS(720), - [anon_sym_EQ_EQ] = ACTIONS(720), - [anon_sym_BANG_EQ] = ACTIONS(720), - [anon_sym_LT2] = ACTIONS(720), - [anon_sym_LT_EQ] = ACTIONS(720), - [anon_sym_GT_EQ] = ACTIONS(720), - [anon_sym_not_DASHin] = ACTIONS(720), - [anon_sym_starts_DASHwith] = ACTIONS(720), - [anon_sym_ends_DASHwith] = ACTIONS(720), - [anon_sym_EQ_TILDE] = ACTIONS(720), - [anon_sym_BANG_TILDE] = ACTIONS(720), - [anon_sym_bit_DASHand] = ACTIONS(720), - [anon_sym_bit_DASHxor] = ACTIONS(720), - [anon_sym_bit_DASHor] = ACTIONS(720), - [anon_sym_and] = ACTIONS(720), - [anon_sym_xor] = ACTIONS(720), - [anon_sym_or] = ACTIONS(720), - [anon_sym_DOT_DOT_LT] = ACTIONS(720), - [anon_sym_DOT_DOT] = ACTIONS(720), - [anon_sym_DOT_DOT_EQ] = ACTIONS(720), - [sym_val_nothing] = ACTIONS(720), - [anon_sym_true] = ACTIONS(720), - [anon_sym_false] = ACTIONS(720), - [aux_sym_val_number_token1] = ACTIONS(720), - [aux_sym_val_number_token2] = ACTIONS(720), - [aux_sym_val_number_token3] = ACTIONS(720), - [aux_sym_val_number_token4] = ACTIONS(720), - [aux_sym_val_number_token5] = ACTIONS(720), - [anon_sym_inf] = ACTIONS(720), - [anon_sym_DASHinf] = ACTIONS(720), - [anon_sym_NaN] = ACTIONS(720), - [anon_sym_0b] = ACTIONS(720), - [anon_sym_0o] = ACTIONS(720), - [anon_sym_0x] = ACTIONS(720), - [sym_val_date] = ACTIONS(720), - [anon_sym_DQUOTE] = ACTIONS(720), - [sym__str_single_quotes] = ACTIONS(720), - [sym__str_back_ticks] = ACTIONS(720), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(720), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(720), - [anon_sym_err_GT] = ACTIONS(720), - [anon_sym_out_GT] = ACTIONS(720), - [anon_sym_e_GT] = ACTIONS(720), - [anon_sym_o_GT] = ACTIONS(720), - [anon_sym_err_PLUSout_GT] = ACTIONS(720), - [anon_sym_out_PLUSerr_GT] = ACTIONS(720), - [anon_sym_o_PLUSe_GT] = ACTIONS(720), - [anon_sym_e_PLUSo_GT] = ACTIONS(720), - [sym_short_flag] = ACTIONS(720), - [aux_sym_unquoted_token1] = ACTIONS(720), - [anon_sym_POUND] = ACTIONS(3), - }, - [298] = { - [sym_cell_path] = STATE(430), - [sym_path] = STATE(299), - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(708), - [anon_sym_SEMI] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_PIPE] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_GT] = ACTIONS(706), - [anon_sym_DASH_DASH] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_in] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_STAR_STAR] = ACTIONS(706), - [anon_sym_PLUS_PLUS] = ACTIONS(706), - [anon_sym_SLASH] = ACTIONS(706), - [anon_sym_mod] = ACTIONS(706), - [anon_sym_SLASH_SLASH] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(706), - [anon_sym_bit_DASHshl] = ACTIONS(706), - [anon_sym_bit_DASHshr] = ACTIONS(706), - [anon_sym_EQ_EQ] = ACTIONS(706), - [anon_sym_BANG_EQ] = ACTIONS(706), - [anon_sym_LT2] = ACTIONS(706), - [anon_sym_LT_EQ] = ACTIONS(706), - [anon_sym_GT_EQ] = ACTIONS(706), - [anon_sym_not_DASHin] = ACTIONS(706), - [anon_sym_starts_DASHwith] = ACTIONS(706), - [anon_sym_ends_DASHwith] = ACTIONS(706), - [anon_sym_EQ_TILDE] = ACTIONS(706), - [anon_sym_BANG_TILDE] = ACTIONS(706), - [anon_sym_bit_DASHand] = ACTIONS(706), - [anon_sym_bit_DASHxor] = ACTIONS(706), - [anon_sym_bit_DASHor] = ACTIONS(706), - [anon_sym_and] = ACTIONS(706), - [anon_sym_xor] = ACTIONS(706), - [anon_sym_or] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_err_GT] = ACTIONS(706), - [anon_sym_out_GT] = ACTIONS(706), - [anon_sym_e_GT] = ACTIONS(706), - [anon_sym_o_GT] = ACTIONS(706), - [anon_sym_err_PLUSout_GT] = ACTIONS(706), - [anon_sym_out_PLUSerr_GT] = ACTIONS(706), - [anon_sym_o_PLUSe_GT] = ACTIONS(706), - [anon_sym_e_PLUSo_GT] = ACTIONS(706), - [sym_short_flag] = ACTIONS(706), - [aux_sym_unquoted_token1] = ACTIONS(706), - [anon_sym_POUND] = ACTIONS(3), - }, - [299] = { - [sym_path] = STATE(363), - [sym_comment] = STATE(299), - [aux_sym_cell_path_repeat1] = STATE(296), - [ts_builtin_sym_end] = ACTIONS(730), - [anon_sym_SEMI] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_DASH_DASH] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_in] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(728), - [anon_sym_PLUS_PLUS] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(728), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_bit_DASHshl] = ACTIONS(728), - [anon_sym_bit_DASHshr] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(728), - [anon_sym_BANG_EQ] = ACTIONS(728), - [anon_sym_LT2] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(728), - [anon_sym_GT_EQ] = ACTIONS(728), - [anon_sym_not_DASHin] = ACTIONS(728), - [anon_sym_starts_DASHwith] = ACTIONS(728), - [anon_sym_ends_DASHwith] = ACTIONS(728), - [anon_sym_EQ_TILDE] = ACTIONS(728), - [anon_sym_BANG_TILDE] = ACTIONS(728), - [anon_sym_bit_DASHand] = ACTIONS(728), - [anon_sym_bit_DASHxor] = ACTIONS(728), - [anon_sym_bit_DASHor] = ACTIONS(728), - [anon_sym_and] = ACTIONS(728), - [anon_sym_xor] = ACTIONS(728), - [anon_sym_or] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_err_GT] = ACTIONS(728), - [anon_sym_out_GT] = ACTIONS(728), - [anon_sym_e_GT] = ACTIONS(728), - [anon_sym_o_GT] = ACTIONS(728), - [anon_sym_err_PLUSout_GT] = ACTIONS(728), - [anon_sym_out_PLUSerr_GT] = ACTIONS(728), - [anon_sym_o_PLUSe_GT] = ACTIONS(728), - [anon_sym_e_PLUSo_GT] = ACTIONS(728), - [sym_short_flag] = ACTIONS(728), - [aux_sym_unquoted_token1] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(3), - }, - [300] = { - [sym_pipeline] = STATE(699), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3340), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(300), - [aux_sym_pipeline_repeat1] = STATE(322), + [289] = { + [sym_pipeline] = STATE(720), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3411), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(289), + [aux_sym_pipeline_repeat1] = STATE(311), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -72441,56 +71671,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [301] = { - [sym_pipeline] = STATE(716), - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3340), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(301), - [aux_sym_pipeline_repeat1] = STATE(322), - [sym_cmd_identifier] = ACTIONS(167), + [290] = { + [sym_cell_path] = STATE(435), + [sym_path] = STATE(308), + [sym_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_SEMI] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_PIPE] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_GT] = ACTIONS(707), + [anon_sym_DASH_DASH] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_in] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(707), + [anon_sym_STAR_STAR] = ACTIONS(707), + [anon_sym_PLUS_PLUS] = ACTIONS(707), + [anon_sym_SLASH] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_SLASH_SLASH] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(707), + [anon_sym_bit_DASHshl] = ACTIONS(707), + [anon_sym_bit_DASHshr] = ACTIONS(707), + [anon_sym_EQ_EQ] = ACTIONS(707), + [anon_sym_BANG_EQ] = ACTIONS(707), + [anon_sym_LT2] = ACTIONS(707), + [anon_sym_LT_EQ] = ACTIONS(707), + [anon_sym_GT_EQ] = ACTIONS(707), + [anon_sym_not_DASHin] = ACTIONS(707), + [anon_sym_starts_DASHwith] = ACTIONS(707), + [anon_sym_ends_DASHwith] = ACTIONS(707), + [anon_sym_EQ_TILDE] = ACTIONS(707), + [anon_sym_BANG_TILDE] = ACTIONS(707), + [anon_sym_bit_DASHand] = ACTIONS(707), + [anon_sym_bit_DASHxor] = ACTIONS(707), + [anon_sym_bit_DASHor] = ACTIONS(707), + [anon_sym_and] = ACTIONS(707), + [anon_sym_xor] = ACTIONS(707), + [anon_sym_or] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_err_GT] = ACTIONS(707), + [anon_sym_out_GT] = ACTIONS(707), + [anon_sym_e_GT] = ACTIONS(707), + [anon_sym_o_GT] = ACTIONS(707), + [anon_sym_err_PLUSout_GT] = ACTIONS(707), + [anon_sym_out_PLUSerr_GT] = ACTIONS(707), + [anon_sym_o_PLUSe_GT] = ACTIONS(707), + [anon_sym_e_PLUSo_GT] = ACTIONS(707), + [sym_short_flag] = ACTIONS(707), + [aux_sym_unquoted_token1] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(3), + }, + [291] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(291), + [aux_sym_cell_path_repeat1] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_PIPE] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_DASH_DASH] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_in] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(729), + [anon_sym_PLUS_PLUS] = ACTIONS(729), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_SLASH_SLASH] = ACTIONS(729), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_bit_DASHshl] = ACTIONS(729), + [anon_sym_bit_DASHshr] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(729), + [anon_sym_BANG_EQ] = ACTIONS(729), + [anon_sym_LT2] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(729), + [anon_sym_GT_EQ] = ACTIONS(729), + [anon_sym_not_DASHin] = ACTIONS(729), + [anon_sym_starts_DASHwith] = ACTIONS(729), + [anon_sym_ends_DASHwith] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(729), + [anon_sym_BANG_TILDE] = ACTIONS(729), + [anon_sym_bit_DASHand] = ACTIONS(729), + [anon_sym_bit_DASHxor] = ACTIONS(729), + [anon_sym_bit_DASHor] = ACTIONS(729), + [anon_sym_and] = ACTIONS(729), + [anon_sym_xor] = ACTIONS(729), + [anon_sym_or] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_err_GT] = ACTIONS(729), + [anon_sym_out_GT] = ACTIONS(729), + [anon_sym_e_GT] = ACTIONS(729), + [anon_sym_o_GT] = ACTIONS(729), + [anon_sym_err_PLUSout_GT] = ACTIONS(729), + [anon_sym_out_PLUSerr_GT] = ACTIONS(729), + [anon_sym_o_PLUSe_GT] = ACTIONS(729), + [anon_sym_e_PLUSo_GT] = ACTIONS(729), + [sym_short_flag] = ACTIONS(729), + [aux_sym_unquoted_token1] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(3), + }, + [292] = { + [sym_pipeline_parenthesized] = STATE(715), + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3553), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), + [sym_comment] = STATE(292), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(318), + [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -72517,57 +71901,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [302] = { - [sym_pipeline_parenthesized] = STATE(727), - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3465), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), - [sym_comment] = STATE(302), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(312), + [293] = { + [sym_comment] = STATE(293), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(769), + [anon_sym_out_GT] = ACTIONS(769), + [anon_sym_e_GT] = ACTIONS(769), + [anon_sym_o_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT] = ACTIONS(769), + [sym_short_flag] = ACTIONS(769), + [aux_sym_unquoted_token1] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(3), + }, + [294] = { + [sym_pipeline_parenthesized] = STATE(717), + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3553), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), + [sym_comment] = STATE(294), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(318), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -72594,57 +72055,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [303] = { + [295] = { [sym_pipeline_parenthesized] = STATE(729), - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3465), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), - [sym_comment] = STATE(303), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(312), + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3553), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), + [sym_comment] = STATE(295), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(318), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -72671,593 +72132,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), - }, - [304] = { - [sym_cell_path] = STATE(415), - [sym_path] = STATE(299), - [sym_comment] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(714), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(712), - [anon_sym_LPAREN] = ACTIONS(712), - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [anon_sym_GT] = ACTIONS(712), - [anon_sym_DASH_DASH] = ACTIONS(712), - [anon_sym_DASH] = ACTIONS(712), - [anon_sym_in] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(712), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(712), - [anon_sym_STAR_STAR] = ACTIONS(712), - [anon_sym_PLUS_PLUS] = ACTIONS(712), - [anon_sym_SLASH] = ACTIONS(712), - [anon_sym_mod] = ACTIONS(712), - [anon_sym_SLASH_SLASH] = ACTIONS(712), - [anon_sym_PLUS] = ACTIONS(712), - [anon_sym_bit_DASHshl] = ACTIONS(712), - [anon_sym_bit_DASHshr] = ACTIONS(712), - [anon_sym_EQ_EQ] = ACTIONS(712), - [anon_sym_BANG_EQ] = ACTIONS(712), - [anon_sym_LT2] = ACTIONS(712), - [anon_sym_LT_EQ] = ACTIONS(712), - [anon_sym_GT_EQ] = ACTIONS(712), - [anon_sym_not_DASHin] = ACTIONS(712), - [anon_sym_starts_DASHwith] = ACTIONS(712), - [anon_sym_ends_DASHwith] = ACTIONS(712), - [anon_sym_EQ_TILDE] = ACTIONS(712), - [anon_sym_BANG_TILDE] = ACTIONS(712), - [anon_sym_bit_DASHand] = ACTIONS(712), - [anon_sym_bit_DASHxor] = ACTIONS(712), - [anon_sym_bit_DASHor] = ACTIONS(712), - [anon_sym_and] = ACTIONS(712), - [anon_sym_xor] = ACTIONS(712), - [anon_sym_or] = ACTIONS(712), - [anon_sym_DOT_DOT_LT] = ACTIONS(712), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(712), - [sym_val_nothing] = ACTIONS(712), - [anon_sym_true] = ACTIONS(712), - [anon_sym_false] = ACTIONS(712), - [aux_sym_val_number_token1] = ACTIONS(712), - [aux_sym_val_number_token2] = ACTIONS(712), - [aux_sym_val_number_token3] = ACTIONS(712), - [aux_sym_val_number_token4] = ACTIONS(712), - [aux_sym_val_number_token5] = ACTIONS(712), - [anon_sym_inf] = ACTIONS(712), - [anon_sym_DASHinf] = ACTIONS(712), - [anon_sym_NaN] = ACTIONS(712), - [anon_sym_0b] = ACTIONS(712), - [anon_sym_0o] = ACTIONS(712), - [anon_sym_0x] = ACTIONS(712), - [sym_val_date] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [sym__str_single_quotes] = ACTIONS(712), - [sym__str_back_ticks] = ACTIONS(712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(712), - [anon_sym_err_GT] = ACTIONS(712), - [anon_sym_out_GT] = ACTIONS(712), - [anon_sym_e_GT] = ACTIONS(712), - [anon_sym_o_GT] = ACTIONS(712), - [anon_sym_err_PLUSout_GT] = ACTIONS(712), - [anon_sym_out_PLUSerr_GT] = ACTIONS(712), - [anon_sym_o_PLUSe_GT] = ACTIONS(712), - [anon_sym_e_PLUSo_GT] = ACTIONS(712), - [sym_short_flag] = ACTIONS(712), - [aux_sym_unquoted_token1] = ACTIONS(712), - [anon_sym_POUND] = ACTIONS(3), - }, - [305] = { - [sym_path] = STATE(363), - [sym_comment] = STATE(305), - [aux_sym_cell_path_repeat1] = STATE(305), - [ts_builtin_sym_end] = ACTIONS(701), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_PIPE] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_DASH_DASH] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_in] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_STAR_STAR] = ACTIONS(699), - [anon_sym_PLUS_PLUS] = ACTIONS(699), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_mod] = ACTIONS(699), - [anon_sym_SLASH_SLASH] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_bit_DASHshl] = ACTIONS(699), - [anon_sym_bit_DASHshr] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(699), - [anon_sym_BANG_EQ] = ACTIONS(699), - [anon_sym_LT2] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(699), - [anon_sym_GT_EQ] = ACTIONS(699), - [anon_sym_not_DASHin] = ACTIONS(699), - [anon_sym_starts_DASHwith] = ACTIONS(699), - [anon_sym_ends_DASHwith] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(699), - [anon_sym_BANG_TILDE] = ACTIONS(699), - [anon_sym_bit_DASHand] = ACTIONS(699), - [anon_sym_bit_DASHxor] = ACTIONS(699), - [anon_sym_bit_DASHor] = ACTIONS(699), - [anon_sym_and] = ACTIONS(699), - [anon_sym_xor] = ACTIONS(699), - [anon_sym_or] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_err_GT] = ACTIONS(699), - [anon_sym_out_GT] = ACTIONS(699), - [anon_sym_e_GT] = ACTIONS(699), - [anon_sym_o_GT] = ACTIONS(699), - [anon_sym_err_PLUSout_GT] = ACTIONS(699), - [anon_sym_out_PLUSerr_GT] = ACTIONS(699), - [anon_sym_o_PLUSe_GT] = ACTIONS(699), - [anon_sym_e_PLUSo_GT] = ACTIONS(699), - [sym_short_flag] = ACTIONS(699), - [aux_sym_unquoted_token1] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [306] = { - [sym_comment] = STATE(306), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(3), - }, - [307] = { - [sym_comment] = STATE(307), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [308] = { - [sym_cell_path] = STATE(419), - [sym_path] = STATE(299), - [sym_comment] = STATE(308), - [ts_builtin_sym_end] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(716), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(716), - [anon_sym_LPAREN] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(716), - [anon_sym_GT] = ACTIONS(716), - [anon_sym_DASH_DASH] = ACTIONS(716), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_in] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(716), - [anon_sym_DOT] = ACTIONS(970), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_STAR_STAR] = ACTIONS(716), - [anon_sym_PLUS_PLUS] = ACTIONS(716), - [anon_sym_SLASH] = ACTIONS(716), - [anon_sym_mod] = ACTIONS(716), - [anon_sym_SLASH_SLASH] = ACTIONS(716), - [anon_sym_PLUS] = ACTIONS(716), - [anon_sym_bit_DASHshl] = ACTIONS(716), - [anon_sym_bit_DASHshr] = ACTIONS(716), - [anon_sym_EQ_EQ] = ACTIONS(716), - [anon_sym_BANG_EQ] = ACTIONS(716), - [anon_sym_LT2] = ACTIONS(716), - [anon_sym_LT_EQ] = ACTIONS(716), - [anon_sym_GT_EQ] = ACTIONS(716), - [anon_sym_not_DASHin] = ACTIONS(716), - [anon_sym_starts_DASHwith] = ACTIONS(716), - [anon_sym_ends_DASHwith] = ACTIONS(716), - [anon_sym_EQ_TILDE] = ACTIONS(716), - [anon_sym_BANG_TILDE] = ACTIONS(716), - [anon_sym_bit_DASHand] = ACTIONS(716), - [anon_sym_bit_DASHxor] = ACTIONS(716), - [anon_sym_bit_DASHor] = ACTIONS(716), - [anon_sym_and] = ACTIONS(716), - [anon_sym_xor] = ACTIONS(716), - [anon_sym_or] = ACTIONS(716), - [anon_sym_DOT_DOT_LT] = ACTIONS(716), - [anon_sym_DOT_DOT] = ACTIONS(716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(716), - [sym_val_nothing] = ACTIONS(716), - [anon_sym_true] = ACTIONS(716), - [anon_sym_false] = ACTIONS(716), - [aux_sym_val_number_token1] = ACTIONS(716), - [aux_sym_val_number_token2] = ACTIONS(716), - [aux_sym_val_number_token3] = ACTIONS(716), - [aux_sym_val_number_token4] = ACTIONS(716), - [aux_sym_val_number_token5] = ACTIONS(716), - [anon_sym_inf] = ACTIONS(716), - [anon_sym_DASHinf] = ACTIONS(716), - [anon_sym_NaN] = ACTIONS(716), - [anon_sym_0b] = ACTIONS(716), - [anon_sym_0o] = ACTIONS(716), - [anon_sym_0x] = ACTIONS(716), - [sym_val_date] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(716), - [sym__str_single_quotes] = ACTIONS(716), - [sym__str_back_ticks] = ACTIONS(716), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(716), - [anon_sym_err_GT] = ACTIONS(716), - [anon_sym_out_GT] = ACTIONS(716), - [anon_sym_e_GT] = ACTIONS(716), - [anon_sym_o_GT] = ACTIONS(716), - [anon_sym_err_PLUSout_GT] = ACTIONS(716), - [anon_sym_out_PLUSerr_GT] = ACTIONS(716), - [anon_sym_o_PLUSe_GT] = ACTIONS(716), - [anon_sym_e_PLUSo_GT] = ACTIONS(716), - [sym_short_flag] = ACTIONS(716), - [aux_sym_unquoted_token1] = ACTIONS(716), - [anon_sym_POUND] = ACTIONS(3), - }, - [309] = { - [sym_comment] = STATE(309), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_in] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_mod] = ACTIONS(781), - [anon_sym_SLASH_SLASH] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_bit_DASHshl] = ACTIONS(781), - [anon_sym_bit_DASHshr] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT2] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_not_DASHin] = ACTIONS(781), - [anon_sym_starts_DASHwith] = ACTIONS(781), - [anon_sym_ends_DASHwith] = ACTIONS(781), - [anon_sym_EQ_TILDE] = ACTIONS(781), - [anon_sym_BANG_TILDE] = ACTIONS(781), - [anon_sym_bit_DASHand] = ACTIONS(781), - [anon_sym_bit_DASHxor] = ACTIONS(781), - [anon_sym_bit_DASHor] = ACTIONS(781), - [anon_sym_and] = ACTIONS(781), - [anon_sym_xor] = ACTIONS(781), - [anon_sym_or] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_err_GT] = ACTIONS(781), - [anon_sym_out_GT] = ACTIONS(781), - [anon_sym_e_GT] = ACTIONS(781), - [anon_sym_o_GT] = ACTIONS(781), - [anon_sym_err_PLUSout_GT] = ACTIONS(781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(781), - [anon_sym_o_PLUSe_GT] = ACTIONS(781), - [anon_sym_e_PLUSo_GT] = ACTIONS(781), - [sym_short_flag] = ACTIONS(781), - [aux_sym_unquoted_token1] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(3), - }, - [310] = { - [sym_comment] = STATE(310), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_in] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(789), - [anon_sym_SLASH_SLASH] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_bit_DASHshl] = ACTIONS(789), - [anon_sym_bit_DASHshr] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_not_DASHin] = ACTIONS(789), - [anon_sym_starts_DASHwith] = ACTIONS(789), - [anon_sym_ends_DASHwith] = ACTIONS(789), - [anon_sym_EQ_TILDE] = ACTIONS(789), - [anon_sym_BANG_TILDE] = ACTIONS(789), - [anon_sym_bit_DASHand] = ACTIONS(789), - [anon_sym_bit_DASHxor] = ACTIONS(789), - [anon_sym_bit_DASHor] = ACTIONS(789), - [anon_sym_and] = ACTIONS(789), - [anon_sym_xor] = ACTIONS(789), - [anon_sym_or] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [sym_short_flag] = ACTIONS(789), - [aux_sym_unquoted_token1] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(3), - }, - [311] = { - [sym__ctrl_expression] = STATE(2896), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3373), - [sym_where_command] = STATE(2889), - [sym__expression] = STATE(2198), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(2869), - [sym_comment] = STATE(311), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(328), + [296] = { + [sym_pipeline_parenthesized] = STATE(728), + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3553), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), + [sym_comment] = STATE(296), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(318), [sym_cmd_identifier] = ACTIONS(277), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), - [anon_sym_break] = ACTIONS(191), - [anon_sym_continue] = ACTIONS(193), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), + [anon_sym_if] = ACTIONS(283), [anon_sym_match] = ACTIONS(205), [anon_sym_LBRACE] = ACTIONS(207), - [anon_sym_try] = ACTIONS(211), + [anon_sym_try] = ACTIONS(285), [anon_sym_return] = ACTIONS(213), [anon_sym_where] = ACTIONS(225), [anon_sym_not] = ACTIONS(227), @@ -73284,48 +72209,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), }, - [312] = { - [sym__ctrl_expression] = STATE(3088), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_pipe_element_parenthesized_last] = STATE(3535), - [sym_where_command] = STATE(3087), - [sym__expression] = STATE(2353), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3085), - [sym_comment] = STATE(312), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(328), - [sym_cmd_identifier] = ACTIONS(277), + [297] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(297), + [aux_sym_cell_path_repeat1] = STATE(291), + [ts_builtin_sym_end] = ACTIONS(742), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(740), + [anon_sym_LPAREN] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH_DASH] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(740), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(740), + [anon_sym_PLUS_PLUS] = ACTIONS(740), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(740), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(740), + [anon_sym_BANG_EQ] = ACTIONS(740), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(740), + [anon_sym_GT_EQ] = ACTIONS(740), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(740), + [anon_sym_BANG_TILDE] = ACTIONS(740), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(740), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(740), + [aux_sym_val_number_token4] = ACTIONS(740), + [aux_sym_val_number_token5] = ACTIONS(740), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(740), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [sym__str_single_quotes] = ACTIONS(740), + [sym__str_back_ticks] = ACTIONS(740), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(740), + [anon_sym_err_GT] = ACTIONS(740), + [anon_sym_out_GT] = ACTIONS(740), + [anon_sym_e_GT] = ACTIONS(740), + [anon_sym_o_GT] = ACTIONS(740), + [anon_sym_err_PLUSout_GT] = ACTIONS(740), + [anon_sym_out_PLUSerr_GT] = ACTIONS(740), + [anon_sym_o_PLUSe_GT] = ACTIONS(740), + [anon_sym_e_PLUSo_GT] = ACTIONS(740), + [sym_short_flag] = ACTIONS(740), + [aux_sym_unquoted_token1] = ACTIONS(740), + [anon_sym_POUND] = ACTIONS(3), + }, + [298] = { + [sym_cell_path] = STATE(434), + [sym_path] = STATE(308), + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_PIPE] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_GT] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_in] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(717), + [anon_sym_STAR_STAR] = ACTIONS(717), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_SLASH] = ACTIONS(717), + [anon_sym_mod] = ACTIONS(717), + [anon_sym_SLASH_SLASH] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(717), + [anon_sym_bit_DASHshl] = ACTIONS(717), + [anon_sym_bit_DASHshr] = ACTIONS(717), + [anon_sym_EQ_EQ] = ACTIONS(717), + [anon_sym_BANG_EQ] = ACTIONS(717), + [anon_sym_LT2] = ACTIONS(717), + [anon_sym_LT_EQ] = ACTIONS(717), + [anon_sym_GT_EQ] = ACTIONS(717), + [anon_sym_not_DASHin] = ACTIONS(717), + [anon_sym_starts_DASHwith] = ACTIONS(717), + [anon_sym_ends_DASHwith] = ACTIONS(717), + [anon_sym_EQ_TILDE] = ACTIONS(717), + [anon_sym_BANG_TILDE] = ACTIONS(717), + [anon_sym_bit_DASHand] = ACTIONS(717), + [anon_sym_bit_DASHxor] = ACTIONS(717), + [anon_sym_bit_DASHor] = ACTIONS(717), + [anon_sym_and] = ACTIONS(717), + [anon_sym_xor] = ACTIONS(717), + [anon_sym_or] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_err_GT] = ACTIONS(717), + [anon_sym_out_GT] = ACTIONS(717), + [anon_sym_e_GT] = ACTIONS(717), + [anon_sym_o_GT] = ACTIONS(717), + [anon_sym_err_PLUSout_GT] = ACTIONS(717), + [anon_sym_out_PLUSerr_GT] = ACTIONS(717), + [anon_sym_o_PLUSe_GT] = ACTIONS(717), + [anon_sym_e_PLUSo_GT] = ACTIONS(717), + [sym_short_flag] = ACTIONS(717), + [aux_sym_unquoted_token1] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(3), + }, + [299] = { + [sym_cell_path] = STATE(445), + [sym_path] = STATE(308), + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(738), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_GT] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(736), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_in] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(736), + [anon_sym_STAR_STAR] = ACTIONS(736), + [anon_sym_PLUS_PLUS] = ACTIONS(736), + [anon_sym_SLASH] = ACTIONS(736), + [anon_sym_mod] = ACTIONS(736), + [anon_sym_SLASH_SLASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_bit_DASHshl] = ACTIONS(736), + [anon_sym_bit_DASHshr] = ACTIONS(736), + [anon_sym_EQ_EQ] = ACTIONS(736), + [anon_sym_BANG_EQ] = ACTIONS(736), + [anon_sym_LT2] = ACTIONS(736), + [anon_sym_LT_EQ] = ACTIONS(736), + [anon_sym_GT_EQ] = ACTIONS(736), + [anon_sym_not_DASHin] = ACTIONS(736), + [anon_sym_starts_DASHwith] = ACTIONS(736), + [anon_sym_ends_DASHwith] = ACTIONS(736), + [anon_sym_EQ_TILDE] = ACTIONS(736), + [anon_sym_BANG_TILDE] = ACTIONS(736), + [anon_sym_bit_DASHand] = ACTIONS(736), + [anon_sym_bit_DASHxor] = ACTIONS(736), + [anon_sym_bit_DASHor] = ACTIONS(736), + [anon_sym_and] = ACTIONS(736), + [anon_sym_xor] = ACTIONS(736), + [anon_sym_or] = ACTIONS(736), + [anon_sym_DOT_DOT_LT] = ACTIONS(736), + [anon_sym_DOT_DOT] = ACTIONS(736), + [anon_sym_DOT_DOT_EQ] = ACTIONS(736), + [sym_val_nothing] = ACTIONS(736), + [anon_sym_true] = ACTIONS(736), + [anon_sym_false] = ACTIONS(736), + [aux_sym_val_number_token1] = ACTIONS(736), + [aux_sym_val_number_token2] = ACTIONS(736), + [aux_sym_val_number_token3] = ACTIONS(736), + [aux_sym_val_number_token4] = ACTIONS(736), + [aux_sym_val_number_token5] = ACTIONS(736), + [anon_sym_inf] = ACTIONS(736), + [anon_sym_DASHinf] = ACTIONS(736), + [anon_sym_NaN] = ACTIONS(736), + [anon_sym_0b] = ACTIONS(736), + [anon_sym_0o] = ACTIONS(736), + [anon_sym_0x] = ACTIONS(736), + [sym_val_date] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [sym__str_single_quotes] = ACTIONS(736), + [sym__str_back_ticks] = ACTIONS(736), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(736), + [anon_sym_err_GT] = ACTIONS(736), + [anon_sym_out_GT] = ACTIONS(736), + [anon_sym_e_GT] = ACTIONS(736), + [anon_sym_o_GT] = ACTIONS(736), + [anon_sym_err_PLUSout_GT] = ACTIONS(736), + [anon_sym_out_PLUSerr_GT] = ACTIONS(736), + [anon_sym_o_PLUSe_GT] = ACTIONS(736), + [anon_sym_e_PLUSo_GT] = ACTIONS(736), + [sym_short_flag] = ACTIONS(736), + [aux_sym_unquoted_token1] = ACTIONS(736), + [anon_sym_POUND] = ACTIONS(3), + }, + [300] = { + [sym_expr_parenthesized] = STATE(351), + [sym_val_number] = STATE(351), + [sym_comment] = STATE(300), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LF] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_in] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_bit_DASHshl] = ACTIONS(758), + [anon_sym_bit_DASHshr] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_LT2] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_not_DASHin] = ACTIONS(758), + [anon_sym_starts_DASHwith] = ACTIONS(758), + [anon_sym_ends_DASHwith] = ACTIONS(758), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_bit_DASHand] = ACTIONS(758), + [anon_sym_bit_DASHxor] = ACTIONS(758), + [anon_sym_bit_DASHor] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_DOT_DOT_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(758), + [sym_val_nothing] = ACTIONS(758), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [aux_sym_val_number_token1] = ACTIONS(987), + [aux_sym_val_number_token2] = ACTIONS(987), + [aux_sym_val_number_token3] = ACTIONS(987), + [aux_sym_val_number_token4] = ACTIONS(987), + [aux_sym_val_number_token5] = ACTIONS(987), + [anon_sym_inf] = ACTIONS(987), + [anon_sym_DASHinf] = ACTIONS(987), + [anon_sym_NaN] = ACTIONS(987), + [anon_sym_0b] = ACTIONS(758), + [anon_sym_0o] = ACTIONS(758), + [anon_sym_0x] = ACTIONS(758), + [sym_val_date] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym__str_single_quotes] = ACTIONS(758), + [sym__str_back_ticks] = ACTIONS(758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(758), + [anon_sym_err_GT] = ACTIONS(758), + [anon_sym_out_GT] = ACTIONS(758), + [anon_sym_e_GT] = ACTIONS(758), + [anon_sym_o_GT] = ACTIONS(758), + [anon_sym_err_PLUSout_GT] = ACTIONS(758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(758), + [anon_sym_o_PLUSe_GT] = ACTIONS(758), + [anon_sym_e_PLUSo_GT] = ACTIONS(758), + [sym_short_flag] = ACTIONS(758), + [aux_sym_unquoted_token1] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(3), + }, + [301] = { + [sym_pipeline] = STATE(726), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3411), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(301), + [aux_sym_pipeline_repeat1] = STATE(311), + [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -73360,11 +72594,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(247), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), - [anon_sym_CARET] = ACTIONS(279), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), }, - [313] = { - [sym_comment] = STATE(313), + [302] = { + [sym_cell_path] = STATE(444), + [sym_path] = STATE(308), + [sym_comment] = STATE(302), [ts_builtin_sym_end] = ACTIONS(750), [anon_sym_SEMI] = ACTIONS(748), [anon_sym_LF] = ACTIONS(750), @@ -73377,9 +72613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(748), [anon_sym_in] = ACTIONS(748), [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), + [anon_sym_DOT] = ACTIONS(980), [anon_sym_STAR] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(981), [anon_sym_STAR_STAR] = ACTIONS(748), [anon_sym_PLUS_PLUS] = ACTIONS(748), [anon_sym_SLASH] = ACTIONS(748), @@ -73439,197 +72674,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(748), [anon_sym_POUND] = ACTIONS(3), }, - [314] = { - [sym_comment] = STATE(314), - [ts_builtin_sym_end] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_PIPE] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_GT] = ACTIONS(748), - [anon_sym_DASH_DASH] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_in] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_STAR] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(981), - [anon_sym_STAR_STAR] = ACTIONS(748), - [anon_sym_PLUS_PLUS] = ACTIONS(748), - [anon_sym_SLASH] = ACTIONS(748), - [anon_sym_mod] = ACTIONS(748), - [anon_sym_SLASH_SLASH] = ACTIONS(748), - [anon_sym_PLUS] = ACTIONS(748), - [anon_sym_bit_DASHshl] = ACTIONS(748), - [anon_sym_bit_DASHshr] = ACTIONS(748), - [anon_sym_EQ_EQ] = ACTIONS(748), - [anon_sym_BANG_EQ] = ACTIONS(748), - [anon_sym_LT2] = ACTIONS(748), - [anon_sym_LT_EQ] = ACTIONS(748), - [anon_sym_GT_EQ] = ACTIONS(748), - [anon_sym_not_DASHin] = ACTIONS(748), - [anon_sym_starts_DASHwith] = ACTIONS(748), - [anon_sym_ends_DASHwith] = ACTIONS(748), - [anon_sym_EQ_TILDE] = ACTIONS(748), - [anon_sym_BANG_TILDE] = ACTIONS(748), - [anon_sym_bit_DASHand] = ACTIONS(748), - [anon_sym_bit_DASHxor] = ACTIONS(748), - [anon_sym_bit_DASHor] = ACTIONS(748), - [anon_sym_and] = ACTIONS(748), - [anon_sym_xor] = ACTIONS(748), - [anon_sym_or] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_err_GT] = ACTIONS(748), - [anon_sym_out_GT] = ACTIONS(748), - [anon_sym_e_GT] = ACTIONS(748), - [anon_sym_o_GT] = ACTIONS(748), - [anon_sym_err_PLUSout_GT] = ACTIONS(748), - [anon_sym_out_PLUSerr_GT] = ACTIONS(748), - [anon_sym_o_PLUSe_GT] = ACTIONS(748), - [anon_sym_e_PLUSo_GT] = ACTIONS(748), - [sym_short_flag] = ACTIONS(748), - [aux_sym_unquoted_token1] = ACTIONS(748), + [303] = { + [sym_cell_path] = STATE(432), + [sym_path] = STATE(308), + [sym_comment] = STATE(303), + [ts_builtin_sym_end] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(721), + [anon_sym_LPAREN] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_DASH_DASH] = ACTIONS(721), + [anon_sym_DASH] = ACTIONS(721), + [anon_sym_in] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(721), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(721), + [anon_sym_STAR_STAR] = ACTIONS(721), + [anon_sym_PLUS_PLUS] = ACTIONS(721), + [anon_sym_SLASH] = ACTIONS(721), + [anon_sym_mod] = ACTIONS(721), + [anon_sym_SLASH_SLASH] = ACTIONS(721), + [anon_sym_PLUS] = ACTIONS(721), + [anon_sym_bit_DASHshl] = ACTIONS(721), + [anon_sym_bit_DASHshr] = ACTIONS(721), + [anon_sym_EQ_EQ] = ACTIONS(721), + [anon_sym_BANG_EQ] = ACTIONS(721), + [anon_sym_LT2] = ACTIONS(721), + [anon_sym_LT_EQ] = ACTIONS(721), + [anon_sym_GT_EQ] = ACTIONS(721), + [anon_sym_not_DASHin] = ACTIONS(721), + [anon_sym_starts_DASHwith] = ACTIONS(721), + [anon_sym_ends_DASHwith] = ACTIONS(721), + [anon_sym_EQ_TILDE] = ACTIONS(721), + [anon_sym_BANG_TILDE] = ACTIONS(721), + [anon_sym_bit_DASHand] = ACTIONS(721), + [anon_sym_bit_DASHxor] = ACTIONS(721), + [anon_sym_bit_DASHor] = ACTIONS(721), + [anon_sym_and] = ACTIONS(721), + [anon_sym_xor] = ACTIONS(721), + [anon_sym_or] = ACTIONS(721), + [anon_sym_DOT_DOT_LT] = ACTIONS(721), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(721), + [sym_val_nothing] = ACTIONS(721), + [anon_sym_true] = ACTIONS(721), + [anon_sym_false] = ACTIONS(721), + [aux_sym_val_number_token1] = ACTIONS(721), + [aux_sym_val_number_token2] = ACTIONS(721), + [aux_sym_val_number_token3] = ACTIONS(721), + [aux_sym_val_number_token4] = ACTIONS(721), + [aux_sym_val_number_token5] = ACTIONS(721), + [anon_sym_inf] = ACTIONS(721), + [anon_sym_DASHinf] = ACTIONS(721), + [anon_sym_NaN] = ACTIONS(721), + [anon_sym_0b] = ACTIONS(721), + [anon_sym_0o] = ACTIONS(721), + [anon_sym_0x] = ACTIONS(721), + [sym_val_date] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(721), + [sym__str_single_quotes] = ACTIONS(721), + [sym__str_back_ticks] = ACTIONS(721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(721), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(721), + [anon_sym_err_GT] = ACTIONS(721), + [anon_sym_out_GT] = ACTIONS(721), + [anon_sym_e_GT] = ACTIONS(721), + [anon_sym_o_GT] = ACTIONS(721), + [anon_sym_err_PLUSout_GT] = ACTIONS(721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(721), + [anon_sym_o_PLUSe_GT] = ACTIONS(721), + [anon_sym_e_PLUSo_GT] = ACTIONS(721), + [sym_short_flag] = ACTIONS(721), + [aux_sym_unquoted_token1] = ACTIONS(721), [anon_sym_POUND] = ACTIONS(3), }, - [315] = { - [sym__command_name] = STATE(591), - [sym_scope_pattern] = STATE(546), - [sym_wild_card] = STATE(589), - [sym_command_list] = STATE(587), - [sym_val_string] = STATE(516), - [sym__str_double_quotes] = STATE(524), - [sym_comment] = STATE(315), - [anon_sym_export] = ACTIONS(983), - [anon_sym_alias] = ACTIONS(983), - [anon_sym_let] = ACTIONS(983), - [anon_sym_let_DASHenv] = ACTIONS(983), - [anon_sym_mut] = ACTIONS(983), - [anon_sym_const] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(983), - [sym_cmd_identifier] = ACTIONS(985), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_def] = ACTIONS(983), - [anon_sym_def_DASHenv] = ACTIONS(983), - [anon_sym_export_DASHenv] = ACTIONS(983), - [anon_sym_extern] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_use] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_error] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_loop] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [anon_sym_do] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_try] = ACTIONS(983), - [anon_sym_return] = ACTIONS(983), - [anon_sym_source] = ACTIONS(983), - [anon_sym_source_DASHenv] = ACTIONS(983), - [anon_sym_register] = ACTIONS(983), - [anon_sym_hide] = ACTIONS(983), - [anon_sym_hide_DASHenv] = ACTIONS(983), - [anon_sym_overlay] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_where] = ACTIONS(983), - [anon_sym_not] = ACTIONS(983), - [anon_sym_DOT_DOT_LT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [sym_val_nothing] = ACTIONS(983), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [aux_sym_val_number_token1] = ACTIONS(983), - [aux_sym_val_number_token2] = ACTIONS(983), - [aux_sym_val_number_token3] = ACTIONS(983), - [aux_sym_val_number_token4] = ACTIONS(983), - [aux_sym_val_number_token5] = ACTIONS(983), - [anon_sym_inf] = ACTIONS(983), - [anon_sym_DASHinf] = ACTIONS(983), - [anon_sym_NaN] = ACTIONS(983), - [anon_sym_0b] = ACTIONS(983), - [anon_sym_0o] = ACTIONS(983), - [anon_sym_0x] = ACTIONS(983), - [sym_val_date] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), + [304] = { + [sym_cell_path] = STATE(398), + [sym_path] = STATE(308), + [sym_comment] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(713), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(713), + [anon_sym_LPAREN] = ACTIONS(713), + [anon_sym_PIPE] = ACTIONS(713), + [anon_sym_DOLLAR] = ACTIONS(713), + [anon_sym_GT] = ACTIONS(713), + [anon_sym_DASH_DASH] = ACTIONS(713), + [anon_sym_DASH] = ACTIONS(713), + [anon_sym_in] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(713), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(713), + [anon_sym_STAR_STAR] = ACTIONS(713), + [anon_sym_PLUS_PLUS] = ACTIONS(713), + [anon_sym_SLASH] = ACTIONS(713), + [anon_sym_mod] = ACTIONS(713), + [anon_sym_SLASH_SLASH] = ACTIONS(713), + [anon_sym_PLUS] = ACTIONS(713), + [anon_sym_bit_DASHshl] = ACTIONS(713), + [anon_sym_bit_DASHshr] = ACTIONS(713), + [anon_sym_EQ_EQ] = ACTIONS(713), + [anon_sym_BANG_EQ] = ACTIONS(713), + [anon_sym_LT2] = ACTIONS(713), + [anon_sym_LT_EQ] = ACTIONS(713), + [anon_sym_GT_EQ] = ACTIONS(713), + [anon_sym_not_DASHin] = ACTIONS(713), + [anon_sym_starts_DASHwith] = ACTIONS(713), + [anon_sym_ends_DASHwith] = ACTIONS(713), + [anon_sym_EQ_TILDE] = ACTIONS(713), + [anon_sym_BANG_TILDE] = ACTIONS(713), + [anon_sym_bit_DASHand] = ACTIONS(713), + [anon_sym_bit_DASHxor] = ACTIONS(713), + [anon_sym_bit_DASHor] = ACTIONS(713), + [anon_sym_and] = ACTIONS(713), + [anon_sym_xor] = ACTIONS(713), + [anon_sym_or] = ACTIONS(713), + [anon_sym_DOT_DOT_LT] = ACTIONS(713), + [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_DOT_DOT_EQ] = ACTIONS(713), + [sym_val_nothing] = ACTIONS(713), + [anon_sym_true] = ACTIONS(713), + [anon_sym_false] = ACTIONS(713), + [aux_sym_val_number_token1] = ACTIONS(713), + [aux_sym_val_number_token2] = ACTIONS(713), + [aux_sym_val_number_token3] = ACTIONS(713), + [aux_sym_val_number_token4] = ACTIONS(713), + [aux_sym_val_number_token5] = ACTIONS(713), + [anon_sym_inf] = ACTIONS(713), + [anon_sym_DASHinf] = ACTIONS(713), + [anon_sym_NaN] = ACTIONS(713), + [anon_sym_0b] = ACTIONS(713), + [anon_sym_0o] = ACTIONS(713), + [anon_sym_0x] = ACTIONS(713), + [sym_val_date] = ACTIONS(713), + [anon_sym_DQUOTE] = ACTIONS(713), + [sym__str_single_quotes] = ACTIONS(713), + [sym__str_back_ticks] = ACTIONS(713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(713), + [anon_sym_err_GT] = ACTIONS(713), + [anon_sym_out_GT] = ACTIONS(713), + [anon_sym_e_GT] = ACTIONS(713), + [anon_sym_o_GT] = ACTIONS(713), + [anon_sym_err_PLUSout_GT] = ACTIONS(713), + [anon_sym_out_PLUSerr_GT] = ACTIONS(713), + [anon_sym_o_PLUSe_GT] = ACTIONS(713), + [anon_sym_e_PLUSo_GT] = ACTIONS(713), + [sym_short_flag] = ACTIONS(713), + [aux_sym_unquoted_token1] = ACTIONS(713), [anon_sym_POUND] = ACTIONS(3), }, - [316] = { - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3048), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(316), - [aux_sym_pipeline_repeat1] = STATE(334), + [305] = { + [sym_comment] = STATE(305), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_err_GT] = ACTIONS(779), + [anon_sym_out_GT] = ACTIONS(779), + [anon_sym_e_GT] = ACTIONS(779), + [anon_sym_o_GT] = ACTIONS(779), + [anon_sym_err_PLUSout_GT] = ACTIONS(779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(779), + [anon_sym_o_PLUSe_GT] = ACTIONS(779), + [anon_sym_e_PLUSo_GT] = ACTIONS(779), + [sym_short_flag] = ACTIONS(779), + [aux_sym_unquoted_token1] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(3), + }, + [306] = { + [sym_comment] = STATE(306), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [sym_short_flag] = ACTIONS(775), + [aux_sym_unquoted_token1] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [307] = { + [sym_pipeline] = STATE(700), + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3411), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(307), + [aux_sym_pipeline_repeat1] = STATE(311), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -73665,427 +73057,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [317] = { - [sym_comment] = STATE(317), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(777), - [anon_sym_out_GT] = ACTIONS(777), - [anon_sym_e_GT] = ACTIONS(777), - [anon_sym_o_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT] = ACTIONS(777), - [sym_short_flag] = ACTIONS(777), - [aux_sym_unquoted_token1] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(3), - }, - [318] = { - [sym_comment] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [319] = { - [sym_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(3), - }, - [320] = { - [sym_expr_parenthesized] = STATE(421), - [sym_val_number] = STATE(421), - [sym_comment] = STATE(320), - [ts_builtin_sym_end] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LF] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(756), - [anon_sym_DOLLAR] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(756), - [anon_sym_DASH_DASH] = ACTIONS(756), - [anon_sym_DASH] = ACTIONS(756), - [anon_sym_in] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_STAR] = ACTIONS(756), - [anon_sym_STAR_STAR] = ACTIONS(756), - [anon_sym_PLUS_PLUS] = ACTIONS(756), - [anon_sym_SLASH] = ACTIONS(756), - [anon_sym_mod] = ACTIONS(756), - [anon_sym_SLASH_SLASH] = ACTIONS(756), - [anon_sym_PLUS] = ACTIONS(756), - [anon_sym_bit_DASHshl] = ACTIONS(756), - [anon_sym_bit_DASHshr] = ACTIONS(756), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_LT2] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_not_DASHin] = ACTIONS(756), - [anon_sym_starts_DASHwith] = ACTIONS(756), - [anon_sym_ends_DASHwith] = ACTIONS(756), - [anon_sym_EQ_TILDE] = ACTIONS(756), - [anon_sym_BANG_TILDE] = ACTIONS(756), - [anon_sym_bit_DASHand] = ACTIONS(756), - [anon_sym_bit_DASHxor] = ACTIONS(756), - [anon_sym_bit_DASHor] = ACTIONS(756), - [anon_sym_and] = ACTIONS(756), - [anon_sym_xor] = ACTIONS(756), - [anon_sym_or] = ACTIONS(756), - [anon_sym_DOT_DOT_LT] = ACTIONS(756), - [anon_sym_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [sym_val_nothing] = ACTIONS(756), - [anon_sym_true] = ACTIONS(756), - [anon_sym_false] = ACTIONS(756), - [aux_sym_val_number_token1] = ACTIONS(999), - [aux_sym_val_number_token2] = ACTIONS(999), - [aux_sym_val_number_token3] = ACTIONS(999), - [aux_sym_val_number_token4] = ACTIONS(999), - [aux_sym_val_number_token5] = ACTIONS(999), - [anon_sym_inf] = ACTIONS(999), - [anon_sym_DASHinf] = ACTIONS(999), - [anon_sym_NaN] = ACTIONS(999), - [anon_sym_0b] = ACTIONS(756), - [anon_sym_0o] = ACTIONS(756), - [anon_sym_0x] = ACTIONS(756), - [sym_val_date] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(756), - [sym__str_single_quotes] = ACTIONS(756), - [sym__str_back_ticks] = ACTIONS(756), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(756), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(756), - [anon_sym_err_GT] = ACTIONS(756), - [anon_sym_out_GT] = ACTIONS(756), - [anon_sym_e_GT] = ACTIONS(756), - [anon_sym_o_GT] = ACTIONS(756), - [anon_sym_err_PLUSout_GT] = ACTIONS(756), - [anon_sym_out_PLUSerr_GT] = ACTIONS(756), - [anon_sym_o_PLUSe_GT] = ACTIONS(756), - [anon_sym_e_PLUSo_GT] = ACTIONS(756), - [sym_short_flag] = ACTIONS(756), - [aux_sym_unquoted_token1] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(3), - }, - [321] = { - [sym__command_name] = STATE(591), - [sym_scope_pattern] = STATE(590), - [sym_wild_card] = STATE(589), - [sym_command_list] = STATE(587), - [sym_val_string] = STATE(516), - [sym__str_double_quotes] = STATE(524), - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(985), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_def_DASHenv] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_RPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_RBRACE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [sym_val_nothing] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym_val_number_token1] = ACTIONS(1001), - [aux_sym_val_number_token2] = ACTIONS(1001), - [aux_sym_val_number_token3] = ACTIONS(1001), - [aux_sym_val_number_token4] = ACTIONS(1001), - [aux_sym_val_number_token5] = ACTIONS(1001), - [anon_sym_inf] = ACTIONS(1001), - [anon_sym_DASHinf] = ACTIONS(1001), - [anon_sym_NaN] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), + [308] = { + [sym_path] = STATE(383), + [sym_comment] = STATE(308), + [aux_sym_cell_path_repeat1] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH_DASH] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(752), + [anon_sym_PLUS_PLUS] = ACTIONS(752), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(752), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(752), + [anon_sym_BANG_EQ] = ACTIONS(752), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(752), + [anon_sym_GT_EQ] = ACTIONS(752), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(752), + [anon_sym_BANG_TILDE] = ACTIONS(752), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_err_GT] = ACTIONS(752), + [anon_sym_out_GT] = ACTIONS(752), + [anon_sym_e_GT] = ACTIONS(752), + [anon_sym_o_GT] = ACTIONS(752), + [anon_sym_err_PLUSout_GT] = ACTIONS(752), + [anon_sym_out_PLUSerr_GT] = ACTIONS(752), + [anon_sym_o_PLUSe_GT] = ACTIONS(752), + [anon_sym_e_PLUSo_GT] = ACTIONS(752), + [sym_short_flag] = ACTIONS(752), + [aux_sym_unquoted_token1] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, - [322] = { - [sym__ctrl_expression] = STATE(2776), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3323), - [sym_where_command] = STATE(2782), - [sym__expression] = STATE(1984), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(2782), - [sym_comment] = STATE(322), - [aux_sym_pipeline_repeat1] = STATE(334), + [309] = { + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(2944), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(309), + [aux_sym_pipeline_repeat1] = STATE(347), [sym_cmd_identifier] = ACTIONS(167), [anon_sym_LBRACK] = ACTIONS(179), [anon_sym_LPAREN] = ACTIONS(181), - [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(971), [anon_sym_DASH] = ACTIONS(189), [anon_sym_break] = ACTIONS(191), [anon_sym_continue] = ACTIONS(193), @@ -74121,123 +73210,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), [anon_sym_CARET] = ACTIONS(253), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [323] = { - [sym__command_name] = STATE(591), - [sym_scope_pattern] = STATE(572), - [sym_wild_card] = STATE(589), - [sym_command_list] = STATE(587), + [310] = { + [sym__command_name] = STATE(581), + [sym_scope_pattern] = STATE(580), + [sym_wild_card] = STATE(579), + [sym_command_list] = STATE(578), [sym_val_string] = STATE(516), - [sym__str_double_quotes] = STATE(524), - [sym_comment] = STATE(323), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(985), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_def_DASHenv] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(989), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_RPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_DOT_DOT_LT] = ACTIONS(1005), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [sym_val_nothing] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym_val_number_token1] = ACTIONS(1005), - [aux_sym_val_number_token2] = ACTIONS(1005), - [aux_sym_val_number_token3] = ACTIONS(1005), - [aux_sym_val_number_token4] = ACTIONS(1005), - [aux_sym_val_number_token5] = ACTIONS(1005), - [anon_sym_inf] = ACTIONS(1005), - [anon_sym_DASHinf] = ACTIONS(1005), - [anon_sym_NaN] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(993), - [sym__str_single_quotes] = ACTIONS(995), - [sym__str_back_ticks] = ACTIONS(995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), + [sym__str_double_quotes] = STATE(505), + [sym_comment] = STATE(310), + [anon_sym_export] = ACTIONS(989), + [anon_sym_alias] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_let_DASHenv] = ACTIONS(989), + [anon_sym_mut] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [sym_cmd_identifier] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(993), + [anon_sym_def] = ACTIONS(989), + [anon_sym_def_DASHenv] = ACTIONS(989), + [anon_sym_export_DASHenv] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_error] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_source] = ACTIONS(989), + [anon_sym_source_DASHenv] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_hide] = ACTIONS(989), + [anon_sym_hide_DASHenv] = ACTIONS(989), + [anon_sym_overlay] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_where] = ACTIONS(989), + [anon_sym_not] = ACTIONS(989), + [anon_sym_DOT_DOT_LT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(989), + [sym_val_nothing] = ACTIONS(989), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [aux_sym_val_number_token1] = ACTIONS(989), + [aux_sym_val_number_token2] = ACTIONS(989), + [aux_sym_val_number_token3] = ACTIONS(989), + [aux_sym_val_number_token4] = ACTIONS(989), + [aux_sym_val_number_token5] = ACTIONS(989), + [anon_sym_inf] = ACTIONS(989), + [anon_sym_DASHinf] = ACTIONS(989), + [anon_sym_NaN] = ACTIONS(989), + [anon_sym_0b] = ACTIONS(989), + [anon_sym_0o] = ACTIONS(989), + [anon_sym_0x] = ACTIONS(989), + [sym_val_date] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym__str_single_quotes] = ACTIONS(1001), + [sym__str_back_ticks] = ACTIONS(1001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), [anon_sym_POUND] = ACTIONS(3), }, - [324] = { - [sym__ctrl_expression] = STATE(2992), - [sym_ctrl_do] = STATE(3118), - [sym_ctrl_if] = STATE(3118), - [sym_ctrl_match] = STATE(3118), - [sym_ctrl_try] = STATE(3118), - [sym_ctrl_return] = STATE(3118), - [sym_pipe_element] = STATE(1572), - [sym_pipe_element_last] = STATE(3243), - [sym_where_command] = STATE(2991), - [sym__expression] = STATE(2162), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), + [311] = { + [sym__ctrl_expression] = STATE(2795), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3388), + [sym_where_command] = STATE(2792), + [sym__expression] = STATE(2129), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(2792), + [sym_comment] = STATE(311), + [aux_sym_pipeline_repeat1] = STATE(347), + [sym_cmd_identifier] = ACTIONS(167), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(191), + [anon_sym_continue] = ACTIONS(193), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(211), + [anon_sym_return] = ACTIONS(213), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(253), + [anon_sym_POUND] = ACTIONS(145), + }, + [312] = { + [sym__ctrl_expression] = STATE(2880), + [sym_ctrl_do] = STATE(3126), + [sym_ctrl_if] = STATE(3126), + [sym_ctrl_match] = STATE(3126), + [sym_ctrl_try] = STATE(3126), + [sym_ctrl_return] = STATE(3126), + [sym_pipe_element] = STATE(1582), + [sym_pipe_element_last] = STATE(3239), + [sym_where_command] = STATE(2883), + [sym__expression] = STATE(2149), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_command] = STATE(2991), - [sym_comment] = STATE(324), - [aux_sym_pipeline_repeat1] = STATE(334), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_command] = STATE(2883), + [sym_comment] = STATE(312), + [aux_sym_pipeline_repeat1] = STATE(347), [sym_cmd_identifier] = ACTIONS(19), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(973), [anon_sym_DASH] = ACTIONS(39), [anon_sym_break] = ACTIONS(41), [anon_sym_continue] = ACTIONS(43), @@ -74259,3699 +73424,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_val_number_token2] = ACTIONS(85), [aux_sym_val_number_token3] = ACTIONS(87), [aux_sym_val_number_token4] = ACTIONS(87), - [aux_sym_val_number_token5] = ACTIONS(87), - [anon_sym_inf] = ACTIONS(85), - [anon_sym_DASHinf] = ACTIONS(87), - [anon_sym_NaN] = ACTIONS(85), - [anon_sym_0b] = ACTIONS(89), - [anon_sym_0o] = ACTIONS(89), - [anon_sym_0x] = ACTIONS(89), - [sym_val_date] = ACTIONS(91), - [anon_sym_DQUOTE] = ACTIONS(93), - [sym__str_single_quotes] = ACTIONS(95), - [sym__str_back_ticks] = ACTIONS(95), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), - [anon_sym_CARET] = ACTIONS(101), - [anon_sym_POUND] = ACTIONS(143), - }, - [325] = { - [sym_comment] = STATE(325), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_DOT_DOT_LT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [sym_val_nothing] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym_val_number_token1] = ACTIONS(903), - [aux_sym_val_number_token2] = ACTIONS(903), - [aux_sym_val_number_token3] = ACTIONS(903), - [aux_sym_val_number_token4] = ACTIONS(903), - [aux_sym_val_number_token5] = ACTIONS(903), - [anon_sym_inf] = ACTIONS(903), - [anon_sym_DASHinf] = ACTIONS(903), - [anon_sym_NaN] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_err_GT] = ACTIONS(903), - [anon_sym_out_GT] = ACTIONS(903), - [anon_sym_e_GT] = ACTIONS(903), - [anon_sym_o_GT] = ACTIONS(903), - [anon_sym_err_PLUSout_GT] = ACTIONS(903), - [anon_sym_out_PLUSerr_GT] = ACTIONS(903), - [anon_sym_o_PLUSe_GT] = ACTIONS(903), - [anon_sym_e_PLUSo_GT] = ACTIONS(903), - [sym_short_flag] = ACTIONS(903), - [aux_sym_unquoted_token1] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(3), - }, - [326] = { - [sym__flag] = STATE(467), - [sym_long_flag] = STATE(474), - [sym_comment] = STATE(326), - [aux_sym_overlay_use_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(1009), - [anon_sym_alias] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1009), - [anon_sym_let_DASHenv] = ACTIONS(1009), - [anon_sym_mut] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1009), - [sym_cmd_identifier] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1011), - [anon_sym_def] = ACTIONS(1009), - [anon_sym_def_DASHenv] = ACTIONS(1009), - [anon_sym_export_DASHenv] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_module] = ACTIONS(1009), - [anon_sym_use] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_error] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_loop] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_match] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_source] = ACTIONS(1009), - [anon_sym_source_DASHenv] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_hide] = ACTIONS(1009), - [anon_sym_hide_DASHenv] = ACTIONS(1009), - [anon_sym_overlay] = ACTIONS(1009), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_where] = ACTIONS(1009), - [anon_sym_not] = ACTIONS(1009), - [anon_sym_DOT_DOT_LT] = ACTIONS(1009), - [anon_sym_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [sym_val_nothing] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1009), - [anon_sym_false] = ACTIONS(1009), - [aux_sym_val_number_token1] = ACTIONS(1009), - [aux_sym_val_number_token2] = ACTIONS(1009), - [aux_sym_val_number_token3] = ACTIONS(1009), - [aux_sym_val_number_token4] = ACTIONS(1009), - [aux_sym_val_number_token5] = ACTIONS(1009), - [anon_sym_inf] = ACTIONS(1009), - [anon_sym_DASHinf] = ACTIONS(1009), - [anon_sym_NaN] = ACTIONS(1009), - [anon_sym_0b] = ACTIONS(1009), - [anon_sym_0o] = ACTIONS(1009), - [anon_sym_0x] = ACTIONS(1009), - [sym_val_date] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym__str_single_quotes] = ACTIONS(1009), - [sym__str_back_ticks] = ACTIONS(1009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [sym_short_flag] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(3), - }, - [327] = { - [sym_comment] = STATE(327), - [anon_sym_SEMI] = ACTIONS(113), - [anon_sym_LF] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_RPAREN] = ACTIONS(113), - [anon_sym_PIPE] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(113), - [anon_sym_GT] = ACTIONS(113), - [anon_sym_DASH_DASH] = ACTIONS(113), - [anon_sym_DASH] = ACTIONS(113), - [anon_sym_in] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_STAR_STAR] = ACTIONS(113), - [anon_sym_PLUS_PLUS] = ACTIONS(113), - [anon_sym_SLASH] = ACTIONS(113), - [anon_sym_mod] = ACTIONS(113), - [anon_sym_SLASH_SLASH] = ACTIONS(113), - [anon_sym_PLUS] = ACTIONS(113), - [anon_sym_bit_DASHshl] = ACTIONS(113), - [anon_sym_bit_DASHshr] = ACTIONS(113), - [anon_sym_EQ_EQ] = ACTIONS(113), - [anon_sym_BANG_EQ] = ACTIONS(113), - [anon_sym_LT2] = ACTIONS(113), - [anon_sym_LT_EQ] = ACTIONS(113), - [anon_sym_GT_EQ] = ACTIONS(113), - [anon_sym_not_DASHin] = ACTIONS(113), - [anon_sym_starts_DASHwith] = ACTIONS(113), - [anon_sym_ends_DASHwith] = ACTIONS(113), - [anon_sym_EQ_TILDE] = ACTIONS(113), - [anon_sym_BANG_TILDE] = ACTIONS(113), - [anon_sym_bit_DASHand] = ACTIONS(113), - [anon_sym_bit_DASHxor] = ACTIONS(113), - [anon_sym_bit_DASHor] = ACTIONS(113), - [anon_sym_and] = ACTIONS(113), - [anon_sym_xor] = ACTIONS(113), - [anon_sym_or] = ACTIONS(113), - [anon_sym_DOT_DOT_LT] = ACTIONS(113), - [anon_sym_DOT_DOT] = ACTIONS(113), - [anon_sym_DOT_DOT_EQ] = ACTIONS(113), - [sym_val_nothing] = ACTIONS(113), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [aux_sym_val_number_token1] = ACTIONS(113), - [aux_sym_val_number_token2] = ACTIONS(113), - [aux_sym_val_number_token3] = ACTIONS(113), - [aux_sym_val_number_token4] = ACTIONS(113), - [aux_sym_val_number_token5] = ACTIONS(113), - [anon_sym_inf] = ACTIONS(113), - [anon_sym_DASHinf] = ACTIONS(113), - [anon_sym_NaN] = ACTIONS(113), - [anon_sym_0b] = ACTIONS(113), - [anon_sym_0o] = ACTIONS(113), - [anon_sym_0x] = ACTIONS(113), - [sym_val_date] = ACTIONS(113), - [anon_sym_DQUOTE] = ACTIONS(113), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), - [anon_sym_err_GT] = ACTIONS(113), - [anon_sym_out_GT] = ACTIONS(113), - [anon_sym_e_GT] = ACTIONS(113), - [anon_sym_o_GT] = ACTIONS(113), - [anon_sym_err_PLUSout_GT] = ACTIONS(113), - [anon_sym_out_PLUSerr_GT] = ACTIONS(113), - [anon_sym_o_PLUSe_GT] = ACTIONS(113), - [anon_sym_e_PLUSo_GT] = ACTIONS(113), - [sym_short_flag] = ACTIONS(113), - [aux_sym_unquoted_token1] = ACTIONS(113), - [anon_sym_POUND] = ACTIONS(3), - }, - [328] = { - [sym__ctrl_expression] = STATE(3384), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element_parenthesized] = STATE(1582), - [sym_where_command] = STATE(3387), - [sym__expression] = STATE(2443), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym__command_parenthesized_body] = STATE(3393), - [sym_comment] = STATE(328), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(328), - [sym_cmd_identifier] = ACTIONS(1019), - [anon_sym_LBRACK] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1031), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1037), - [anon_sym_do] = ACTIONS(1040), - [anon_sym_if] = ACTIONS(1043), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1052), - [anon_sym_return] = ACTIONS(1055), - [anon_sym_where] = ACTIONS(1058), - [anon_sym_not] = ACTIONS(1061), - [anon_sym_DOT_DOT_LT] = ACTIONS(1064), - [anon_sym_DOT_DOT] = ACTIONS(1067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), - [sym_val_nothing] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [aux_sym_val_number_token1] = ACTIONS(1076), - [aux_sym_val_number_token2] = ACTIONS(1076), - [aux_sym_val_number_token3] = ACTIONS(1079), - [aux_sym_val_number_token4] = ACTIONS(1079), - [aux_sym_val_number_token5] = ACTIONS(1079), - [anon_sym_inf] = ACTIONS(1076), - [anon_sym_DASHinf] = ACTIONS(1079), - [anon_sym_NaN] = ACTIONS(1076), - [anon_sym_0b] = ACTIONS(1082), - [anon_sym_0o] = ACTIONS(1082), - [anon_sym_0x] = ACTIONS(1082), - [sym_val_date] = ACTIONS(1085), - [anon_sym_DQUOTE] = ACTIONS(1088), - [sym__str_single_quotes] = ACTIONS(1091), - [sym__str_back_ticks] = ACTIONS(1091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1094), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1100), - [anon_sym_POUND] = ACTIONS(143), - }, - [329] = { - [sym_comment] = STATE(329), - [anon_sym_SEMI] = ACTIONS(853), - [anon_sym_LF] = ACTIONS(855), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_PIPE] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_GT] = ACTIONS(853), - [anon_sym_DASH_DASH] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_in] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_STAR] = ACTIONS(853), - [anon_sym_STAR_STAR] = ACTIONS(853), - [anon_sym_PLUS_PLUS] = ACTIONS(853), - [anon_sym_SLASH] = ACTIONS(853), - [anon_sym_mod] = ACTIONS(853), - [anon_sym_SLASH_SLASH] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(853), - [anon_sym_bit_DASHshl] = ACTIONS(853), - [anon_sym_bit_DASHshr] = ACTIONS(853), - [anon_sym_EQ_EQ] = ACTIONS(853), - [anon_sym_BANG_EQ] = ACTIONS(853), - [anon_sym_LT2] = ACTIONS(853), - [anon_sym_LT_EQ] = ACTIONS(853), - [anon_sym_GT_EQ] = ACTIONS(853), - [anon_sym_not_DASHin] = ACTIONS(853), - [anon_sym_starts_DASHwith] = ACTIONS(853), - [anon_sym_ends_DASHwith] = ACTIONS(853), - [anon_sym_EQ_TILDE] = ACTIONS(853), - [anon_sym_BANG_TILDE] = ACTIONS(853), - [anon_sym_bit_DASHand] = ACTIONS(853), - [anon_sym_bit_DASHxor] = ACTIONS(853), - [anon_sym_bit_DASHor] = ACTIONS(853), - [anon_sym_and] = ACTIONS(853), - [anon_sym_xor] = ACTIONS(853), - [anon_sym_or] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [sym_val_nothing] = ACTIONS(853), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [aux_sym_val_number_token1] = ACTIONS(853), - [aux_sym_val_number_token2] = ACTIONS(853), - [aux_sym_val_number_token3] = ACTIONS(853), - [aux_sym_val_number_token4] = ACTIONS(853), - [aux_sym_val_number_token5] = ACTIONS(853), - [anon_sym_inf] = ACTIONS(853), - [anon_sym_DASHinf] = ACTIONS(853), - [anon_sym_NaN] = ACTIONS(853), - [anon_sym_0b] = ACTIONS(853), - [anon_sym_0o] = ACTIONS(853), - [anon_sym_0x] = ACTIONS(853), - [sym_val_date] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym__str_single_quotes] = ACTIONS(853), - [sym__str_back_ticks] = ACTIONS(853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), - [anon_sym_err_GT] = ACTIONS(853), - [anon_sym_out_GT] = ACTIONS(853), - [anon_sym_e_GT] = ACTIONS(853), - [anon_sym_o_GT] = ACTIONS(853), - [anon_sym_err_PLUSout_GT] = ACTIONS(853), - [anon_sym_out_PLUSerr_GT] = ACTIONS(853), - [anon_sym_o_PLUSe_GT] = ACTIONS(853), - [anon_sym_e_PLUSo_GT] = ACTIONS(853), - [sym_short_flag] = ACTIONS(853), - [aux_sym_unquoted_token1] = ACTIONS(853), - [anon_sym_POUND] = ACTIONS(3), - }, - [330] = { - [sym_comment] = STATE(330), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), - [anon_sym_POUND] = ACTIONS(3), - }, - [331] = { - [sym_comment] = STATE(331), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(3), - }, - [332] = { - [sym__command_name] = STATE(621), - [sym_scope_pattern] = STATE(691), - [sym_wild_card] = STATE(663), - [sym_command_list] = STATE(692), - [sym_val_string] = STATE(579), - [sym__str_double_quotes] = STATE(570), - [sym_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(987), - [anon_sym_export] = ACTIONS(983), - [anon_sym_alias] = ACTIONS(983), - [anon_sym_let] = ACTIONS(983), - [anon_sym_let_DASHenv] = ACTIONS(983), - [anon_sym_mut] = ACTIONS(983), - [anon_sym_const] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(983), - [sym_cmd_identifier] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(987), - [anon_sym_def] = ACTIONS(983), - [anon_sym_def_DASHenv] = ACTIONS(983), - [anon_sym_export_DASHenv] = ACTIONS(983), - [anon_sym_extern] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_use] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_error] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_loop] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [anon_sym_do] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_try] = ACTIONS(983), - [anon_sym_return] = ACTIONS(983), - [anon_sym_source] = ACTIONS(983), - [anon_sym_source_DASHenv] = ACTIONS(983), - [anon_sym_register] = ACTIONS(983), - [anon_sym_hide] = ACTIONS(983), - [anon_sym_hide_DASHenv] = ACTIONS(983), - [anon_sym_overlay] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_where] = ACTIONS(983), - [anon_sym_not] = ACTIONS(983), - [anon_sym_DOT_DOT_LT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [sym_val_nothing] = ACTIONS(983), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [aux_sym_val_number_token1] = ACTIONS(983), - [aux_sym_val_number_token2] = ACTIONS(983), - [aux_sym_val_number_token3] = ACTIONS(983), - [aux_sym_val_number_token4] = ACTIONS(983), - [aux_sym_val_number_token5] = ACTIONS(983), - [anon_sym_inf] = ACTIONS(983), - [anon_sym_DASHinf] = ACTIONS(983), - [anon_sym_NaN] = ACTIONS(983), - [anon_sym_0b] = ACTIONS(983), - [anon_sym_0o] = ACTIONS(983), - [anon_sym_0x] = ACTIONS(983), - [sym_val_date] = ACTIONS(983), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(3), - }, - [333] = { - [sym_comment] = STATE(333), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LF] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_in] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT_LT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [sym_val_nothing] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym_val_number_token1] = ACTIONS(911), - [aux_sym_val_number_token2] = ACTIONS(911), - [aux_sym_val_number_token3] = ACTIONS(911), - [aux_sym_val_number_token4] = ACTIONS(911), - [aux_sym_val_number_token5] = ACTIONS(911), - [anon_sym_inf] = ACTIONS(911), - [anon_sym_DASHinf] = ACTIONS(911), - [anon_sym_NaN] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(911), - [anon_sym_0x] = ACTIONS(911), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [sym_short_flag] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(3), - }, - [334] = { - [sym__ctrl_expression] = STATE(3336), - [sym_ctrl_do] = STATE(3010), - [sym_ctrl_if] = STATE(3010), - [sym_ctrl_match] = STATE(3010), - [sym_ctrl_try] = STATE(3010), - [sym_ctrl_return] = STATE(3010), - [sym_pipe_element] = STATE(1572), - [sym_where_command] = STATE(3339), - [sym__expression] = STATE(2457), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_command] = STATE(3339), - [sym_comment] = STATE(334), - [aux_sym_pipeline_repeat1] = STATE(334), - [sym_cmd_identifier] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1116), - [anon_sym_LPAREN] = ACTIONS(1119), - [anon_sym_DOLLAR] = ACTIONS(1122), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1131), - [anon_sym_do] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1137), - [anon_sym_match] = ACTIONS(1140), - [anon_sym_LBRACE] = ACTIONS(1143), - [anon_sym_try] = ACTIONS(1146), - [anon_sym_return] = ACTIONS(1149), - [anon_sym_where] = ACTIONS(1152), - [anon_sym_not] = ACTIONS(1155), - [anon_sym_DOT_DOT_LT] = ACTIONS(1158), - [anon_sym_DOT_DOT] = ACTIONS(1161), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1158), - [sym_val_nothing] = ACTIONS(1164), - [anon_sym_true] = ACTIONS(1167), - [anon_sym_false] = ACTIONS(1167), - [aux_sym_val_number_token1] = ACTIONS(1170), - [aux_sym_val_number_token2] = ACTIONS(1170), - [aux_sym_val_number_token3] = ACTIONS(1173), - [aux_sym_val_number_token4] = ACTIONS(1173), - [aux_sym_val_number_token5] = ACTIONS(1173), - [anon_sym_inf] = ACTIONS(1170), - [anon_sym_DASHinf] = ACTIONS(1173), - [anon_sym_NaN] = ACTIONS(1170), - [anon_sym_0b] = ACTIONS(1176), - [anon_sym_0o] = ACTIONS(1176), - [anon_sym_0x] = ACTIONS(1176), - [sym_val_date] = ACTIONS(1179), - [anon_sym_DQUOTE] = ACTIONS(1182), - [sym__str_single_quotes] = ACTIONS(1185), - [sym__str_back_ticks] = ACTIONS(1185), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1188), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1194), - [anon_sym_POUND] = ACTIONS(143), - }, - [335] = { - [sym_comment] = STATE(335), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_in] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(865), - [anon_sym_out_GT] = ACTIONS(865), - [anon_sym_e_GT] = ACTIONS(865), - [anon_sym_o_GT] = ACTIONS(865), - [anon_sym_err_PLUSout_GT] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT] = ACTIONS(865), - [anon_sym_o_PLUSe_GT] = ACTIONS(865), - [anon_sym_e_PLUSo_GT] = ACTIONS(865), - [sym_short_flag] = ACTIONS(865), - [aux_sym_unquoted_token1] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(3), - }, - [336] = { - [sym_comment] = STATE(336), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_RPAREN] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_RBRACE] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_xor] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1225), - [anon_sym_DOT_DOT_LT] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), - [sym_val_nothing] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1197), - [anon_sym_false] = ACTIONS(1197), - [aux_sym_val_number_token1] = ACTIONS(1197), - [aux_sym_val_number_token2] = ACTIONS(1197), - [aux_sym_val_number_token3] = ACTIONS(1197), - [aux_sym_val_number_token4] = ACTIONS(1197), - [aux_sym_val_number_token5] = ACTIONS(1197), - [anon_sym_inf] = ACTIONS(1197), - [anon_sym_DASHinf] = ACTIONS(1197), - [anon_sym_NaN] = ACTIONS(1197), - [anon_sym_0b] = ACTIONS(1197), - [anon_sym_0o] = ACTIONS(1197), - [anon_sym_0x] = ACTIONS(1197), - [sym_val_date] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym__str_single_quotes] = ACTIONS(1197), - [sym__str_back_ticks] = ACTIONS(1197), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1197), - [anon_sym_err_GT] = ACTIONS(1197), - [anon_sym_out_GT] = ACTIONS(1197), - [anon_sym_e_GT] = ACTIONS(1197), - [anon_sym_o_GT] = ACTIONS(1197), - [anon_sym_err_PLUSout_GT] = ACTIONS(1197), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1197), - [anon_sym_o_PLUSe_GT] = ACTIONS(1197), - [anon_sym_e_PLUSo_GT] = ACTIONS(1197), - [sym_short_flag] = ACTIONS(1197), - [aux_sym_unquoted_token1] = ACTIONS(1197), - [anon_sym_POUND] = ACTIONS(3), - }, - [337] = { - [sym__flag] = STATE(467), - [sym_long_flag] = STATE(474), - [sym_comment] = STATE(337), - [aux_sym_overlay_use_repeat1] = STATE(326), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_alias] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_let_DASHenv] = ACTIONS(1227), - [anon_sym_mut] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_cmd_identifier] = ACTIONS(1227), - [anon_sym_LF] = ACTIONS(1229), - [anon_sym_def] = ACTIONS(1227), - [anon_sym_def_DASHenv] = ACTIONS(1227), - [anon_sym_export_DASHenv] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_error] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_source] = ACTIONS(1227), - [anon_sym_source_DASHenv] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_hide_DASHenv] = ACTIONS(1227), - [anon_sym_overlay] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1231), - [anon_sym_where] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_DOT_DOT_LT] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), - [sym_val_nothing] = ACTIONS(1227), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [aux_sym_val_number_token1] = ACTIONS(1227), - [aux_sym_val_number_token2] = ACTIONS(1227), - [aux_sym_val_number_token3] = ACTIONS(1227), - [aux_sym_val_number_token4] = ACTIONS(1227), - [aux_sym_val_number_token5] = ACTIONS(1227), - [anon_sym_inf] = ACTIONS(1227), - [anon_sym_DASHinf] = ACTIONS(1227), - [anon_sym_NaN] = ACTIONS(1227), - [anon_sym_0b] = ACTIONS(1227), - [anon_sym_0o] = ACTIONS(1227), - [anon_sym_0x] = ACTIONS(1227), - [sym_val_date] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym__str_single_quotes] = ACTIONS(1227), - [sym__str_back_ticks] = ACTIONS(1227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [sym_short_flag] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(3), - }, - [338] = { - [sym_comment] = STATE(338), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_DASH_DASH] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_in] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_STAR_STAR] = ACTIONS(931), - [anon_sym_PLUS_PLUS] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_bit_DASHshl] = ACTIONS(931), - [anon_sym_bit_DASHshr] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(931), - [anon_sym_BANG_EQ] = ACTIONS(931), - [anon_sym_LT2] = ACTIONS(931), - [anon_sym_LT_EQ] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(931), - [anon_sym_not_DASHin] = ACTIONS(931), - [anon_sym_starts_DASHwith] = ACTIONS(931), - [anon_sym_ends_DASHwith] = ACTIONS(931), - [anon_sym_EQ_TILDE] = ACTIONS(931), - [anon_sym_BANG_TILDE] = ACTIONS(931), - [anon_sym_bit_DASHand] = ACTIONS(931), - [anon_sym_bit_DASHxor] = ACTIONS(931), - [anon_sym_bit_DASHor] = ACTIONS(931), - [anon_sym_and] = ACTIONS(931), - [anon_sym_xor] = ACTIONS(931), - [anon_sym_or] = ACTIONS(931), - [anon_sym_DOT_DOT_LT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [sym_val_nothing] = ACTIONS(931), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [aux_sym_val_number_token1] = ACTIONS(931), - [aux_sym_val_number_token2] = ACTIONS(931), - [aux_sym_val_number_token3] = ACTIONS(931), - [aux_sym_val_number_token4] = ACTIONS(931), - [aux_sym_val_number_token5] = ACTIONS(931), - [anon_sym_inf] = ACTIONS(931), - [anon_sym_DASHinf] = ACTIONS(931), - [anon_sym_NaN] = ACTIONS(931), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(931), - [anon_sym_0x] = ACTIONS(931), - [sym_val_date] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym__str_single_quotes] = ACTIONS(931), - [sym__str_back_ticks] = ACTIONS(931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), - [anon_sym_err_GT] = ACTIONS(931), - [anon_sym_out_GT] = ACTIONS(931), - [anon_sym_e_GT] = ACTIONS(931), - [anon_sym_o_GT] = ACTIONS(931), - [anon_sym_err_PLUSout_GT] = ACTIONS(931), - [anon_sym_out_PLUSerr_GT] = ACTIONS(931), - [anon_sym_o_PLUSe_GT] = ACTIONS(931), - [anon_sym_e_PLUSo_GT] = ACTIONS(931), - [sym_short_flag] = ACTIONS(931), - [aux_sym_unquoted_token1] = ACTIONS(931), - [anon_sym_POUND] = ACTIONS(3), - }, - [339] = { - [sym_comment] = STATE(339), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(895), - [anon_sym_out_GT] = ACTIONS(895), - [anon_sym_e_GT] = ACTIONS(895), - [anon_sym_o_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT] = ACTIONS(895), - [sym_short_flag] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(895), - [anon_sym_POUND] = ACTIONS(3), - }, - [340] = { - [sym__flag] = STATE(467), - [sym_long_flag] = STATE(474), - [sym_comment] = STATE(340), - [aux_sym_overlay_use_repeat1] = STATE(355), - [anon_sym_export] = ACTIONS(1233), - [anon_sym_alias] = ACTIONS(1233), - [anon_sym_let] = ACTIONS(1233), - [anon_sym_let_DASHenv] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [sym_cmd_identifier] = ACTIONS(1233), - [anon_sym_LF] = ACTIONS(1235), - [anon_sym_def] = ACTIONS(1233), - [anon_sym_def_DASHenv] = ACTIONS(1233), - [anon_sym_export_DASHenv] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym_module] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_RPAREN] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_error] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_loop] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_match] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_RBRACE] = ACTIONS(1233), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_source] = ACTIONS(1233), - [anon_sym_source_DASHenv] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_hide] = ACTIONS(1233), - [anon_sym_hide_DASHenv] = ACTIONS(1233), - [anon_sym_overlay] = ACTIONS(1233), - [anon_sym_as] = ACTIONS(1237), - [anon_sym_where] = ACTIONS(1233), - [anon_sym_not] = ACTIONS(1233), - [anon_sym_DOT_DOT_LT] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), - [sym_val_nothing] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1233), - [anon_sym_false] = ACTIONS(1233), - [aux_sym_val_number_token1] = ACTIONS(1233), - [aux_sym_val_number_token2] = ACTIONS(1233), - [aux_sym_val_number_token3] = ACTIONS(1233), - [aux_sym_val_number_token4] = ACTIONS(1233), - [aux_sym_val_number_token5] = ACTIONS(1233), - [anon_sym_inf] = ACTIONS(1233), - [anon_sym_DASHinf] = ACTIONS(1233), - [anon_sym_NaN] = ACTIONS(1233), - [anon_sym_0b] = ACTIONS(1233), - [anon_sym_0o] = ACTIONS(1233), - [anon_sym_0x] = ACTIONS(1233), - [sym_val_date] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym__str_single_quotes] = ACTIONS(1233), - [sym__str_back_ticks] = ACTIONS(1233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1233), - [sym_short_flag] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(3), - }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_DASH_DASH] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_in] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_STAR_STAR] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_SLASH] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_bit_DASHshl] = ACTIONS(887), - [anon_sym_bit_DASHshr] = ACTIONS(887), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_LT2] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_not_DASHin] = ACTIONS(887), - [anon_sym_starts_DASHwith] = ACTIONS(887), - [anon_sym_ends_DASHwith] = ACTIONS(887), - [anon_sym_EQ_TILDE] = ACTIONS(887), - [anon_sym_BANG_TILDE] = ACTIONS(887), - [anon_sym_bit_DASHand] = ACTIONS(887), - [anon_sym_bit_DASHxor] = ACTIONS(887), - [anon_sym_bit_DASHor] = ACTIONS(887), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(887), - [anon_sym_or] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_err_GT] = ACTIONS(887), - [anon_sym_out_GT] = ACTIONS(887), - [anon_sym_e_GT] = ACTIONS(887), - [anon_sym_o_GT] = ACTIONS(887), - [anon_sym_err_PLUSout_GT] = ACTIONS(887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(887), - [anon_sym_o_PLUSe_GT] = ACTIONS(887), - [anon_sym_e_PLUSo_GT] = ACTIONS(887), - [sym_short_flag] = ACTIONS(887), - [aux_sym_unquoted_token1] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(3), - }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LF] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_PIPE] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_DASH_DASH] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_in] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_STAR_STAR] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_mod] = ACTIONS(899), - [anon_sym_SLASH_SLASH] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_bit_DASHshl] = ACTIONS(899), - [anon_sym_bit_DASHshr] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_LT2] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_not_DASHin] = ACTIONS(899), - [anon_sym_starts_DASHwith] = ACTIONS(899), - [anon_sym_ends_DASHwith] = ACTIONS(899), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(899), - [anon_sym_bit_DASHand] = ACTIONS(899), - [anon_sym_bit_DASHxor] = ACTIONS(899), - [anon_sym_bit_DASHor] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_DOT_DOT_LT] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [sym_val_nothing] = ACTIONS(899), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [aux_sym_val_number_token1] = ACTIONS(899), - [aux_sym_val_number_token2] = ACTIONS(899), - [aux_sym_val_number_token3] = ACTIONS(899), - [aux_sym_val_number_token4] = ACTIONS(899), - [aux_sym_val_number_token5] = ACTIONS(899), - [anon_sym_inf] = ACTIONS(899), - [anon_sym_DASHinf] = ACTIONS(899), - [anon_sym_NaN] = ACTIONS(899), - [anon_sym_0b] = ACTIONS(899), - [anon_sym_0o] = ACTIONS(899), - [anon_sym_0x] = ACTIONS(899), - [sym_val_date] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(899), - [sym__str_single_quotes] = ACTIONS(899), - [sym__str_back_ticks] = ACTIONS(899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), - [anon_sym_err_GT] = ACTIONS(899), - [anon_sym_out_GT] = ACTIONS(899), - [anon_sym_e_GT] = ACTIONS(899), - [anon_sym_o_GT] = ACTIONS(899), - [anon_sym_err_PLUSout_GT] = ACTIONS(899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(899), - [anon_sym_o_PLUSe_GT] = ACTIONS(899), - [anon_sym_e_PLUSo_GT] = ACTIONS(899), - [sym_short_flag] = ACTIONS(899), - [aux_sym_unquoted_token1] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(3), - }, - [343] = { - [sym_comment] = STATE(343), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LF] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_in] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_STAR_STAR] = ACTIONS(869), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_mod] = ACTIONS(869), - [anon_sym_SLASH_SLASH] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(869), - [anon_sym_bit_DASHshr] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_not_DASHin] = ACTIONS(869), - [anon_sym_starts_DASHwith] = ACTIONS(869), - [anon_sym_ends_DASHwith] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [anon_sym_bit_DASHand] = ACTIONS(869), - [anon_sym_bit_DASHxor] = ACTIONS(869), - [anon_sym_bit_DASHor] = ACTIONS(869), - [anon_sym_and] = ACTIONS(869), - [anon_sym_xor] = ACTIONS(869), - [anon_sym_or] = ACTIONS(869), - [anon_sym_DOT_DOT_LT] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [sym_val_nothing] = ACTIONS(869), - [anon_sym_true] = ACTIONS(869), - [anon_sym_false] = ACTIONS(869), - [aux_sym_val_number_token1] = ACTIONS(869), - [aux_sym_val_number_token2] = ACTIONS(869), - [aux_sym_val_number_token3] = ACTIONS(869), - [aux_sym_val_number_token4] = ACTIONS(869), - [aux_sym_val_number_token5] = ACTIONS(869), - [anon_sym_inf] = ACTIONS(869), - [anon_sym_DASHinf] = ACTIONS(869), - [anon_sym_NaN] = ACTIONS(869), - [anon_sym_0b] = ACTIONS(869), - [anon_sym_0o] = ACTIONS(869), - [anon_sym_0x] = ACTIONS(869), - [sym_val_date] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym__str_single_quotes] = ACTIONS(869), - [sym__str_back_ticks] = ACTIONS(869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), - [anon_sym_err_GT] = ACTIONS(869), - [anon_sym_out_GT] = ACTIONS(869), - [anon_sym_e_GT] = ACTIONS(869), - [anon_sym_o_GT] = ACTIONS(869), - [anon_sym_err_PLUSout_GT] = ACTIONS(869), - [anon_sym_out_PLUSerr_GT] = ACTIONS(869), - [anon_sym_o_PLUSe_GT] = ACTIONS(869), - [anon_sym_e_PLUSo_GT] = ACTIONS(869), - [sym_short_flag] = ACTIONS(869), - [aux_sym_unquoted_token1] = ACTIONS(869), - [anon_sym_POUND] = ACTIONS(3), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_RPAREN] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_mod] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_bit_DASHshl] = ACTIONS(821), - [anon_sym_bit_DASHshr] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT2] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_not_DASHin] = ACTIONS(821), - [anon_sym_starts_DASHwith] = ACTIONS(821), - [anon_sym_ends_DASHwith] = ACTIONS(821), - [anon_sym_EQ_TILDE] = ACTIONS(821), - [anon_sym_BANG_TILDE] = ACTIONS(821), - [anon_sym_bit_DASHand] = ACTIONS(821), - [anon_sym_bit_DASHxor] = ACTIONS(821), - [anon_sym_bit_DASHor] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_DOT_DOT_LT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(821), - [sym_val_nothing] = ACTIONS(821), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [aux_sym_val_number_token1] = ACTIONS(821), - [aux_sym_val_number_token2] = ACTIONS(821), - [aux_sym_val_number_token3] = ACTIONS(821), - [aux_sym_val_number_token4] = ACTIONS(821), - [aux_sym_val_number_token5] = ACTIONS(821), - [anon_sym_inf] = ACTIONS(821), - [anon_sym_DASHinf] = ACTIONS(821), - [anon_sym_NaN] = ACTIONS(821), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(821), - [anon_sym_0x] = ACTIONS(821), - [sym_val_date] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym__str_single_quotes] = ACTIONS(821), - [sym__str_back_ticks] = ACTIONS(821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(821), - [anon_sym_err_GT] = ACTIONS(821), - [anon_sym_out_GT] = ACTIONS(821), - [anon_sym_e_GT] = ACTIONS(821), - [anon_sym_o_GT] = ACTIONS(821), - [anon_sym_err_PLUSout_GT] = ACTIONS(821), - [anon_sym_out_PLUSerr_GT] = ACTIONS(821), - [anon_sym_o_PLUSe_GT] = ACTIONS(821), - [anon_sym_e_PLUSo_GT] = ACTIONS(821), - [sym_short_flag] = ACTIONS(821), - [aux_sym_unquoted_token1] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(3), - }, - [345] = { - [sym_comment] = STATE(345), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_LF] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_RPAREN] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_in] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_RBRACE] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_mod] = ACTIONS(825), - [anon_sym_SLASH_SLASH] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_bit_DASHshl] = ACTIONS(825), - [anon_sym_bit_DASHshr] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_not_DASHin] = ACTIONS(825), - [anon_sym_starts_DASHwith] = ACTIONS(825), - [anon_sym_ends_DASHwith] = ACTIONS(825), - [anon_sym_EQ_TILDE] = ACTIONS(825), - [anon_sym_BANG_TILDE] = ACTIONS(825), - [anon_sym_bit_DASHand] = ACTIONS(825), - [anon_sym_bit_DASHxor] = ACTIONS(825), - [anon_sym_bit_DASHor] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_DOT_DOT_LT] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(825), - [sym_val_nothing] = ACTIONS(825), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [aux_sym_val_number_token1] = ACTIONS(825), - [aux_sym_val_number_token2] = ACTIONS(825), - [aux_sym_val_number_token3] = ACTIONS(825), - [aux_sym_val_number_token4] = ACTIONS(825), - [aux_sym_val_number_token5] = ACTIONS(825), - [anon_sym_inf] = ACTIONS(825), - [anon_sym_DASHinf] = ACTIONS(825), - [anon_sym_NaN] = ACTIONS(825), - [anon_sym_0b] = ACTIONS(825), - [anon_sym_0o] = ACTIONS(825), - [anon_sym_0x] = ACTIONS(825), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(825), - [anon_sym_err_GT] = ACTIONS(825), - [anon_sym_out_GT] = ACTIONS(825), - [anon_sym_e_GT] = ACTIONS(825), - [anon_sym_o_GT] = ACTIONS(825), - [anon_sym_err_PLUSout_GT] = ACTIONS(825), - [anon_sym_out_PLUSerr_GT] = ACTIONS(825), - [anon_sym_o_PLUSe_GT] = ACTIONS(825), - [anon_sym_e_PLUSo_GT] = ACTIONS(825), - [sym_short_flag] = ACTIONS(825), - [aux_sym_unquoted_token1] = ACTIONS(825), - [anon_sym_POUND] = ACTIONS(3), - }, - [346] = { - [sym_comment] = STATE(346), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_PIPE] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(873), - [anon_sym_DASH_DASH] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_in] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_STAR_STAR] = ACTIONS(873), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_bit_DASHshl] = ACTIONS(873), - [anon_sym_bit_DASHshr] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_not_DASHin] = ACTIONS(873), - [anon_sym_starts_DASHwith] = ACTIONS(873), - [anon_sym_ends_DASHwith] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [anon_sym_bit_DASHand] = ACTIONS(873), - [anon_sym_bit_DASHxor] = ACTIONS(873), - [anon_sym_bit_DASHor] = ACTIONS(873), - [anon_sym_and] = ACTIONS(873), - [anon_sym_xor] = ACTIONS(873), - [anon_sym_or] = ACTIONS(873), - [anon_sym_DOT_DOT_LT] = ACTIONS(873), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [sym_val_nothing] = ACTIONS(873), - [anon_sym_true] = ACTIONS(873), - [anon_sym_false] = ACTIONS(873), - [aux_sym_val_number_token1] = ACTIONS(873), - [aux_sym_val_number_token2] = ACTIONS(873), - [aux_sym_val_number_token3] = ACTIONS(873), - [aux_sym_val_number_token4] = ACTIONS(873), - [aux_sym_val_number_token5] = ACTIONS(873), - [anon_sym_inf] = ACTIONS(873), - [anon_sym_DASHinf] = ACTIONS(873), - [anon_sym_NaN] = ACTIONS(873), - [anon_sym_0b] = ACTIONS(873), - [anon_sym_0o] = ACTIONS(873), - [anon_sym_0x] = ACTIONS(873), - [sym_val_date] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym__str_single_quotes] = ACTIONS(873), - [sym__str_back_ticks] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), - [anon_sym_err_GT] = ACTIONS(873), - [anon_sym_out_GT] = ACTIONS(873), - [anon_sym_e_GT] = ACTIONS(873), - [anon_sym_o_GT] = ACTIONS(873), - [anon_sym_err_PLUSout_GT] = ACTIONS(873), - [anon_sym_out_PLUSerr_GT] = ACTIONS(873), - [anon_sym_o_PLUSe_GT] = ACTIONS(873), - [anon_sym_e_PLUSo_GT] = ACTIONS(873), - [sym_short_flag] = ACTIONS(873), - [aux_sym_unquoted_token1] = ACTIONS(873), - [anon_sym_POUND] = ACTIONS(3), - }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LF] = ACTIONS(835), - [anon_sym_LBRACK] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_PIPE] = ACTIONS(833), - [anon_sym_DOLLAR] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(833), - [anon_sym_DASH_DASH] = ACTIONS(833), - [anon_sym_DASH] = ACTIONS(833), - [anon_sym_in] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_STAR] = ACTIONS(833), - [anon_sym_STAR_STAR] = ACTIONS(833), - [anon_sym_PLUS_PLUS] = ACTIONS(833), - [anon_sym_SLASH] = ACTIONS(833), - [anon_sym_mod] = ACTIONS(833), - [anon_sym_SLASH_SLASH] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(833), - [anon_sym_bit_DASHshl] = ACTIONS(833), - [anon_sym_bit_DASHshr] = ACTIONS(833), - [anon_sym_EQ_EQ] = ACTIONS(833), - [anon_sym_BANG_EQ] = ACTIONS(833), - [anon_sym_LT2] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(833), - [anon_sym_GT_EQ] = ACTIONS(833), - [anon_sym_not_DASHin] = ACTIONS(833), - [anon_sym_starts_DASHwith] = ACTIONS(833), - [anon_sym_ends_DASHwith] = ACTIONS(833), - [anon_sym_EQ_TILDE] = ACTIONS(833), - [anon_sym_BANG_TILDE] = ACTIONS(833), - [anon_sym_bit_DASHand] = ACTIONS(833), - [anon_sym_bit_DASHxor] = ACTIONS(833), - [anon_sym_bit_DASHor] = ACTIONS(833), - [anon_sym_and] = ACTIONS(833), - [anon_sym_xor] = ACTIONS(833), - [anon_sym_or] = ACTIONS(833), - [anon_sym_DOT_DOT_LT] = ACTIONS(833), - [anon_sym_DOT_DOT] = ACTIONS(833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(833), - [sym_val_nothing] = ACTIONS(833), - [anon_sym_true] = ACTIONS(833), - [anon_sym_false] = ACTIONS(833), - [aux_sym_val_number_token1] = ACTIONS(833), - [aux_sym_val_number_token2] = ACTIONS(833), - [aux_sym_val_number_token3] = ACTIONS(833), - [aux_sym_val_number_token4] = ACTIONS(833), - [aux_sym_val_number_token5] = ACTIONS(833), - [anon_sym_inf] = ACTIONS(833), - [anon_sym_DASHinf] = ACTIONS(833), - [anon_sym_NaN] = ACTIONS(833), - [anon_sym_0b] = ACTIONS(833), - [anon_sym_0o] = ACTIONS(833), - [anon_sym_0x] = ACTIONS(833), - [sym_val_date] = ACTIONS(833), - [anon_sym_DQUOTE] = ACTIONS(833), - [sym__str_single_quotes] = ACTIONS(833), - [sym__str_back_ticks] = ACTIONS(833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), - [anon_sym_err_GT] = ACTIONS(833), - [anon_sym_out_GT] = ACTIONS(833), - [anon_sym_e_GT] = ACTIONS(833), - [anon_sym_o_GT] = ACTIONS(833), - [anon_sym_err_PLUSout_GT] = ACTIONS(833), - [anon_sym_out_PLUSerr_GT] = ACTIONS(833), - [anon_sym_o_PLUSe_GT] = ACTIONS(833), - [anon_sym_e_PLUSo_GT] = ACTIONS(833), - [sym_short_flag] = ACTIONS(833), - [aux_sym_unquoted_token1] = ACTIONS(833), - [anon_sym_POUND] = ACTIONS(3), - }, - [348] = { - [sym__command_name] = STATE(621), - [sym_scope_pattern] = STATE(636), - [sym_wild_card] = STATE(663), - [sym_command_list] = STATE(692), - [sym_val_string] = STATE(579), - [sym__str_double_quotes] = STATE(570), - [sym_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1005), - [sym_cmd_identifier] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_def_DASHenv] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_where] = ACTIONS(1005), - [anon_sym_not] = ACTIONS(1005), - [anon_sym_DOT_DOT_LT] = ACTIONS(1005), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [sym_val_nothing] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [aux_sym_val_number_token1] = ACTIONS(1005), - [aux_sym_val_number_token2] = ACTIONS(1005), - [aux_sym_val_number_token3] = ACTIONS(1005), - [aux_sym_val_number_token4] = ACTIONS(1005), - [aux_sym_val_number_token5] = ACTIONS(1005), - [anon_sym_inf] = ACTIONS(1005), - [anon_sym_DASHinf] = ACTIONS(1005), - [anon_sym_NaN] = ACTIONS(1005), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), - [anon_sym_CARET] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(3), - }, - [349] = { - [sym_comment] = STATE(349), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LF] = ACTIONS(839), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_PIPE] = ACTIONS(837), - [anon_sym_DOLLAR] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(837), - [anon_sym_DASH_DASH] = ACTIONS(837), - [anon_sym_DASH] = ACTIONS(837), - [anon_sym_in] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_STAR] = ACTIONS(837), - [anon_sym_STAR_STAR] = ACTIONS(837), - [anon_sym_PLUS_PLUS] = ACTIONS(837), - [anon_sym_SLASH] = ACTIONS(837), - [anon_sym_mod] = ACTIONS(837), - [anon_sym_SLASH_SLASH] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(837), - [anon_sym_bit_DASHshl] = ACTIONS(837), - [anon_sym_bit_DASHshr] = ACTIONS(837), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_LT2] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_not_DASHin] = ACTIONS(837), - [anon_sym_starts_DASHwith] = ACTIONS(837), - [anon_sym_ends_DASHwith] = ACTIONS(837), - [anon_sym_EQ_TILDE] = ACTIONS(837), - [anon_sym_BANG_TILDE] = ACTIONS(837), - [anon_sym_bit_DASHand] = ACTIONS(837), - [anon_sym_bit_DASHxor] = ACTIONS(837), - [anon_sym_bit_DASHor] = ACTIONS(837), - [anon_sym_and] = ACTIONS(837), - [anon_sym_xor] = ACTIONS(837), - [anon_sym_or] = ACTIONS(837), - [anon_sym_DOT_DOT_LT] = ACTIONS(837), - [anon_sym_DOT_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(837), - [sym_val_nothing] = ACTIONS(837), - [anon_sym_true] = ACTIONS(837), - [anon_sym_false] = ACTIONS(837), - [aux_sym_val_number_token1] = ACTIONS(837), - [aux_sym_val_number_token2] = ACTIONS(837), - [aux_sym_val_number_token3] = ACTIONS(837), - [aux_sym_val_number_token4] = ACTIONS(837), - [aux_sym_val_number_token5] = ACTIONS(837), - [anon_sym_inf] = ACTIONS(837), - [anon_sym_DASHinf] = ACTIONS(837), - [anon_sym_NaN] = ACTIONS(837), - [anon_sym_0b] = ACTIONS(837), - [anon_sym_0o] = ACTIONS(837), - [anon_sym_0x] = ACTIONS(837), - [sym_val_date] = ACTIONS(837), - [anon_sym_DQUOTE] = ACTIONS(837), - [sym__str_single_quotes] = ACTIONS(837), - [sym__str_back_ticks] = ACTIONS(837), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(837), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), - [anon_sym_err_GT] = ACTIONS(837), - [anon_sym_out_GT] = ACTIONS(837), - [anon_sym_e_GT] = ACTIONS(837), - [anon_sym_o_GT] = ACTIONS(837), - [anon_sym_err_PLUSout_GT] = ACTIONS(837), - [anon_sym_out_PLUSerr_GT] = ACTIONS(837), - [anon_sym_o_PLUSe_GT] = ACTIONS(837), - [anon_sym_e_PLUSo_GT] = ACTIONS(837), - [sym_short_flag] = ACTIONS(837), - [aux_sym_unquoted_token1] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(3), - }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_SEMI] = ACTIONS(841), - [anon_sym_LF] = ACTIONS(843), - [anon_sym_LBRACK] = ACTIONS(841), - [anon_sym_LPAREN] = ACTIONS(841), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_PIPE] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(841), - [anon_sym_GT] = ACTIONS(841), - [anon_sym_DASH_DASH] = ACTIONS(841), - [anon_sym_DASH] = ACTIONS(841), - [anon_sym_in] = ACTIONS(841), - [anon_sym_LBRACE] = ACTIONS(841), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_STAR] = ACTIONS(841), - [anon_sym_STAR_STAR] = ACTIONS(841), - [anon_sym_PLUS_PLUS] = ACTIONS(841), - [anon_sym_SLASH] = ACTIONS(841), - [anon_sym_mod] = ACTIONS(841), - [anon_sym_SLASH_SLASH] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(841), - [anon_sym_bit_DASHshl] = ACTIONS(841), - [anon_sym_bit_DASHshr] = ACTIONS(841), - [anon_sym_EQ_EQ] = ACTIONS(841), - [anon_sym_BANG_EQ] = ACTIONS(841), - [anon_sym_LT2] = ACTIONS(841), - [anon_sym_LT_EQ] = ACTIONS(841), - [anon_sym_GT_EQ] = ACTIONS(841), - [anon_sym_not_DASHin] = ACTIONS(841), - [anon_sym_starts_DASHwith] = ACTIONS(841), - [anon_sym_ends_DASHwith] = ACTIONS(841), - [anon_sym_EQ_TILDE] = ACTIONS(841), - [anon_sym_BANG_TILDE] = ACTIONS(841), - [anon_sym_bit_DASHand] = ACTIONS(841), - [anon_sym_bit_DASHxor] = ACTIONS(841), - [anon_sym_bit_DASHor] = ACTIONS(841), - [anon_sym_and] = ACTIONS(841), - [anon_sym_xor] = ACTIONS(841), - [anon_sym_or] = ACTIONS(841), - [anon_sym_DOT_DOT_LT] = ACTIONS(841), - [anon_sym_DOT_DOT] = ACTIONS(841), - [anon_sym_DOT_DOT_EQ] = ACTIONS(841), - [sym_val_nothing] = ACTIONS(841), - [anon_sym_true] = ACTIONS(841), - [anon_sym_false] = ACTIONS(841), - [aux_sym_val_number_token1] = ACTIONS(841), - [aux_sym_val_number_token2] = ACTIONS(841), - [aux_sym_val_number_token3] = ACTIONS(841), - [aux_sym_val_number_token4] = ACTIONS(841), - [aux_sym_val_number_token5] = ACTIONS(841), - [anon_sym_inf] = ACTIONS(841), - [anon_sym_DASHinf] = ACTIONS(841), - [anon_sym_NaN] = ACTIONS(841), - [anon_sym_0b] = ACTIONS(841), - [anon_sym_0o] = ACTIONS(841), - [anon_sym_0x] = ACTIONS(841), - [sym_val_date] = ACTIONS(841), - [anon_sym_DQUOTE] = ACTIONS(841), - [sym__str_single_quotes] = ACTIONS(841), - [sym__str_back_ticks] = ACTIONS(841), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(841), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), - [anon_sym_err_GT] = ACTIONS(841), - [anon_sym_out_GT] = ACTIONS(841), - [anon_sym_e_GT] = ACTIONS(841), - [anon_sym_o_GT] = ACTIONS(841), - [anon_sym_err_PLUSout_GT] = ACTIONS(841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(841), - [anon_sym_o_PLUSe_GT] = ACTIONS(841), - [anon_sym_e_PLUSo_GT] = ACTIONS(841), - [sym_short_flag] = ACTIONS(841), - [aux_sym_unquoted_token1] = ACTIONS(841), - [anon_sym_POUND] = ACTIONS(3), - }, - [351] = { - [sym_comment] = STATE(351), - [anon_sym_SEMI] = ACTIONS(845), - [anon_sym_LF] = ACTIONS(847), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_LPAREN] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_PIPE] = ACTIONS(845), - [anon_sym_DOLLAR] = ACTIONS(845), - [anon_sym_GT] = ACTIONS(845), - [anon_sym_DASH_DASH] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(845), - [anon_sym_in] = ACTIONS(845), - [anon_sym_LBRACE] = ACTIONS(845), - [anon_sym_RBRACE] = ACTIONS(845), - [anon_sym_STAR] = ACTIONS(845), - [anon_sym_STAR_STAR] = ACTIONS(845), - [anon_sym_PLUS_PLUS] = ACTIONS(845), - [anon_sym_SLASH] = ACTIONS(845), - [anon_sym_mod] = ACTIONS(845), - [anon_sym_SLASH_SLASH] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(845), - [anon_sym_bit_DASHshl] = ACTIONS(845), - [anon_sym_bit_DASHshr] = ACTIONS(845), - [anon_sym_EQ_EQ] = ACTIONS(845), - [anon_sym_BANG_EQ] = ACTIONS(845), - [anon_sym_LT2] = ACTIONS(845), - [anon_sym_LT_EQ] = ACTIONS(845), - [anon_sym_GT_EQ] = ACTIONS(845), - [anon_sym_not_DASHin] = ACTIONS(845), - [anon_sym_starts_DASHwith] = ACTIONS(845), - [anon_sym_ends_DASHwith] = ACTIONS(845), - [anon_sym_EQ_TILDE] = ACTIONS(845), - [anon_sym_BANG_TILDE] = ACTIONS(845), - [anon_sym_bit_DASHand] = ACTIONS(845), - [anon_sym_bit_DASHxor] = ACTIONS(845), - [anon_sym_bit_DASHor] = ACTIONS(845), - [anon_sym_and] = ACTIONS(845), - [anon_sym_xor] = ACTIONS(845), - [anon_sym_or] = ACTIONS(845), - [anon_sym_DOT_DOT_LT] = ACTIONS(845), - [anon_sym_DOT_DOT] = ACTIONS(845), - [anon_sym_DOT_DOT_EQ] = ACTIONS(845), - [sym_val_nothing] = ACTIONS(845), - [anon_sym_true] = ACTIONS(845), - [anon_sym_false] = ACTIONS(845), - [aux_sym_val_number_token1] = ACTIONS(845), - [aux_sym_val_number_token2] = ACTIONS(845), - [aux_sym_val_number_token3] = ACTIONS(845), - [aux_sym_val_number_token4] = ACTIONS(845), - [aux_sym_val_number_token5] = ACTIONS(845), - [anon_sym_inf] = ACTIONS(845), - [anon_sym_DASHinf] = ACTIONS(845), - [anon_sym_NaN] = ACTIONS(845), - [anon_sym_0b] = ACTIONS(845), - [anon_sym_0o] = ACTIONS(845), - [anon_sym_0x] = ACTIONS(845), - [sym_val_date] = ACTIONS(845), - [anon_sym_DQUOTE] = ACTIONS(845), - [sym__str_single_quotes] = ACTIONS(845), - [sym__str_back_ticks] = ACTIONS(845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(845), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(845), - [anon_sym_err_GT] = ACTIONS(845), - [anon_sym_out_GT] = ACTIONS(845), - [anon_sym_e_GT] = ACTIONS(845), - [anon_sym_o_GT] = ACTIONS(845), - [anon_sym_err_PLUSout_GT] = ACTIONS(845), - [anon_sym_out_PLUSerr_GT] = ACTIONS(845), - [anon_sym_o_PLUSe_GT] = ACTIONS(845), - [anon_sym_e_PLUSo_GT] = ACTIONS(845), - [sym_short_flag] = ACTIONS(845), - [aux_sym_unquoted_token1] = ACTIONS(845), - [anon_sym_POUND] = ACTIONS(3), - }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_RPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_DOT_DOT_LT] = ACTIONS(861), - [anon_sym_DOT_DOT] = ACTIONS(861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [sym_val_nothing] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym_val_number_token1] = ACTIONS(861), - [aux_sym_val_number_token2] = ACTIONS(861), - [aux_sym_val_number_token3] = ACTIONS(861), - [aux_sym_val_number_token4] = ACTIONS(861), - [aux_sym_val_number_token5] = ACTIONS(861), - [anon_sym_inf] = ACTIONS(861), - [anon_sym_DASHinf] = ACTIONS(861), - [anon_sym_NaN] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [sym_short_flag] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), - [anon_sym_POUND] = ACTIONS(3), - }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_RPAREN] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_in] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_STAR_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_bit_DASHshl] = ACTIONS(879), - [anon_sym_bit_DASHshr] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_not_DASHin] = ACTIONS(879), - [anon_sym_starts_DASHwith] = ACTIONS(879), - [anon_sym_ends_DASHwith] = ACTIONS(879), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(879), - [anon_sym_bit_DASHxor] = ACTIONS(879), - [anon_sym_bit_DASHor] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_DOT_DOT_LT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(879), - [sym_val_nothing] = ACTIONS(879), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [aux_sym_val_number_token1] = ACTIONS(879), - [aux_sym_val_number_token2] = ACTIONS(879), - [aux_sym_val_number_token3] = ACTIONS(879), - [aux_sym_val_number_token4] = ACTIONS(879), - [aux_sym_val_number_token5] = ACTIONS(879), - [anon_sym_inf] = ACTIONS(879), - [anon_sym_DASHinf] = ACTIONS(879), - [anon_sym_NaN] = ACTIONS(879), - [anon_sym_0b] = ACTIONS(879), - [anon_sym_0o] = ACTIONS(879), - [anon_sym_0x] = ACTIONS(879), - [sym_val_date] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(879), - [sym__str_single_quotes] = ACTIONS(879), - [sym__str_back_ticks] = ACTIONS(879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), - [anon_sym_err_GT] = ACTIONS(879), - [anon_sym_out_GT] = ACTIONS(879), - [anon_sym_e_GT] = ACTIONS(879), - [anon_sym_o_GT] = ACTIONS(879), - [anon_sym_err_PLUSout_GT] = ACTIONS(879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(879), - [anon_sym_o_PLUSe_GT] = ACTIONS(879), - [anon_sym_e_PLUSo_GT] = ACTIONS(879), - [sym_short_flag] = ACTIONS(879), - [aux_sym_unquoted_token1] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3), - }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [sym_val_nothing] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [aux_sym_val_number_token1] = ACTIONS(891), - [aux_sym_val_number_token2] = ACTIONS(891), - [aux_sym_val_number_token3] = ACTIONS(891), - [aux_sym_val_number_token4] = ACTIONS(891), - [aux_sym_val_number_token5] = ACTIONS(891), - [anon_sym_inf] = ACTIONS(891), - [anon_sym_DASHinf] = ACTIONS(891), - [anon_sym_NaN] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(891), - [anon_sym_0o] = ACTIONS(891), - [anon_sym_0x] = ACTIONS(891), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(891), - [anon_sym_out_GT] = ACTIONS(891), - [anon_sym_e_GT] = ACTIONS(891), - [anon_sym_o_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT] = ACTIONS(891), - [sym_short_flag] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), - }, - [355] = { - [sym__flag] = STATE(467), - [sym_long_flag] = STATE(474), - [sym_comment] = STATE(355), - [aux_sym_overlay_use_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(1239), - [anon_sym_alias] = ACTIONS(1239), - [anon_sym_let] = ACTIONS(1239), - [anon_sym_let_DASHenv] = ACTIONS(1239), - [anon_sym_mut] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [sym_cmd_identifier] = ACTIONS(1239), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_def] = ACTIONS(1239), - [anon_sym_def_DASHenv] = ACTIONS(1239), - [anon_sym_export_DASHenv] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_module] = ACTIONS(1239), - [anon_sym_use] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1239), - [anon_sym_error] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_RBRACE] = ACTIONS(1239), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_source] = ACTIONS(1239), - [anon_sym_source_DASHenv] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_hide] = ACTIONS(1239), - [anon_sym_hide_DASHenv] = ACTIONS(1239), - [anon_sym_overlay] = ACTIONS(1239), - [anon_sym_as] = ACTIONS(1243), - [anon_sym_where] = ACTIONS(1239), - [anon_sym_not] = ACTIONS(1239), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [sym_val_nothing] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [aux_sym_val_number_token1] = ACTIONS(1239), - [aux_sym_val_number_token2] = ACTIONS(1239), - [aux_sym_val_number_token3] = ACTIONS(1239), - [aux_sym_val_number_token4] = ACTIONS(1239), - [aux_sym_val_number_token5] = ACTIONS(1239), - [anon_sym_inf] = ACTIONS(1239), - [anon_sym_DASHinf] = ACTIONS(1239), - [anon_sym_NaN] = ACTIONS(1239), - [anon_sym_0b] = ACTIONS(1239), - [anon_sym_0o] = ACTIONS(1239), - [anon_sym_0x] = ACTIONS(1239), - [sym_val_date] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym__str_single_quotes] = ACTIONS(1239), - [sym__str_back_ticks] = ACTIONS(1239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1239), - [sym_short_flag] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(3), - }, - [356] = { - [sym_comment] = STATE(356), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_in] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_bit_DASHshl] = ACTIONS(907), - [anon_sym_bit_DASHshr] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_LT2] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_not_DASHin] = ACTIONS(907), - [anon_sym_starts_DASHwith] = ACTIONS(907), - [anon_sym_ends_DASHwith] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_BANG_TILDE] = ACTIONS(907), - [anon_sym_bit_DASHand] = ACTIONS(907), - [anon_sym_bit_DASHxor] = ACTIONS(907), - [anon_sym_bit_DASHor] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [sym_val_nothing] = ACTIONS(907), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [aux_sym_val_number_token1] = ACTIONS(907), - [aux_sym_val_number_token2] = ACTIONS(907), - [aux_sym_val_number_token3] = ACTIONS(907), - [aux_sym_val_number_token4] = ACTIONS(907), - [aux_sym_val_number_token5] = ACTIONS(907), - [anon_sym_inf] = ACTIONS(907), - [anon_sym_DASHinf] = ACTIONS(907), - [anon_sym_NaN] = ACTIONS(907), - [anon_sym_0b] = ACTIONS(907), - [anon_sym_0o] = ACTIONS(907), - [anon_sym_0x] = ACTIONS(907), - [sym_val_date] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__str_single_quotes] = ACTIONS(907), - [sym__str_back_ticks] = ACTIONS(907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), - [anon_sym_err_GT] = ACTIONS(907), - [anon_sym_out_GT] = ACTIONS(907), - [anon_sym_e_GT] = ACTIONS(907), - [anon_sym_o_GT] = ACTIONS(907), - [anon_sym_err_PLUSout_GT] = ACTIONS(907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(907), - [anon_sym_o_PLUSe_GT] = ACTIONS(907), - [anon_sym_e_PLUSo_GT] = ACTIONS(907), - [sym_short_flag] = ACTIONS(907), - [aux_sym_unquoted_token1] = ACTIONS(907), - [anon_sym_POUND] = ACTIONS(3), - }, - [357] = { - [sym_comment] = STATE(357), - [anon_sym_SEMI] = ACTIONS(923), - [anon_sym_LF] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(923), - [anon_sym_RPAREN] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_DASH_DASH] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_in] = ACTIONS(923), - [anon_sym_LBRACE] = ACTIONS(923), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_STAR_STAR] = ACTIONS(923), - [anon_sym_PLUS_PLUS] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_bit_DASHshl] = ACTIONS(923), - [anon_sym_bit_DASHshr] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(923), - [anon_sym_BANG_EQ] = ACTIONS(923), - [anon_sym_LT2] = ACTIONS(923), - [anon_sym_LT_EQ] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(923), - [anon_sym_not_DASHin] = ACTIONS(923), - [anon_sym_starts_DASHwith] = ACTIONS(923), - [anon_sym_ends_DASHwith] = ACTIONS(923), - [anon_sym_EQ_TILDE] = ACTIONS(923), - [anon_sym_BANG_TILDE] = ACTIONS(923), - [anon_sym_bit_DASHand] = ACTIONS(923), - [anon_sym_bit_DASHxor] = ACTIONS(923), - [anon_sym_bit_DASHor] = ACTIONS(923), - [anon_sym_and] = ACTIONS(923), - [anon_sym_xor] = ACTIONS(923), - [anon_sym_or] = ACTIONS(923), - [anon_sym_DOT_DOT_LT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_EQ] = ACTIONS(923), - [sym_val_nothing] = ACTIONS(923), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [aux_sym_val_number_token1] = ACTIONS(923), - [aux_sym_val_number_token2] = ACTIONS(923), - [aux_sym_val_number_token3] = ACTIONS(923), - [aux_sym_val_number_token4] = ACTIONS(923), - [aux_sym_val_number_token5] = ACTIONS(923), - [anon_sym_inf] = ACTIONS(923), - [anon_sym_DASHinf] = ACTIONS(923), - [anon_sym_NaN] = ACTIONS(923), - [anon_sym_0b] = ACTIONS(923), - [anon_sym_0o] = ACTIONS(923), - [anon_sym_0x] = ACTIONS(923), - [sym_val_date] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(923), - [sym__str_single_quotes] = ACTIONS(923), - [sym__str_back_ticks] = ACTIONS(923), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), - [anon_sym_err_GT] = ACTIONS(923), - [anon_sym_out_GT] = ACTIONS(923), - [anon_sym_e_GT] = ACTIONS(923), - [anon_sym_o_GT] = ACTIONS(923), - [anon_sym_err_PLUSout_GT] = ACTIONS(923), - [anon_sym_out_PLUSerr_GT] = ACTIONS(923), - [anon_sym_o_PLUSe_GT] = ACTIONS(923), - [anon_sym_e_PLUSo_GT] = ACTIONS(923), - [sym_short_flag] = ACTIONS(923), - [aux_sym_unquoted_token1] = ACTIONS(923), - [anon_sym_POUND] = ACTIONS(3), - }, - [358] = { - [sym_comment] = STATE(358), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_err_GT] = ACTIONS(927), - [anon_sym_out_GT] = ACTIONS(927), - [anon_sym_e_GT] = ACTIONS(927), - [anon_sym_o_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT] = ACTIONS(927), - [sym_short_flag] = ACTIONS(927), - [aux_sym_unquoted_token1] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [359] = { - [sym_comment] = STATE(359), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_RPAREN] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_err_GT] = ACTIONS(927), - [anon_sym_out_GT] = ACTIONS(927), - [anon_sym_e_GT] = ACTIONS(927), - [anon_sym_o_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT] = ACTIONS(927), - [sym_short_flag] = ACTIONS(927), - [aux_sym_unquoted_token1] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_RPAREN] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_in] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT_LT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(919), - [sym_val_nothing] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym_val_number_token1] = ACTIONS(919), - [aux_sym_val_number_token2] = ACTIONS(919), - [aux_sym_val_number_token3] = ACTIONS(919), - [aux_sym_val_number_token4] = ACTIONS(919), - [aux_sym_val_number_token5] = ACTIONS(919), - [anon_sym_inf] = ACTIONS(919), - [anon_sym_DASHinf] = ACTIONS(919), - [anon_sym_NaN] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(919), - [anon_sym_0x] = ACTIONS(919), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [sym_short_flag] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(919), - [anon_sym_POUND] = ACTIONS(3), - }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(3), - }, - [362] = { - [sym_comment] = STATE(362), - [ts_builtin_sym_end] = ACTIONS(779), - [anon_sym_SEMI] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_DASH_DASH] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_in] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_STAR_STAR] = ACTIONS(777), - [anon_sym_PLUS_PLUS] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_bit_DASHshl] = ACTIONS(777), - [anon_sym_bit_DASHshr] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(777), - [anon_sym_BANG_EQ] = ACTIONS(777), - [anon_sym_LT2] = ACTIONS(777), - [anon_sym_LT_EQ] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(777), - [anon_sym_not_DASHin] = ACTIONS(777), - [anon_sym_starts_DASHwith] = ACTIONS(777), - [anon_sym_ends_DASHwith] = ACTIONS(777), - [anon_sym_EQ_TILDE] = ACTIONS(777), - [anon_sym_BANG_TILDE] = ACTIONS(777), - [anon_sym_bit_DASHand] = ACTIONS(777), - [anon_sym_bit_DASHxor] = ACTIONS(777), - [anon_sym_bit_DASHor] = ACTIONS(777), - [anon_sym_and] = ACTIONS(777), - [anon_sym_xor] = ACTIONS(777), - [anon_sym_or] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_err_GT] = ACTIONS(777), - [anon_sym_out_GT] = ACTIONS(777), - [anon_sym_e_GT] = ACTIONS(777), - [anon_sym_o_GT] = ACTIONS(777), - [anon_sym_err_PLUSout_GT] = ACTIONS(777), - [anon_sym_out_PLUSerr_GT] = ACTIONS(777), - [anon_sym_o_PLUSe_GT] = ACTIONS(777), - [anon_sym_e_PLUSo_GT] = ACTIONS(777), - [sym_short_flag] = ACTIONS(777), - [aux_sym_unquoted_token1] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(3), - }, - [363] = { - [sym_comment] = STATE(363), - [ts_builtin_sym_end] = ACTIONS(783), - [anon_sym_SEMI] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_DASH_DASH] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_in] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_STAR_STAR] = ACTIONS(781), - [anon_sym_PLUS_PLUS] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_mod] = ACTIONS(781), - [anon_sym_SLASH_SLASH] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_bit_DASHshl] = ACTIONS(781), - [anon_sym_bit_DASHshr] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(781), - [anon_sym_BANG_EQ] = ACTIONS(781), - [anon_sym_LT2] = ACTIONS(781), - [anon_sym_LT_EQ] = ACTIONS(781), - [anon_sym_GT_EQ] = ACTIONS(781), - [anon_sym_not_DASHin] = ACTIONS(781), - [anon_sym_starts_DASHwith] = ACTIONS(781), - [anon_sym_ends_DASHwith] = ACTIONS(781), - [anon_sym_EQ_TILDE] = ACTIONS(781), - [anon_sym_BANG_TILDE] = ACTIONS(781), - [anon_sym_bit_DASHand] = ACTIONS(781), - [anon_sym_bit_DASHxor] = ACTIONS(781), - [anon_sym_bit_DASHor] = ACTIONS(781), - [anon_sym_and] = ACTIONS(781), - [anon_sym_xor] = ACTIONS(781), - [anon_sym_or] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_err_GT] = ACTIONS(781), - [anon_sym_out_GT] = ACTIONS(781), - [anon_sym_e_GT] = ACTIONS(781), - [anon_sym_o_GT] = ACTIONS(781), - [anon_sym_err_PLUSout_GT] = ACTIONS(781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(781), - [anon_sym_o_PLUSe_GT] = ACTIONS(781), - [anon_sym_e_PLUSo_GT] = ACTIONS(781), - [sym_short_flag] = ACTIONS(781), - [aux_sym_unquoted_token1] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(3), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_SEMI] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_DASH_DASH] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_in] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_STAR_STAR] = ACTIONS(789), - [anon_sym_PLUS_PLUS] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(789), - [anon_sym_SLASH_SLASH] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_bit_DASHshl] = ACTIONS(789), - [anon_sym_bit_DASHshr] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(789), - [anon_sym_BANG_EQ] = ACTIONS(789), - [anon_sym_LT2] = ACTIONS(789), - [anon_sym_LT_EQ] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(789), - [anon_sym_not_DASHin] = ACTIONS(789), - [anon_sym_starts_DASHwith] = ACTIONS(789), - [anon_sym_ends_DASHwith] = ACTIONS(789), - [anon_sym_EQ_TILDE] = ACTIONS(789), - [anon_sym_BANG_TILDE] = ACTIONS(789), - [anon_sym_bit_DASHand] = ACTIONS(789), - [anon_sym_bit_DASHxor] = ACTIONS(789), - [anon_sym_bit_DASHor] = ACTIONS(789), - [anon_sym_and] = ACTIONS(789), - [anon_sym_xor] = ACTIONS(789), - [anon_sym_or] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_err_GT] = ACTIONS(789), - [anon_sym_out_GT] = ACTIONS(789), - [anon_sym_e_GT] = ACTIONS(789), - [anon_sym_o_GT] = ACTIONS(789), - [anon_sym_err_PLUSout_GT] = ACTIONS(789), - [anon_sym_out_PLUSerr_GT] = ACTIONS(789), - [anon_sym_o_PLUSe_GT] = ACTIONS(789), - [anon_sym_e_PLUSo_GT] = ACTIONS(789), - [sym_short_flag] = ACTIONS(789), - [aux_sym_unquoted_token1] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(3), - }, - [365] = { - [sym__command_name] = STATE(621), - [sym_scope_pattern] = STATE(639), - [sym_wild_card] = STATE(663), - [sym_command_list] = STATE(692), - [sym_val_string] = STATE(579), - [sym__str_double_quotes] = STATE(570), - [sym_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(1003), - [anon_sym_export] = ACTIONS(1001), - [anon_sym_alias] = ACTIONS(1001), - [anon_sym_let] = ACTIONS(1001), - [anon_sym_let_DASHenv] = ACTIONS(1001), - [anon_sym_mut] = ACTIONS(1001), - [anon_sym_const] = ACTIONS(1001), - [anon_sym_SEMI] = ACTIONS(1001), - [sym_cmd_identifier] = ACTIONS(1103), - [anon_sym_LF] = ACTIONS(1003), - [anon_sym_def] = ACTIONS(1001), - [anon_sym_def_DASHenv] = ACTIONS(1001), - [anon_sym_export_DASHenv] = ACTIONS(1001), - [anon_sym_extern] = ACTIONS(1001), - [anon_sym_module] = ACTIONS(1001), - [anon_sym_use] = ACTIONS(1001), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LPAREN] = ACTIONS(1001), - [anon_sym_DOLLAR] = ACTIONS(1001), - [anon_sym_error] = ACTIONS(1001), - [anon_sym_DASH] = ACTIONS(1001), - [anon_sym_break] = ACTIONS(1001), - [anon_sym_continue] = ACTIONS(1001), - [anon_sym_for] = ACTIONS(1001), - [anon_sym_loop] = ACTIONS(1001), - [anon_sym_while] = ACTIONS(1001), - [anon_sym_do] = ACTIONS(1001), - [anon_sym_if] = ACTIONS(1001), - [anon_sym_match] = ACTIONS(1001), - [anon_sym_LBRACE] = ACTIONS(1001), - [anon_sym_try] = ACTIONS(1001), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_source] = ACTIONS(1001), - [anon_sym_source_DASHenv] = ACTIONS(1001), - [anon_sym_register] = ACTIONS(1001), - [anon_sym_hide] = ACTIONS(1001), - [anon_sym_hide_DASHenv] = ACTIONS(1001), - [anon_sym_overlay] = ACTIONS(1001), - [anon_sym_STAR] = ACTIONS(1107), - [anon_sym_where] = ACTIONS(1001), - [anon_sym_not] = ACTIONS(1001), - [anon_sym_DOT_DOT_LT] = ACTIONS(1001), - [anon_sym_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [sym_val_nothing] = ACTIONS(1001), - [anon_sym_true] = ACTIONS(1001), - [anon_sym_false] = ACTIONS(1001), - [aux_sym_val_number_token1] = ACTIONS(1001), - [aux_sym_val_number_token2] = ACTIONS(1001), - [aux_sym_val_number_token3] = ACTIONS(1001), - [aux_sym_val_number_token4] = ACTIONS(1001), - [aux_sym_val_number_token5] = ACTIONS(1001), - [anon_sym_inf] = ACTIONS(1001), - [anon_sym_DASHinf] = ACTIONS(1001), - [anon_sym_NaN] = ACTIONS(1001), - [anon_sym_0b] = ACTIONS(1001), - [anon_sym_0o] = ACTIONS(1001), - [anon_sym_0x] = ACTIONS(1001), - [sym_val_date] = ACTIONS(1001), - [anon_sym_DQUOTE] = ACTIONS(1109), - [sym__str_single_quotes] = ACTIONS(1111), - [sym__str_back_ticks] = ACTIONS(1111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1001), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1001), - [anon_sym_CARET] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(3), - }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_SEMI] = ACTIONS(883), - [anon_sym_LF] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_RPAREN] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_STAR_STAR] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(883), - [anon_sym_bit_DASHshr] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(883), - [anon_sym_not_DASHin] = ACTIONS(883), - [anon_sym_starts_DASHwith] = ACTIONS(883), - [anon_sym_ends_DASHwith] = ACTIONS(883), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_BANG_TILDE] = ACTIONS(883), - [anon_sym_bit_DASHand] = ACTIONS(883), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(883), - [anon_sym_and] = ACTIONS(883), - [anon_sym_xor] = ACTIONS(883), - [anon_sym_or] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [sym_val_nothing] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [aux_sym_val_number_token1] = ACTIONS(883), - [aux_sym_val_number_token2] = ACTIONS(883), - [aux_sym_val_number_token3] = ACTIONS(883), - [aux_sym_val_number_token4] = ACTIONS(883), - [aux_sym_val_number_token5] = ACTIONS(883), - [anon_sym_inf] = ACTIONS(883), - [anon_sym_DASHinf] = ACTIONS(883), - [anon_sym_NaN] = ACTIONS(883), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(883), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(883), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [sym_short_flag] = ACTIONS(883), - [aux_sym_unquoted_token1] = ACTIONS(883), - [anon_sym_POUND] = ACTIONS(3), - }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), - }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_xor] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(1225), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_xor] = ACTIONS(1223), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_val_number_token5] = ACTIONS(87), + [anon_sym_inf] = ACTIONS(85), + [anon_sym_DASHinf] = ACTIONS(87), + [anon_sym_NaN] = ACTIONS(85), + [anon_sym_0b] = ACTIONS(89), + [anon_sym_0o] = ACTIONS(89), + [anon_sym_0x] = ACTIONS(89), + [sym_val_date] = ACTIONS(91), + [anon_sym_DQUOTE] = ACTIONS(93), + [sym__str_single_quotes] = ACTIONS(95), + [sym__str_back_ticks] = ACTIONS(95), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(97), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(99), + [anon_sym_CARET] = ACTIONS(101), + [anon_sym_POUND] = ACTIONS(145), }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), + [313] = { + [sym_comment] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(1003), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(769), + [anon_sym_out_GT] = ACTIONS(769), + [anon_sym_e_GT] = ACTIONS(769), + [anon_sym_o_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT] = ACTIONS(769), + [sym_short_flag] = ACTIONS(769), + [aux_sym_unquoted_token1] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [372] = { - [sym_comment] = STATE(372), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(1219), - [anon_sym_and] = ACTIONS(1221), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [314] = { + [sym_comment] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [sym_short_flag] = ACTIONS(775), + [aux_sym_unquoted_token1] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), + [315] = { + [sym_comment] = STATE(315), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_PIPE] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(769), + [anon_sym_DASH_DASH] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_in] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_STAR] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(1003), + [anon_sym_STAR_STAR] = ACTIONS(769), + [anon_sym_PLUS_PLUS] = ACTIONS(769), + [anon_sym_SLASH] = ACTIONS(769), + [anon_sym_mod] = ACTIONS(769), + [anon_sym_SLASH_SLASH] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(769), + [anon_sym_bit_DASHshl] = ACTIONS(769), + [anon_sym_bit_DASHshr] = ACTIONS(769), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_LT2] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_not_DASHin] = ACTIONS(769), + [anon_sym_starts_DASHwith] = ACTIONS(769), + [anon_sym_ends_DASHwith] = ACTIONS(769), + [anon_sym_EQ_TILDE] = ACTIONS(769), + [anon_sym_BANG_TILDE] = ACTIONS(769), + [anon_sym_bit_DASHand] = ACTIONS(769), + [anon_sym_bit_DASHxor] = ACTIONS(769), + [anon_sym_bit_DASHor] = ACTIONS(769), + [anon_sym_and] = ACTIONS(769), + [anon_sym_xor] = ACTIONS(769), + [anon_sym_or] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_err_GT] = ACTIONS(769), + [anon_sym_out_GT] = ACTIONS(769), + [anon_sym_e_GT] = ACTIONS(769), + [anon_sym_o_GT] = ACTIONS(769), + [anon_sym_err_PLUSout_GT] = ACTIONS(769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(769), + [anon_sym_o_PLUSe_GT] = ACTIONS(769), + [anon_sym_e_PLUSo_GT] = ACTIONS(769), + [sym_short_flag] = ACTIONS(769), + [aux_sym_unquoted_token1] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [374] = { - [sym_comment] = STATE(374), + [316] = { + [sym_comment] = STATE(316), [anon_sym_SEMI] = ACTIONS(793), [anon_sym_LF] = ACTIONS(795), [anon_sym_LBRACK] = ACTIONS(793), @@ -77959,34 +73677,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(793), [anon_sym_PIPE] = ACTIONS(793), [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), + [anon_sym_GT] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_in] = ACTIONS(793), [anon_sym_LBRACE] = ACTIONS(793), [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(1219), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), [anon_sym_and] = ACTIONS(793), [anon_sym_xor] = ACTIONS(793), [anon_sym_or] = ACTIONS(793), @@ -78025,8 +73744,991 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3), }, - [375] = { - [sym_comment] = STATE(375), + [317] = { + [sym__command_name] = STATE(581), + [sym_scope_pattern] = STATE(567), + [sym_wild_card] = STATE(579), + [sym_command_list] = STATE(578), + [sym_val_string] = STATE(516), + [sym__str_double_quotes] = STATE(505), + [sym_comment] = STATE(317), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [sym_cmd_identifier] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_def_DASHenv] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_where] = ACTIONS(1005), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_DOT_DOT_LT] = ACTIONS(1005), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [sym_val_nothing] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [aux_sym_val_number_token1] = ACTIONS(1005), + [aux_sym_val_number_token2] = ACTIONS(1005), + [aux_sym_val_number_token3] = ACTIONS(1005), + [aux_sym_val_number_token4] = ACTIONS(1005), + [aux_sym_val_number_token5] = ACTIONS(1005), + [anon_sym_inf] = ACTIONS(1005), + [anon_sym_DASHinf] = ACTIONS(1005), + [anon_sym_NaN] = ACTIONS(1005), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym__str_single_quotes] = ACTIONS(1001), + [sym__str_back_ticks] = ACTIONS(1001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(3), + }, + [318] = { + [sym__ctrl_expression_parenthesized] = STATE(3222), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3496), + [sym_where_command] = STATE(3251), + [sym__expression] = STATE(2334), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3311), + [sym_comment] = STATE(318), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(382), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [319] = { + [sym_expr_parenthesized] = STATE(450), + [sym_val_number] = STATE(450), + [sym_comment] = STATE(319), + [ts_builtin_sym_end] = ACTIONS(760), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LF] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_DASH_DASH] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_in] = ACTIONS(758), + [anon_sym_LBRACE] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_STAR_STAR] = ACTIONS(758), + [anon_sym_PLUS_PLUS] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_SLASH_SLASH] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_bit_DASHshl] = ACTIONS(758), + [anon_sym_bit_DASHshr] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(758), + [anon_sym_BANG_EQ] = ACTIONS(758), + [anon_sym_LT2] = ACTIONS(758), + [anon_sym_LT_EQ] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(758), + [anon_sym_not_DASHin] = ACTIONS(758), + [anon_sym_starts_DASHwith] = ACTIONS(758), + [anon_sym_ends_DASHwith] = ACTIONS(758), + [anon_sym_EQ_TILDE] = ACTIONS(758), + [anon_sym_BANG_TILDE] = ACTIONS(758), + [anon_sym_bit_DASHand] = ACTIONS(758), + [anon_sym_bit_DASHxor] = ACTIONS(758), + [anon_sym_bit_DASHor] = ACTIONS(758), + [anon_sym_and] = ACTIONS(758), + [anon_sym_xor] = ACTIONS(758), + [anon_sym_or] = ACTIONS(758), + [anon_sym_DOT_DOT_LT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_EQ] = ACTIONS(758), + [sym_val_nothing] = ACTIONS(758), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), + [aux_sym_val_number_token1] = ACTIONS(1011), + [aux_sym_val_number_token2] = ACTIONS(1011), + [aux_sym_val_number_token3] = ACTIONS(1011), + [aux_sym_val_number_token4] = ACTIONS(1011), + [aux_sym_val_number_token5] = ACTIONS(1011), + [anon_sym_inf] = ACTIONS(1011), + [anon_sym_DASHinf] = ACTIONS(1011), + [anon_sym_NaN] = ACTIONS(1011), + [anon_sym_0b] = ACTIONS(758), + [anon_sym_0o] = ACTIONS(758), + [anon_sym_0x] = ACTIONS(758), + [sym_val_date] = ACTIONS(758), + [anon_sym_DQUOTE] = ACTIONS(758), + [sym__str_single_quotes] = ACTIONS(758), + [sym__str_back_ticks] = ACTIONS(758), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(758), + [anon_sym_err_GT] = ACTIONS(758), + [anon_sym_out_GT] = ACTIONS(758), + [anon_sym_e_GT] = ACTIONS(758), + [anon_sym_o_GT] = ACTIONS(758), + [anon_sym_err_PLUSout_GT] = ACTIONS(758), + [anon_sym_out_PLUSerr_GT] = ACTIONS(758), + [anon_sym_o_PLUSe_GT] = ACTIONS(758), + [anon_sym_e_PLUSo_GT] = ACTIONS(758), + [sym_short_flag] = ACTIONS(758), + [aux_sym_unquoted_token1] = ACTIONS(758), + [anon_sym_POUND] = ACTIONS(3), + }, + [320] = { + [sym_comment] = STATE(320), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_in] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_mod] = ACTIONS(797), + [anon_sym_SLASH_SLASH] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_bit_DASHshl] = ACTIONS(797), + [anon_sym_bit_DASHshr] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_LT2] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_not_DASHin] = ACTIONS(797), + [anon_sym_starts_DASHwith] = ACTIONS(797), + [anon_sym_ends_DASHwith] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [anon_sym_BANG_TILDE] = ACTIONS(797), + [anon_sym_bit_DASHand] = ACTIONS(797), + [anon_sym_bit_DASHxor] = ACTIONS(797), + [anon_sym_bit_DASHor] = ACTIONS(797), + [anon_sym_and] = ACTIONS(797), + [anon_sym_xor] = ACTIONS(797), + [anon_sym_or] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_err_GT] = ACTIONS(797), + [anon_sym_out_GT] = ACTIONS(797), + [anon_sym_e_GT] = ACTIONS(797), + [anon_sym_o_GT] = ACTIONS(797), + [anon_sym_err_PLUSout_GT] = ACTIONS(797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(797), + [anon_sym_o_PLUSe_GT] = ACTIONS(797), + [anon_sym_e_PLUSo_GT] = ACTIONS(797), + [sym_short_flag] = ACTIONS(797), + [aux_sym_unquoted_token1] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(3), + }, + [321] = { + [sym_comment] = STATE(321), + [ts_builtin_sym_end] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_err_GT] = ACTIONS(779), + [anon_sym_out_GT] = ACTIONS(779), + [anon_sym_e_GT] = ACTIONS(779), + [anon_sym_o_GT] = ACTIONS(779), + [anon_sym_err_PLUSout_GT] = ACTIONS(779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(779), + [anon_sym_o_PLUSe_GT] = ACTIONS(779), + [anon_sym_e_PLUSo_GT] = ACTIONS(779), + [sym_short_flag] = ACTIONS(779), + [aux_sym_unquoted_token1] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(3), + }, + [322] = { + [sym_comment] = STATE(322), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_in] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_STAR_STAR] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_mod] = ACTIONS(787), + [anon_sym_SLASH_SLASH] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_bit_DASHshl] = ACTIONS(787), + [anon_sym_bit_DASHshr] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT2] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(787), + [anon_sym_not_DASHin] = ACTIONS(787), + [anon_sym_starts_DASHwith] = ACTIONS(787), + [anon_sym_ends_DASHwith] = ACTIONS(787), + [anon_sym_EQ_TILDE] = ACTIONS(787), + [anon_sym_BANG_TILDE] = ACTIONS(787), + [anon_sym_bit_DASHand] = ACTIONS(787), + [anon_sym_bit_DASHxor] = ACTIONS(787), + [anon_sym_bit_DASHor] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [aux_sym_val_number_token1] = ACTIONS(787), + [aux_sym_val_number_token2] = ACTIONS(787), + [aux_sym_val_number_token3] = ACTIONS(787), + [aux_sym_val_number_token4] = ACTIONS(787), + [aux_sym_val_number_token5] = ACTIONS(787), + [anon_sym_inf] = ACTIONS(787), + [anon_sym_DASHinf] = ACTIONS(787), + [anon_sym_NaN] = ACTIONS(787), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_err_GT] = ACTIONS(787), + [anon_sym_out_GT] = ACTIONS(787), + [anon_sym_e_GT] = ACTIONS(787), + [anon_sym_o_GT] = ACTIONS(787), + [anon_sym_err_PLUSout_GT] = ACTIONS(787), + [anon_sym_out_PLUSerr_GT] = ACTIONS(787), + [anon_sym_o_PLUSe_GT] = ACTIONS(787), + [anon_sym_e_PLUSo_GT] = ACTIONS(787), + [sym_short_flag] = ACTIONS(787), + [aux_sym_unquoted_token1] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(3), + }, + [323] = { + [sym__command_name] = STATE(581), + [sym_scope_pattern] = STATE(539), + [sym_wild_card] = STATE(579), + [sym_command_list] = STATE(578), + [sym_val_string] = STATE(516), + [sym__str_double_quotes] = STATE(505), + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_alias] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_let_DASHenv] = ACTIONS(1013), + [anon_sym_mut] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [sym_cmd_identifier] = ACTIONS(991), + [anon_sym_LF] = ACTIONS(1015), + [anon_sym_def] = ACTIONS(1013), + [anon_sym_def_DASHenv] = ACTIONS(1013), + [anon_sym_export_DASHenv] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_RPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_source] = ACTIONS(1013), + [anon_sym_source_DASHenv] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_hide] = ACTIONS(1013), + [anon_sym_hide_DASHenv] = ACTIONS(1013), + [anon_sym_overlay] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_not] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [sym_val_nothing] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [aux_sym_val_number_token1] = ACTIONS(1013), + [aux_sym_val_number_token2] = ACTIONS(1013), + [aux_sym_val_number_token3] = ACTIONS(1013), + [aux_sym_val_number_token4] = ACTIONS(1013), + [aux_sym_val_number_token5] = ACTIONS(1013), + [anon_sym_inf] = ACTIONS(1013), + [anon_sym_DASHinf] = ACTIONS(1013), + [anon_sym_NaN] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1013), + [anon_sym_0o] = ACTIONS(1013), + [anon_sym_0x] = ACTIONS(1013), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(999), + [sym__str_single_quotes] = ACTIONS(1001), + [sym__str_back_ticks] = ACTIONS(1001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(3), + }, + [324] = { + [sym__ctrl_expression_parenthesized] = STATE(2938), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_pipe_element_parenthesized_last] = STATE(3379), + [sym_where_command] = STATE(2943), + [sym__expression] = STATE(2250), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(2945), + [sym_comment] = STATE(324), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(382), + [sym_cmd_identifier] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(179), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(283), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(207), + [anon_sym_try] = ACTIONS(285), + [anon_sym_return] = ACTIONS(213), + [anon_sym_where] = ACTIONS(225), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(229), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(229), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(239), + [aux_sym_val_number_token4] = ACTIONS(239), + [aux_sym_val_number_token5] = ACTIONS(239), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(239), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(243), + [anon_sym_DQUOTE] = ACTIONS(245), + [sym__str_single_quotes] = ACTIONS(247), + [sym__str_back_ticks] = ACTIONS(247), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(287), + [anon_sym_POUND] = ACTIONS(145), + }, + [325] = { + [sym_comment] = STATE(325), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [326] = { + [sym_comment] = STATE(326), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_RPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_RBRACE] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [sym_val_nothing] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym_val_number_token1] = ACTIONS(893), + [aux_sym_val_number_token2] = ACTIONS(893), + [aux_sym_val_number_token3] = ACTIONS(893), + [aux_sym_val_number_token4] = ACTIONS(893), + [aux_sym_val_number_token5] = ACTIONS(893), + [anon_sym_inf] = ACTIONS(893), + [anon_sym_DASHinf] = ACTIONS(893), + [anon_sym_NaN] = ACTIONS(893), + [anon_sym_0b] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_err_GT] = ACTIONS(893), + [anon_sym_out_GT] = ACTIONS(893), + [anon_sym_e_GT] = ACTIONS(893), + [anon_sym_o_GT] = ACTIONS(893), + [anon_sym_err_PLUSout_GT] = ACTIONS(893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(893), + [anon_sym_o_PLUSe_GT] = ACTIONS(893), + [anon_sym_e_PLUSo_GT] = ACTIONS(893), + [sym_short_flag] = ACTIONS(893), + [aux_sym_unquoted_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [327] = { + [sym_comment] = STATE(327), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [328] = { + [sym_comment] = STATE(328), + [anon_sym_SEMI] = ACTIONS(837), + [anon_sym_LF] = ACTIONS(839), + [anon_sym_LBRACK] = ACTIONS(837), + [anon_sym_LPAREN] = ACTIONS(837), + [anon_sym_RPAREN] = ACTIONS(837), + [anon_sym_PIPE] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(837), + [anon_sym_GT] = ACTIONS(837), + [anon_sym_DASH_DASH] = ACTIONS(837), + [anon_sym_DASH] = ACTIONS(837), + [anon_sym_in] = ACTIONS(837), + [anon_sym_LBRACE] = ACTIONS(837), + [anon_sym_RBRACE] = ACTIONS(837), + [anon_sym_STAR] = ACTIONS(837), + [anon_sym_STAR_STAR] = ACTIONS(837), + [anon_sym_PLUS_PLUS] = ACTIONS(837), + [anon_sym_SLASH] = ACTIONS(837), + [anon_sym_mod] = ACTIONS(837), + [anon_sym_SLASH_SLASH] = ACTIONS(837), + [anon_sym_PLUS] = ACTIONS(837), + [anon_sym_bit_DASHshl] = ACTIONS(837), + [anon_sym_bit_DASHshr] = ACTIONS(837), + [anon_sym_EQ_EQ] = ACTIONS(837), + [anon_sym_BANG_EQ] = ACTIONS(837), + [anon_sym_LT2] = ACTIONS(837), + [anon_sym_LT_EQ] = ACTIONS(837), + [anon_sym_GT_EQ] = ACTIONS(837), + [anon_sym_not_DASHin] = ACTIONS(837), + [anon_sym_starts_DASHwith] = ACTIONS(837), + [anon_sym_ends_DASHwith] = ACTIONS(837), + [anon_sym_EQ_TILDE] = ACTIONS(837), + [anon_sym_BANG_TILDE] = ACTIONS(837), + [anon_sym_bit_DASHand] = ACTIONS(837), + [anon_sym_bit_DASHxor] = ACTIONS(837), + [anon_sym_bit_DASHor] = ACTIONS(837), + [anon_sym_and] = ACTIONS(837), + [anon_sym_xor] = ACTIONS(837), + [anon_sym_or] = ACTIONS(837), + [anon_sym_DOT_DOT_LT] = ACTIONS(837), + [anon_sym_DOT_DOT] = ACTIONS(837), + [anon_sym_DOT_DOT_EQ] = ACTIONS(837), + [sym_val_nothing] = ACTIONS(837), + [anon_sym_true] = ACTIONS(837), + [anon_sym_false] = ACTIONS(837), + [aux_sym_val_number_token1] = ACTIONS(837), + [aux_sym_val_number_token2] = ACTIONS(837), + [aux_sym_val_number_token3] = ACTIONS(837), + [aux_sym_val_number_token4] = ACTIONS(837), + [aux_sym_val_number_token5] = ACTIONS(837), + [anon_sym_inf] = ACTIONS(837), + [anon_sym_DASHinf] = ACTIONS(837), + [anon_sym_NaN] = ACTIONS(837), + [anon_sym_0b] = ACTIONS(837), + [anon_sym_0o] = ACTIONS(837), + [anon_sym_0x] = ACTIONS(837), + [sym_val_date] = ACTIONS(837), + [anon_sym_DQUOTE] = ACTIONS(837), + [sym__str_single_quotes] = ACTIONS(837), + [sym__str_back_ticks] = ACTIONS(837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(837), + [anon_sym_err_GT] = ACTIONS(837), + [anon_sym_out_GT] = ACTIONS(837), + [anon_sym_e_GT] = ACTIONS(837), + [anon_sym_o_GT] = ACTIONS(837), + [anon_sym_err_PLUSout_GT] = ACTIONS(837), + [anon_sym_out_PLUSerr_GT] = ACTIONS(837), + [anon_sym_o_PLUSe_GT] = ACTIONS(837), + [anon_sym_e_PLUSo_GT] = ACTIONS(837), + [sym_short_flag] = ACTIONS(837), + [aux_sym_unquoted_token1] = ACTIONS(837), + [anon_sym_POUND] = ACTIONS(3), + }, + [329] = { + [sym_comment] = STATE(329), + [anon_sym_SEMI] = ACTIONS(845), + [anon_sym_LF] = ACTIONS(847), + [anon_sym_LBRACK] = ACTIONS(845), + [anon_sym_LPAREN] = ACTIONS(845), + [anon_sym_RPAREN] = ACTIONS(845), + [anon_sym_PIPE] = ACTIONS(845), + [anon_sym_DOLLAR] = ACTIONS(845), + [anon_sym_GT] = ACTIONS(845), + [anon_sym_DASH_DASH] = ACTIONS(845), + [anon_sym_DASH] = ACTIONS(845), + [anon_sym_in] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(845), + [anon_sym_RBRACE] = ACTIONS(845), + [anon_sym_STAR] = ACTIONS(845), + [anon_sym_STAR_STAR] = ACTIONS(845), + [anon_sym_PLUS_PLUS] = ACTIONS(845), + [anon_sym_SLASH] = ACTIONS(845), + [anon_sym_mod] = ACTIONS(845), + [anon_sym_SLASH_SLASH] = ACTIONS(845), + [anon_sym_PLUS] = ACTIONS(845), + [anon_sym_bit_DASHshl] = ACTIONS(845), + [anon_sym_bit_DASHshr] = ACTIONS(845), + [anon_sym_EQ_EQ] = ACTIONS(845), + [anon_sym_BANG_EQ] = ACTIONS(845), + [anon_sym_LT2] = ACTIONS(845), + [anon_sym_LT_EQ] = ACTIONS(845), + [anon_sym_GT_EQ] = ACTIONS(845), + [anon_sym_not_DASHin] = ACTIONS(845), + [anon_sym_starts_DASHwith] = ACTIONS(845), + [anon_sym_ends_DASHwith] = ACTIONS(845), + [anon_sym_EQ_TILDE] = ACTIONS(845), + [anon_sym_BANG_TILDE] = ACTIONS(845), + [anon_sym_bit_DASHand] = ACTIONS(845), + [anon_sym_bit_DASHxor] = ACTIONS(845), + [anon_sym_bit_DASHor] = ACTIONS(845), + [anon_sym_and] = ACTIONS(845), + [anon_sym_xor] = ACTIONS(845), + [anon_sym_or] = ACTIONS(845), + [anon_sym_DOT_DOT_LT] = ACTIONS(845), + [anon_sym_DOT_DOT] = ACTIONS(845), + [anon_sym_DOT_DOT_EQ] = ACTIONS(845), + [sym_val_nothing] = ACTIONS(845), + [anon_sym_true] = ACTIONS(845), + [anon_sym_false] = ACTIONS(845), + [aux_sym_val_number_token1] = ACTIONS(845), + [aux_sym_val_number_token2] = ACTIONS(845), + [aux_sym_val_number_token3] = ACTIONS(845), + [aux_sym_val_number_token4] = ACTIONS(845), + [aux_sym_val_number_token5] = ACTIONS(845), + [anon_sym_inf] = ACTIONS(845), + [anon_sym_DASHinf] = ACTIONS(845), + [anon_sym_NaN] = ACTIONS(845), + [anon_sym_0b] = ACTIONS(845), + [anon_sym_0o] = ACTIONS(845), + [anon_sym_0x] = ACTIONS(845), + [sym_val_date] = ACTIONS(845), + [anon_sym_DQUOTE] = ACTIONS(845), + [sym__str_single_quotes] = ACTIONS(845), + [sym__str_back_ticks] = ACTIONS(845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(845), + [anon_sym_err_GT] = ACTIONS(845), + [anon_sym_out_GT] = ACTIONS(845), + [anon_sym_e_GT] = ACTIONS(845), + [anon_sym_o_GT] = ACTIONS(845), + [anon_sym_err_PLUSout_GT] = ACTIONS(845), + [anon_sym_out_PLUSerr_GT] = ACTIONS(845), + [anon_sym_o_PLUSe_GT] = ACTIONS(845), + [anon_sym_e_PLUSo_GT] = ACTIONS(845), + [sym_short_flag] = ACTIONS(845), + [aux_sym_unquoted_token1] = ACTIONS(845), + [anon_sym_POUND] = ACTIONS(3), + }, + [330] = { + [sym_comment] = STATE(330), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78100,83 +74802,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(1217), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [331] = { + [sym_comment] = STATE(331), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [377] = { - [sym_comment] = STATE(377), + [332] = { + [sym_comment] = STATE(332), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78250,83 +74952,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [378] = { - [sym_comment] = STATE(378), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(1215), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [333] = { + [sym_comment] = STATE(333), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(801), + [anon_sym_SLASH_SLASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [379] = { - [sym_comment] = STATE(379), + [334] = { + [sym_comment] = STATE(334), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78400,83 +75102,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [380] = { - [sym_comment] = STATE(380), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(1213), - [anon_sym_BANG_TILDE] = ACTIONS(1213), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [381] = { - [sym_comment] = STATE(381), + [336] = { + [sym_comment] = STATE(336), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78550,83 +75252,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [337] = { + [sym_comment] = STATE(337), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [383] = { - [sym_comment] = STATE(383), + [338] = { + [sym_comment] = STATE(338), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78700,83 +75402,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [339] = { + [sym_comment] = STATE(339), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [385] = { - [sym_comment] = STATE(385), + [340] = { + [sym_comment] = STATE(340), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -78787,146 +75489,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(829), [anon_sym_DASH_DASH] = ACTIONS(829), [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), - }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [387] = { - [sym_comment] = STATE(387), + [341] = { + [sym__command_name] = STATE(669), + [sym_scope_pattern] = STATE(697), + [sym_wild_card] = STATE(660), + [sym_command_list] = STATE(656), + [sym_val_string] = STATE(536), + [sym__str_double_quotes] = STATE(526), + [sym_comment] = STATE(341), + [ts_builtin_sym_end] = ACTIONS(1015), + [anon_sym_export] = ACTIONS(1013), + [anon_sym_alias] = ACTIONS(1013), + [anon_sym_let] = ACTIONS(1013), + [anon_sym_let_DASHenv] = ACTIONS(1013), + [anon_sym_mut] = ACTIONS(1013), + [anon_sym_const] = ACTIONS(1013), + [anon_sym_SEMI] = ACTIONS(1013), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1015), + [anon_sym_def] = ACTIONS(1013), + [anon_sym_def_DASHenv] = ACTIONS(1013), + [anon_sym_export_DASHenv] = ACTIONS(1013), + [anon_sym_extern] = ACTIONS(1013), + [anon_sym_module] = ACTIONS(1013), + [anon_sym_use] = ACTIONS(1013), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(1013), + [anon_sym_error] = ACTIONS(1013), + [anon_sym_DASH] = ACTIONS(1013), + [anon_sym_break] = ACTIONS(1013), + [anon_sym_continue] = ACTIONS(1013), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_loop] = ACTIONS(1013), + [anon_sym_while] = ACTIONS(1013), + [anon_sym_do] = ACTIONS(1013), + [anon_sym_if] = ACTIONS(1013), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_LBRACE] = ACTIONS(1013), + [anon_sym_try] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1013), + [anon_sym_source] = ACTIONS(1013), + [anon_sym_source_DASHenv] = ACTIONS(1013), + [anon_sym_register] = ACTIONS(1013), + [anon_sym_hide] = ACTIONS(1013), + [anon_sym_hide_DASHenv] = ACTIONS(1013), + [anon_sym_overlay] = ACTIONS(1013), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1013), + [anon_sym_not] = ACTIONS(1013), + [anon_sym_DOT_DOT_LT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), + [sym_val_nothing] = ACTIONS(1013), + [anon_sym_true] = ACTIONS(1013), + [anon_sym_false] = ACTIONS(1013), + [aux_sym_val_number_token1] = ACTIONS(1013), + [aux_sym_val_number_token2] = ACTIONS(1013), + [aux_sym_val_number_token3] = ACTIONS(1013), + [aux_sym_val_number_token4] = ACTIONS(1013), + [aux_sym_val_number_token5] = ACTIONS(1013), + [anon_sym_inf] = ACTIONS(1013), + [anon_sym_DASHinf] = ACTIONS(1013), + [anon_sym_NaN] = ACTIONS(1013), + [anon_sym_0b] = ACTIONS(1013), + [anon_sym_0o] = ACTIONS(1013), + [anon_sym_0x] = ACTIONS(1013), + [sym_val_date] = ACTIONS(1013), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), + [anon_sym_CARET] = ACTIONS(1013), + [anon_sym_POUND] = ACTIONS(3), + }, + [342] = { + [sym_comment] = STATE(342), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -79000,158 +75702,683 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [388] = { - [sym__flag] = STATE(467), - [sym_long_flag] = STATE(474), - [sym_comment] = STATE(388), - [aux_sym_overlay_use_repeat1] = STATE(388), - [anon_sym_export] = ACTIONS(1245), - [anon_sym_alias] = ACTIONS(1245), - [anon_sym_let] = ACTIONS(1245), - [anon_sym_let_DASHenv] = ACTIONS(1245), - [anon_sym_mut] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [sym_cmd_identifier] = ACTIONS(1245), - [anon_sym_LF] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1245), - [anon_sym_def_DASHenv] = ACTIONS(1245), - [anon_sym_export_DASHenv] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym_module] = ACTIONS(1245), - [anon_sym_use] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_error] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1249), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_loop] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_match] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_source] = ACTIONS(1245), - [anon_sym_source_DASHenv] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_hide] = ACTIONS(1245), - [anon_sym_hide_DASHenv] = ACTIONS(1245), - [anon_sym_overlay] = ACTIONS(1245), - [anon_sym_as] = ACTIONS(1245), - [anon_sym_where] = ACTIONS(1245), - [anon_sym_not] = ACTIONS(1245), - [anon_sym_DOT_DOT_LT] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [sym_val_nothing] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1245), - [anon_sym_false] = ACTIONS(1245), - [aux_sym_val_number_token1] = ACTIONS(1245), - [aux_sym_val_number_token2] = ACTIONS(1245), - [aux_sym_val_number_token3] = ACTIONS(1245), - [aux_sym_val_number_token4] = ACTIONS(1245), - [aux_sym_val_number_token5] = ACTIONS(1245), - [anon_sym_inf] = ACTIONS(1245), - [anon_sym_DASHinf] = ACTIONS(1245), - [anon_sym_NaN] = ACTIONS(1245), - [anon_sym_0b] = ACTIONS(1245), - [anon_sym_0o] = ACTIONS(1245), - [anon_sym_0x] = ACTIONS(1245), - [sym_val_date] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym__str_single_quotes] = ACTIONS(1245), - [sym__str_back_ticks] = ACTIONS(1245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1245), - [sym_short_flag] = ACTIONS(1252), + [343] = { + [sym_comment] = STATE(343), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(1205), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(1205), - [anon_sym_starts_DASHwith] = ACTIONS(1205), - [anon_sym_ends_DASHwith] = ACTIONS(1205), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [344] = { + [sym_comment] = STATE(344), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(865), + [anon_sym_out_GT] = ACTIONS(865), + [anon_sym_e_GT] = ACTIONS(865), + [anon_sym_o_GT] = ACTIONS(865), + [anon_sym_err_PLUSout_GT] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(865), + [anon_sym_o_PLUSe_GT] = ACTIONS(865), + [anon_sym_e_PLUSo_GT] = ACTIONS(865), + [sym_short_flag] = ACTIONS(865), + [aux_sym_unquoted_token1] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(3), }, - [390] = { - [sym_comment] = STATE(390), + [345] = { + [sym_comment] = STATE(345), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DASH_DASH] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_in] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_RBRACE] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_mod] = ACTIONS(873), + [anon_sym_SLASH_SLASH] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_bit_DASHshl] = ACTIONS(873), + [anon_sym_bit_DASHshr] = ACTIONS(873), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(873), + [anon_sym_BANG_TILDE] = ACTIONS(873), + [anon_sym_bit_DASHand] = ACTIONS(873), + [anon_sym_bit_DASHxor] = ACTIONS(873), + [anon_sym_bit_DASHor] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_xor] = ACTIONS(873), + [anon_sym_or] = ACTIONS(873), + [anon_sym_DOT_DOT_LT] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [sym_val_nothing] = ACTIONS(873), + [anon_sym_true] = ACTIONS(873), + [anon_sym_false] = ACTIONS(873), + [aux_sym_val_number_token1] = ACTIONS(873), + [aux_sym_val_number_token2] = ACTIONS(873), + [aux_sym_val_number_token3] = ACTIONS(873), + [aux_sym_val_number_token4] = ACTIONS(873), + [aux_sym_val_number_token5] = ACTIONS(873), + [anon_sym_inf] = ACTIONS(873), + [anon_sym_DASHinf] = ACTIONS(873), + [anon_sym_NaN] = ACTIONS(873), + [anon_sym_0b] = ACTIONS(873), + [anon_sym_0o] = ACTIONS(873), + [anon_sym_0x] = ACTIONS(873), + [sym_val_date] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym__str_single_quotes] = ACTIONS(873), + [sym__str_back_ticks] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), + [anon_sym_err_GT] = ACTIONS(873), + [anon_sym_out_GT] = ACTIONS(873), + [anon_sym_e_GT] = ACTIONS(873), + [anon_sym_o_GT] = ACTIONS(873), + [anon_sym_err_PLUSout_GT] = ACTIONS(873), + [anon_sym_out_PLUSerr_GT] = ACTIONS(873), + [anon_sym_o_PLUSe_GT] = ACTIONS(873), + [anon_sym_e_PLUSo_GT] = ACTIONS(873), + [sym_short_flag] = ACTIONS(873), + [aux_sym_unquoted_token1] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(3), + }, + [346] = { + [sym_comment] = STATE(346), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_RPAREN] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_in] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_RBRACE] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_SLASH_SLASH] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_bit_DASHshl] = ACTIONS(869), + [anon_sym_bit_DASHshr] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_not_DASHin] = ACTIONS(869), + [anon_sym_starts_DASHwith] = ACTIONS(869), + [anon_sym_ends_DASHwith] = ACTIONS(869), + [anon_sym_EQ_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_bit_DASHand] = ACTIONS(869), + [anon_sym_bit_DASHxor] = ACTIONS(869), + [anon_sym_bit_DASHor] = ACTIONS(869), + [anon_sym_and] = ACTIONS(869), + [anon_sym_xor] = ACTIONS(869), + [anon_sym_or] = ACTIONS(869), + [anon_sym_DOT_DOT_LT] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [sym_val_nothing] = ACTIONS(869), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), + [aux_sym_val_number_token1] = ACTIONS(869), + [aux_sym_val_number_token2] = ACTIONS(869), + [aux_sym_val_number_token3] = ACTIONS(869), + [aux_sym_val_number_token4] = ACTIONS(869), + [aux_sym_val_number_token5] = ACTIONS(869), + [anon_sym_inf] = ACTIONS(869), + [anon_sym_DASHinf] = ACTIONS(869), + [anon_sym_NaN] = ACTIONS(869), + [anon_sym_0b] = ACTIONS(869), + [anon_sym_0o] = ACTIONS(869), + [anon_sym_0x] = ACTIONS(869), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym__str_single_quotes] = ACTIONS(869), + [sym__str_back_ticks] = ACTIONS(869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), + [anon_sym_err_GT] = ACTIONS(869), + [anon_sym_out_GT] = ACTIONS(869), + [anon_sym_e_GT] = ACTIONS(869), + [anon_sym_o_GT] = ACTIONS(869), + [anon_sym_err_PLUSout_GT] = ACTIONS(869), + [anon_sym_out_PLUSerr_GT] = ACTIONS(869), + [anon_sym_o_PLUSe_GT] = ACTIONS(869), + [anon_sym_e_PLUSo_GT] = ACTIONS(869), + [sym_short_flag] = ACTIONS(869), + [aux_sym_unquoted_token1] = ACTIONS(869), + [anon_sym_POUND] = ACTIONS(3), + }, + [347] = { + [sym__ctrl_expression] = STATE(3368), + [sym_ctrl_do] = STATE(3038), + [sym_ctrl_if] = STATE(3038), + [sym_ctrl_match] = STATE(3038), + [sym_ctrl_try] = STATE(3038), + [sym_ctrl_return] = STATE(3038), + [sym_pipe_element] = STATE(1582), + [sym_where_command] = STATE(3371), + [sym__expression] = STATE(2449), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_command] = STATE(3371), + [sym_comment] = STATE(347), + [aux_sym_pipeline_repeat1] = STATE(347), + [sym_cmd_identifier] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_try] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_where] = ACTIONS(1082), + [anon_sym_not] = ACTIONS(1085), + [anon_sym_DOT_DOT_LT] = ACTIONS(1088), + [anon_sym_DOT_DOT] = ACTIONS(1091), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1088), + [sym_val_nothing] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym_val_number_token1] = ACTIONS(1100), + [aux_sym_val_number_token2] = ACTIONS(1100), + [aux_sym_val_number_token3] = ACTIONS(1103), + [aux_sym_val_number_token4] = ACTIONS(1103), + [aux_sym_val_number_token5] = ACTIONS(1103), + [anon_sym_inf] = ACTIONS(1100), + [anon_sym_DASHinf] = ACTIONS(1103), + [anon_sym_NaN] = ACTIONS(1100), + [anon_sym_0b] = ACTIONS(1106), + [anon_sym_0o] = ACTIONS(1106), + [anon_sym_0x] = ACTIONS(1106), + [sym_val_date] = ACTIONS(1109), + [anon_sym_DQUOTE] = ACTIONS(1112), + [sym__str_single_quotes] = ACTIONS(1115), + [sym__str_back_ticks] = ACTIONS(1115), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1121), + [anon_sym_CARET] = ACTIONS(1124), + [anon_sym_POUND] = ACTIONS(145), + }, + [348] = { + [sym__flag] = STATE(468), + [sym_long_flag] = STATE(471), + [sym_comment] = STATE(348), + [aux_sym_overlay_use_repeat1] = STATE(389), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_alias] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_let_DASHenv] = ACTIONS(1127), + [anon_sym_mut] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [sym_cmd_identifier] = ACTIONS(1127), + [anon_sym_LF] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1127), + [anon_sym_def_DASHenv] = ACTIONS(1127), + [anon_sym_export_DASHenv] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_use] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_RPAREN] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1127), + [anon_sym_error] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_loop] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_match] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_source] = ACTIONS(1127), + [anon_sym_source_DASHenv] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_hide] = ACTIONS(1127), + [anon_sym_hide_DASHenv] = ACTIONS(1127), + [anon_sym_overlay] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1133), + [anon_sym_where] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_DOT_DOT_LT] = ACTIONS(1127), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1127), + [sym_val_nothing] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [aux_sym_val_number_token1] = ACTIONS(1127), + [aux_sym_val_number_token2] = ACTIONS(1127), + [aux_sym_val_number_token3] = ACTIONS(1127), + [aux_sym_val_number_token4] = ACTIONS(1127), + [aux_sym_val_number_token5] = ACTIONS(1127), + [anon_sym_inf] = ACTIONS(1127), + [anon_sym_DASHinf] = ACTIONS(1127), + [anon_sym_NaN] = ACTIONS(1127), + [anon_sym_0b] = ACTIONS(1127), + [anon_sym_0o] = ACTIONS(1127), + [anon_sym_0x] = ACTIONS(1127), + [sym_val_date] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym__str_single_quotes] = ACTIONS(1127), + [sym__str_back_ticks] = ACTIONS(1127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [sym_short_flag] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(3), + }, + [349] = { + [sym_comment] = STATE(349), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1141), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [350] = { + [sym__flag] = STATE(468), + [sym_long_flag] = STATE(471), + [sym_comment] = STATE(350), + [aux_sym_overlay_use_repeat1] = STATE(361), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_alias] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(1145), + [anon_sym_let_DASHenv] = ACTIONS(1145), + [anon_sym_mut] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [sym_cmd_identifier] = ACTIONS(1145), + [anon_sym_LF] = ACTIONS(1147), + [anon_sym_def] = ACTIONS(1145), + [anon_sym_def_DASHenv] = ACTIONS(1145), + [anon_sym_export_DASHenv] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym_module] = ACTIONS(1145), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_RPAREN] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_error] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_loop] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_source] = ACTIONS(1145), + [anon_sym_source_DASHenv] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_hide] = ACTIONS(1145), + [anon_sym_hide_DASHenv] = ACTIONS(1145), + [anon_sym_overlay] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1149), + [anon_sym_where] = ACTIONS(1145), + [anon_sym_not] = ACTIONS(1145), + [anon_sym_DOT_DOT_LT] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [sym_val_nothing] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [aux_sym_val_number_token1] = ACTIONS(1145), + [aux_sym_val_number_token2] = ACTIONS(1145), + [aux_sym_val_number_token3] = ACTIONS(1145), + [aux_sym_val_number_token4] = ACTIONS(1145), + [aux_sym_val_number_token5] = ACTIONS(1145), + [anon_sym_inf] = ACTIONS(1145), + [anon_sym_DASHinf] = ACTIONS(1145), + [anon_sym_NaN] = ACTIONS(1145), + [anon_sym_0b] = ACTIONS(1145), + [anon_sym_0o] = ACTIONS(1145), + [anon_sym_0x] = ACTIONS(1145), + [sym_val_date] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1145), + [sym__str_back_ticks] = ACTIONS(1145), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [sym_short_flag] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(3), + }, + [351] = { + [sym_comment] = STATE(351), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_RBRACE] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_DOT_DOT_LT] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [sym_val_nothing] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym_val_number_token1] = ACTIONS(877), + [aux_sym_val_number_token2] = ACTIONS(877), + [aux_sym_val_number_token3] = ACTIONS(877), + [aux_sym_val_number_token4] = ACTIONS(877), + [aux_sym_val_number_token5] = ACTIONS(877), + [anon_sym_inf] = ACTIONS(877), + [anon_sym_DASHinf] = ACTIONS(877), + [anon_sym_NaN] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [sym_short_flag] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), + }, + [352] = { + [sym_comment] = STATE(352), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -79225,83 +76452,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [353] = { + [sym_comment] = STATE(353), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_RPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_in] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_RBRACE] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_bit_DASHshl] = ACTIONS(861), + [anon_sym_bit_DASHshr] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT2] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_not_DASHin] = ACTIONS(861), + [anon_sym_starts_DASHwith] = ACTIONS(861), + [anon_sym_ends_DASHwith] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_bit_DASHand] = ACTIONS(861), + [anon_sym_bit_DASHxor] = ACTIONS(861), + [anon_sym_bit_DASHor] = ACTIONS(861), + [anon_sym_and] = ACTIONS(861), + [anon_sym_xor] = ACTIONS(861), + [anon_sym_or] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_err_GT] = ACTIONS(861), + [anon_sym_out_GT] = ACTIONS(861), + [anon_sym_e_GT] = ACTIONS(861), + [anon_sym_o_GT] = ACTIONS(861), + [anon_sym_err_PLUSout_GT] = ACTIONS(861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(861), + [anon_sym_o_PLUSe_GT] = ACTIONS(861), + [anon_sym_e_PLUSo_GT] = ACTIONS(861), + [sym_short_flag] = ACTIONS(861), + [aux_sym_unquoted_token1] = ACTIONS(861), [anon_sym_POUND] = ACTIONS(3), }, - [392] = { - [sym_comment] = STATE(392), + [354] = { + [sym_comment] = STATE(354), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_RBRACE] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_mod] = ACTIONS(881), + [anon_sym_SLASH_SLASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_bit_DASHshl] = ACTIONS(881), + [anon_sym_bit_DASHshr] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_not_DASHin] = ACTIONS(881), + [anon_sym_starts_DASHwith] = ACTIONS(881), + [anon_sym_ends_DASHwith] = ACTIONS(881), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(881), + [anon_sym_bit_DASHxor] = ACTIONS(881), + [anon_sym_bit_DASHor] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_DOT_DOT_LT] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [sym_val_nothing] = ACTIONS(881), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [aux_sym_val_number_token1] = ACTIONS(881), + [aux_sym_val_number_token2] = ACTIONS(881), + [aux_sym_val_number_token3] = ACTIONS(881), + [aux_sym_val_number_token4] = ACTIONS(881), + [aux_sym_val_number_token5] = ACTIONS(881), + [anon_sym_inf] = ACTIONS(881), + [anon_sym_DASHinf] = ACTIONS(881), + [anon_sym_NaN] = ACTIONS(881), + [anon_sym_0b] = ACTIONS(881), + [anon_sym_0o] = ACTIONS(881), + [anon_sym_0x] = ACTIONS(881), + [sym_val_date] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [sym__str_single_quotes] = ACTIONS(881), + [sym__str_back_ticks] = ACTIONS(881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(881), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [sym_short_flag] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(3), + }, + [355] = { + [sym_comment] = STATE(355), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [356] = { + [sym__flag] = STATE(468), + [sym_long_flag] = STATE(471), + [sym_comment] = STATE(356), + [aux_sym_overlay_use_repeat1] = STATE(348), + [anon_sym_export] = ACTIONS(1151), + [anon_sym_alias] = ACTIONS(1151), + [anon_sym_let] = ACTIONS(1151), + [anon_sym_let_DASHenv] = ACTIONS(1151), + [anon_sym_mut] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1151), + [sym_cmd_identifier] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(1153), + [anon_sym_def] = ACTIONS(1151), + [anon_sym_def_DASHenv] = ACTIONS(1151), + [anon_sym_export_DASHenv] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_module] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_RPAREN] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1151), + [anon_sym_error] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_loop] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_match] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_source] = ACTIONS(1151), + [anon_sym_source_DASHenv] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_hide] = ACTIONS(1151), + [anon_sym_hide_DASHenv] = ACTIONS(1151), + [anon_sym_overlay] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1155), + [anon_sym_where] = ACTIONS(1151), + [anon_sym_not] = ACTIONS(1151), + [anon_sym_DOT_DOT_LT] = ACTIONS(1151), + [anon_sym_DOT_DOT] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1151), + [sym_val_nothing] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(1151), + [anon_sym_false] = ACTIONS(1151), + [aux_sym_val_number_token1] = ACTIONS(1151), + [aux_sym_val_number_token2] = ACTIONS(1151), + [aux_sym_val_number_token3] = ACTIONS(1151), + [aux_sym_val_number_token4] = ACTIONS(1151), + [aux_sym_val_number_token5] = ACTIONS(1151), + [anon_sym_inf] = ACTIONS(1151), + [anon_sym_DASHinf] = ACTIONS(1151), + [anon_sym_NaN] = ACTIONS(1151), + [anon_sym_0b] = ACTIONS(1151), + [anon_sym_0o] = ACTIONS(1151), + [anon_sym_0x] = ACTIONS(1151), + [sym_val_date] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym__str_single_quotes] = ACTIONS(1151), + [sym__str_back_ticks] = ACTIONS(1151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1151), + [sym_short_flag] = ACTIONS(1135), + [anon_sym_POUND] = ACTIONS(3), + }, + [357] = { + [sym_comment] = STATE(357), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_err_GT] = ACTIONS(833), + [anon_sym_out_GT] = ACTIONS(833), + [anon_sym_e_GT] = ACTIONS(833), + [anon_sym_o_GT] = ACTIONS(833), + [anon_sym_err_PLUSout_GT] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(833), + [anon_sym_o_PLUSe_GT] = ACTIONS(833), + [anon_sym_e_PLUSo_GT] = ACTIONS(833), + [sym_short_flag] = ACTIONS(833), + [aux_sym_unquoted_token1] = ACTIONS(833), + [anon_sym_POUND] = ACTIONS(3), + }, + [358] = { + [sym_comment] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(799), + [anon_sym_SEMI] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_PIPE] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_GT] = ACTIONS(797), + [anon_sym_DASH_DASH] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_in] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_STAR] = ACTIONS(797), + [anon_sym_STAR_STAR] = ACTIONS(797), + [anon_sym_PLUS_PLUS] = ACTIONS(797), + [anon_sym_SLASH] = ACTIONS(797), + [anon_sym_mod] = ACTIONS(797), + [anon_sym_SLASH_SLASH] = ACTIONS(797), + [anon_sym_PLUS] = ACTIONS(797), + [anon_sym_bit_DASHshl] = ACTIONS(797), + [anon_sym_bit_DASHshr] = ACTIONS(797), + [anon_sym_EQ_EQ] = ACTIONS(797), + [anon_sym_BANG_EQ] = ACTIONS(797), + [anon_sym_LT2] = ACTIONS(797), + [anon_sym_LT_EQ] = ACTIONS(797), + [anon_sym_GT_EQ] = ACTIONS(797), + [anon_sym_not_DASHin] = ACTIONS(797), + [anon_sym_starts_DASHwith] = ACTIONS(797), + [anon_sym_ends_DASHwith] = ACTIONS(797), + [anon_sym_EQ_TILDE] = ACTIONS(797), + [anon_sym_BANG_TILDE] = ACTIONS(797), + [anon_sym_bit_DASHand] = ACTIONS(797), + [anon_sym_bit_DASHxor] = ACTIONS(797), + [anon_sym_bit_DASHor] = ACTIONS(797), + [anon_sym_and] = ACTIONS(797), + [anon_sym_xor] = ACTIONS(797), + [anon_sym_or] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_err_GT] = ACTIONS(797), + [anon_sym_out_GT] = ACTIONS(797), + [anon_sym_e_GT] = ACTIONS(797), + [anon_sym_o_GT] = ACTIONS(797), + [anon_sym_err_PLUSout_GT] = ACTIONS(797), + [anon_sym_out_PLUSerr_GT] = ACTIONS(797), + [anon_sym_o_PLUSe_GT] = ACTIONS(797), + [anon_sym_e_PLUSo_GT] = ACTIONS(797), + [sym_short_flag] = ACTIONS(797), + [aux_sym_unquoted_token1] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(3), + }, + [359] = { + [sym_comment] = STATE(359), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_RPAREN] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_RBRACE] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_SLASH_SLASH] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_bit_DASHshl] = ACTIONS(889), + [anon_sym_bit_DASHshr] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT2] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_not_DASHin] = ACTIONS(889), + [anon_sym_starts_DASHwith] = ACTIONS(889), + [anon_sym_ends_DASHwith] = ACTIONS(889), + [anon_sym_EQ_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_bit_DASHand] = ACTIONS(889), + [anon_sym_bit_DASHxor] = ACTIONS(889), + [anon_sym_bit_DASHor] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_DOT_DOT_LT] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [sym_val_nothing] = ACTIONS(889), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), + [aux_sym_val_number_token1] = ACTIONS(889), + [aux_sym_val_number_token2] = ACTIONS(889), + [aux_sym_val_number_token3] = ACTIONS(889), + [aux_sym_val_number_token4] = ACTIONS(889), + [aux_sym_val_number_token5] = ACTIONS(889), + [anon_sym_inf] = ACTIONS(889), + [anon_sym_DASHinf] = ACTIONS(889), + [anon_sym_NaN] = ACTIONS(889), + [anon_sym_0b] = ACTIONS(889), + [anon_sym_0o] = ACTIONS(889), + [anon_sym_0x] = ACTIONS(889), + [sym_val_date] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym__str_single_quotes] = ACTIONS(889), + [sym__str_back_ticks] = ACTIONS(889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), + [anon_sym_err_GT] = ACTIONS(889), + [anon_sym_out_GT] = ACTIONS(889), + [anon_sym_e_GT] = ACTIONS(889), + [anon_sym_o_GT] = ACTIONS(889), + [anon_sym_err_PLUSout_GT] = ACTIONS(889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(889), + [anon_sym_o_PLUSe_GT] = ACTIONS(889), + [anon_sym_e_PLUSo_GT] = ACTIONS(889), + [sym_short_flag] = ACTIONS(889), + [aux_sym_unquoted_token1] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(3), + }, + [360] = { + [sym_comment] = STATE(360), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), @@ -79375,83 +77052,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_RPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1203), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_RBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1207), - [anon_sym_STAR_STAR] = ACTIONS(1209), - [anon_sym_PLUS_PLUS] = ACTIONS(1209), - [anon_sym_SLASH] = ACTIONS(1207), - [anon_sym_mod] = ACTIONS(1207), - [anon_sym_SLASH_SLASH] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1203), - [anon_sym_bit_DASHshl] = ACTIONS(1211), - [anon_sym_bit_DASHshr] = ACTIONS(1211), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1201), - [anon_sym_LT2] = ACTIONS(1201), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1201), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [361] = { + [sym__flag] = STATE(468), + [sym_long_flag] = STATE(471), + [sym_comment] = STATE(361), + [aux_sym_overlay_use_repeat1] = STATE(389), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_alias] = ACTIONS(1157), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_let_DASHenv] = ACTIONS(1157), + [anon_sym_mut] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [sym_cmd_identifier] = ACTIONS(1157), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1157), + [anon_sym_def_DASHenv] = ACTIONS(1157), + [anon_sym_export_DASHenv] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_use] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_RPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_error] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1131), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_loop] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_match] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_source] = ACTIONS(1157), + [anon_sym_source_DASHenv] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_hide] = ACTIONS(1157), + [anon_sym_hide_DASHenv] = ACTIONS(1157), + [anon_sym_overlay] = ACTIONS(1157), + [anon_sym_as] = ACTIONS(1161), + [anon_sym_where] = ACTIONS(1157), + [anon_sym_not] = ACTIONS(1157), + [anon_sym_DOT_DOT_LT] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [sym_val_nothing] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [aux_sym_val_number_token1] = ACTIONS(1157), + [aux_sym_val_number_token2] = ACTIONS(1157), + [aux_sym_val_number_token3] = ACTIONS(1157), + [aux_sym_val_number_token4] = ACTIONS(1157), + [aux_sym_val_number_token5] = ACTIONS(1157), + [anon_sym_inf] = ACTIONS(1157), + [anon_sym_DASHinf] = ACTIONS(1157), + [anon_sym_NaN] = ACTIONS(1157), + [anon_sym_0b] = ACTIONS(1157), + [anon_sym_0o] = ACTIONS(1157), + [anon_sym_0x] = ACTIONS(1157), + [sym_val_date] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1157), + [anon_sym_CARET] = ACTIONS(1157), + [sym_short_flag] = ACTIONS(1135), [anon_sym_POUND] = ACTIONS(3), }, - [394] = { - [sym_comment] = STATE(394), + [362] = { + [sym_comment] = STATE(362), [anon_sym_SEMI] = ACTIONS(857), [anon_sym_LF] = ACTIONS(859), [anon_sym_LBRACK] = ACTIONS(857), @@ -79525,83 +77202,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(3), }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), + [363] = { + [sym_comment] = STATE(363), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_LF] = ACTIONS(855), + [anon_sym_LBRACK] = ACTIONS(853), + [anon_sym_LPAREN] = ACTIONS(853), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(853), + [anon_sym_DOLLAR] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(853), + [anon_sym_DASH_DASH] = ACTIONS(853), + [anon_sym_DASH] = ACTIONS(853), + [anon_sym_in] = ACTIONS(853), + [anon_sym_LBRACE] = ACTIONS(853), + [anon_sym_RBRACE] = ACTIONS(853), + [anon_sym_STAR] = ACTIONS(853), + [anon_sym_STAR_STAR] = ACTIONS(853), + [anon_sym_PLUS_PLUS] = ACTIONS(853), + [anon_sym_SLASH] = ACTIONS(853), + [anon_sym_mod] = ACTIONS(853), + [anon_sym_SLASH_SLASH] = ACTIONS(853), + [anon_sym_PLUS] = ACTIONS(853), + [anon_sym_bit_DASHshl] = ACTIONS(853), + [anon_sym_bit_DASHshr] = ACTIONS(853), + [anon_sym_EQ_EQ] = ACTIONS(853), + [anon_sym_BANG_EQ] = ACTIONS(853), + [anon_sym_LT2] = ACTIONS(853), + [anon_sym_LT_EQ] = ACTIONS(853), + [anon_sym_GT_EQ] = ACTIONS(853), + [anon_sym_not_DASHin] = ACTIONS(853), + [anon_sym_starts_DASHwith] = ACTIONS(853), + [anon_sym_ends_DASHwith] = ACTIONS(853), + [anon_sym_EQ_TILDE] = ACTIONS(853), + [anon_sym_BANG_TILDE] = ACTIONS(853), + [anon_sym_bit_DASHand] = ACTIONS(853), + [anon_sym_bit_DASHxor] = ACTIONS(853), + [anon_sym_bit_DASHor] = ACTIONS(853), + [anon_sym_and] = ACTIONS(853), + [anon_sym_xor] = ACTIONS(853), + [anon_sym_or] = ACTIONS(853), + [anon_sym_DOT_DOT_LT] = ACTIONS(853), + [anon_sym_DOT_DOT] = ACTIONS(853), + [anon_sym_DOT_DOT_EQ] = ACTIONS(853), + [sym_val_nothing] = ACTIONS(853), + [anon_sym_true] = ACTIONS(853), + [anon_sym_false] = ACTIONS(853), + [aux_sym_val_number_token1] = ACTIONS(853), + [aux_sym_val_number_token2] = ACTIONS(853), + [aux_sym_val_number_token3] = ACTIONS(853), + [aux_sym_val_number_token4] = ACTIONS(853), + [aux_sym_val_number_token5] = ACTIONS(853), + [anon_sym_inf] = ACTIONS(853), + [anon_sym_DASHinf] = ACTIONS(853), + [anon_sym_NaN] = ACTIONS(853), + [anon_sym_0b] = ACTIONS(853), + [anon_sym_0o] = ACTIONS(853), + [anon_sym_0x] = ACTIONS(853), + [sym_val_date] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(853), + [sym__str_single_quotes] = ACTIONS(853), + [sym__str_back_ticks] = ACTIONS(853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), + [anon_sym_err_GT] = ACTIONS(853), + [anon_sym_out_GT] = ACTIONS(853), + [anon_sym_e_GT] = ACTIONS(853), + [anon_sym_o_GT] = ACTIONS(853), + [anon_sym_err_PLUSout_GT] = ACTIONS(853), + [anon_sym_out_PLUSerr_GT] = ACTIONS(853), + [anon_sym_o_PLUSe_GT] = ACTIONS(853), + [anon_sym_e_PLUSo_GT] = ACTIONS(853), + [sym_short_flag] = ACTIONS(853), + [aux_sym_unquoted_token1] = ACTIONS(853), + [anon_sym_POUND] = ACTIONS(3), + }, + [364] = { + [sym_comment] = STATE(364), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), [anon_sym_DOT_DOT_LT] = ACTIONS(123), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_DOT_DOT_EQ] = ACTIONS(123), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [sym_short_flag] = ACTIONS(849), - [aux_sym_unquoted_token1] = ACTIONS(849), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [sym_short_flag] = ACTIONS(901), + [aux_sym_unquoted_token1] = ACTIONS(901), [anon_sym_POUND] = ACTIONS(3), }, - [396] = { - [sym_comment] = STATE(396), + [365] = { + [sym_comment] = STATE(365), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [sym_short_flag] = ACTIONS(901), + [aux_sym_unquoted_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [366] = { + [sym__command_name] = STATE(669), + [sym_scope_pattern] = STATE(667), + [sym_wild_card] = STATE(660), + [sym_command_list] = STATE(656), + [sym_val_string] = STATE(536), + [sym__str_double_quotes] = STATE(526), + [sym_comment] = STATE(366), + [ts_builtin_sym_end] = ACTIONS(993), + [anon_sym_export] = ACTIONS(989), + [anon_sym_alias] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_let_DASHenv] = ACTIONS(989), + [anon_sym_mut] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(989), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(993), + [anon_sym_def] = ACTIONS(989), + [anon_sym_def_DASHenv] = ACTIONS(989), + [anon_sym_export_DASHenv] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_error] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_do] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_source] = ACTIONS(989), + [anon_sym_source_DASHenv] = ACTIONS(989), + [anon_sym_register] = ACTIONS(989), + [anon_sym_hide] = ACTIONS(989), + [anon_sym_hide_DASHenv] = ACTIONS(989), + [anon_sym_overlay] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(989), + [anon_sym_not] = ACTIONS(989), + [anon_sym_DOT_DOT_LT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(989), + [sym_val_nothing] = ACTIONS(989), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [aux_sym_val_number_token1] = ACTIONS(989), + [aux_sym_val_number_token2] = ACTIONS(989), + [aux_sym_val_number_token3] = ACTIONS(989), + [aux_sym_val_number_token4] = ACTIONS(989), + [aux_sym_val_number_token5] = ACTIONS(989), + [anon_sym_inf] = ACTIONS(989), + [anon_sym_DASHinf] = ACTIONS(989), + [anon_sym_NaN] = ACTIONS(989), + [anon_sym_0b] = ACTIONS(989), + [anon_sym_0o] = ACTIONS(989), + [anon_sym_0x] = ACTIONS(989), + [sym_val_date] = ACTIONS(989), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_POUND] = ACTIONS(3), + }, + [367] = { + [sym_comment] = STATE(367), [anon_sym_SEMI] = ACTIONS(849), [anon_sym_LF] = ACTIONS(851), [anon_sym_LBRACK] = ACTIONS(849), @@ -79675,13 +77577,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(849), [anon_sym_POUND] = ACTIONS(3), }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(831), + [368] = { + [sym_comment] = STATE(368), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_bit_DASHshl] = ACTIONS(897), + [anon_sym_bit_DASHshr] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT2] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_not_DASHin] = ACTIONS(897), + [anon_sym_starts_DASHwith] = ACTIONS(897), + [anon_sym_ends_DASHwith] = ACTIONS(897), + [anon_sym_EQ_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(897), + [anon_sym_bit_DASHand] = ACTIONS(897), + [anon_sym_bit_DASHxor] = ACTIONS(897), + [anon_sym_bit_DASHor] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_DOT_DOT_LT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [sym_val_nothing] = ACTIONS(897), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [aux_sym_val_number_token1] = ACTIONS(897), + [aux_sym_val_number_token2] = ACTIONS(897), + [aux_sym_val_number_token3] = ACTIONS(897), + [aux_sym_val_number_token4] = ACTIONS(897), + [aux_sym_val_number_token5] = ACTIONS(897), + [anon_sym_inf] = ACTIONS(897), + [anon_sym_DASHinf] = ACTIONS(897), + [anon_sym_NaN] = ACTIONS(897), + [anon_sym_0b] = ACTIONS(897), + [anon_sym_0o] = ACTIONS(897), + [anon_sym_0x] = ACTIONS(897), + [sym_val_date] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__str_single_quotes] = ACTIONS(897), + [sym__str_back_ticks] = ACTIONS(897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(897), + [anon_sym_err_GT] = ACTIONS(897), + [anon_sym_out_GT] = ACTIONS(897), + [anon_sym_e_GT] = ACTIONS(897), + [anon_sym_o_GT] = ACTIONS(897), + [anon_sym_err_PLUSout_GT] = ACTIONS(897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(897), + [anon_sym_o_PLUSe_GT] = ACTIONS(897), + [anon_sym_e_PLUSo_GT] = ACTIONS(897), + [sym_short_flag] = ACTIONS(897), + [aux_sym_unquoted_token1] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(3), + }, + [369] = { + [sym_comment] = STATE(369), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_RPAREN] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_RBRACE] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_err_GT] = ACTIONS(833), + [anon_sym_out_GT] = ACTIONS(833), + [anon_sym_e_GT] = ACTIONS(833), + [anon_sym_o_GT] = ACTIONS(833), + [anon_sym_err_PLUSout_GT] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(833), + [anon_sym_o_PLUSe_GT] = ACTIONS(833), + [anon_sym_e_PLUSo_GT] = ACTIONS(833), + [sym_short_flag] = ACTIONS(833), + [aux_sym_unquoted_token1] = ACTIONS(833), + [anon_sym_POUND] = ACTIONS(3), + }, + [370] = { + [sym_comment] = STATE(370), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_RPAREN] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_RBRACE] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_STAR_STAR] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_bit_DASHshl] = ACTIONS(905), + [anon_sym_bit_DASHshr] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT2] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_not_DASHin] = ACTIONS(905), + [anon_sym_starts_DASHwith] = ACTIONS(905), + [anon_sym_ends_DASHwith] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [anon_sym_BANG_TILDE] = ACTIONS(905), + [anon_sym_bit_DASHand] = ACTIONS(905), + [anon_sym_bit_DASHxor] = ACTIONS(905), + [anon_sym_bit_DASHor] = ACTIONS(905), + [anon_sym_and] = ACTIONS(905), + [anon_sym_xor] = ACTIONS(905), + [anon_sym_or] = ACTIONS(905), + [anon_sym_DOT_DOT_LT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [sym_val_nothing] = ACTIONS(905), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [aux_sym_val_number_token1] = ACTIONS(905), + [aux_sym_val_number_token2] = ACTIONS(905), + [aux_sym_val_number_token3] = ACTIONS(905), + [aux_sym_val_number_token4] = ACTIONS(905), + [aux_sym_val_number_token5] = ACTIONS(905), + [anon_sym_inf] = ACTIONS(905), + [anon_sym_DASHinf] = ACTIONS(905), + [anon_sym_NaN] = ACTIONS(905), + [anon_sym_0b] = ACTIONS(905), + [anon_sym_0o] = ACTIONS(905), + [anon_sym_0x] = ACTIONS(905), + [sym_val_date] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__str_single_quotes] = ACTIONS(905), + [sym__str_back_ticks] = ACTIONS(905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(905), + [anon_sym_err_GT] = ACTIONS(905), + [anon_sym_out_GT] = ACTIONS(905), + [anon_sym_e_GT] = ACTIONS(905), + [anon_sym_o_GT] = ACTIONS(905), + [anon_sym_err_PLUSout_GT] = ACTIONS(905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(905), + [anon_sym_o_PLUSe_GT] = ACTIONS(905), + [anon_sym_e_PLUSo_GT] = ACTIONS(905), + [sym_short_flag] = ACTIONS(905), + [aux_sym_unquoted_token1] = ACTIONS(905), + [anon_sym_POUND] = ACTIONS(3), + }, + [371] = { + [sym_comment] = STATE(371), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -79689,6 +77816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(829), [anon_sym_in] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_STAR] = ACTIONS(829), [anon_sym_STAR_STAR] = ACTIONS(829), [anon_sym_PLUS_PLUS] = ACTIONS(829), @@ -79748,532 +77876,239 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_short_flag] = ACTIONS(829), [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), - }, - [398] = { - [sym_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(881), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_LF] = ACTIONS(881), - [anon_sym_LBRACK] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_DOLLAR] = ACTIONS(879), - [anon_sym_GT] = ACTIONS(879), - [anon_sym_DASH_DASH] = ACTIONS(879), - [anon_sym_DASH] = ACTIONS(879), - [anon_sym_in] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(879), - [anon_sym_STAR] = ACTIONS(879), - [anon_sym_STAR_STAR] = ACTIONS(879), - [anon_sym_PLUS_PLUS] = ACTIONS(879), - [anon_sym_SLASH] = ACTIONS(879), - [anon_sym_mod] = ACTIONS(879), - [anon_sym_SLASH_SLASH] = ACTIONS(879), - [anon_sym_PLUS] = ACTIONS(879), - [anon_sym_bit_DASHshl] = ACTIONS(879), - [anon_sym_bit_DASHshr] = ACTIONS(879), - [anon_sym_EQ_EQ] = ACTIONS(879), - [anon_sym_BANG_EQ] = ACTIONS(879), - [anon_sym_LT2] = ACTIONS(879), - [anon_sym_LT_EQ] = ACTIONS(879), - [anon_sym_GT_EQ] = ACTIONS(879), - [anon_sym_not_DASHin] = ACTIONS(879), - [anon_sym_starts_DASHwith] = ACTIONS(879), - [anon_sym_ends_DASHwith] = ACTIONS(879), - [anon_sym_EQ_TILDE] = ACTIONS(879), - [anon_sym_BANG_TILDE] = ACTIONS(879), - [anon_sym_bit_DASHand] = ACTIONS(879), - [anon_sym_bit_DASHxor] = ACTIONS(879), - [anon_sym_bit_DASHor] = ACTIONS(879), - [anon_sym_and] = ACTIONS(879), - [anon_sym_xor] = ACTIONS(879), - [anon_sym_or] = ACTIONS(879), - [anon_sym_DOT_DOT_LT] = ACTIONS(879), - [anon_sym_DOT_DOT] = ACTIONS(879), - [anon_sym_DOT_DOT_EQ] = ACTIONS(879), - [sym_val_nothing] = ACTIONS(879), - [anon_sym_true] = ACTIONS(879), - [anon_sym_false] = ACTIONS(879), - [aux_sym_val_number_token1] = ACTIONS(879), - [aux_sym_val_number_token2] = ACTIONS(879), - [aux_sym_val_number_token3] = ACTIONS(879), - [aux_sym_val_number_token4] = ACTIONS(879), - [aux_sym_val_number_token5] = ACTIONS(879), - [anon_sym_inf] = ACTIONS(879), - [anon_sym_DASHinf] = ACTIONS(879), - [anon_sym_NaN] = ACTIONS(879), - [anon_sym_0b] = ACTIONS(879), - [anon_sym_0o] = ACTIONS(879), - [anon_sym_0x] = ACTIONS(879), - [sym_val_date] = ACTIONS(879), - [anon_sym_DQUOTE] = ACTIONS(879), - [sym__str_single_quotes] = ACTIONS(879), - [sym__str_back_ticks] = ACTIONS(879), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(879), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(879), - [anon_sym_err_GT] = ACTIONS(879), - [anon_sym_out_GT] = ACTIONS(879), - [anon_sym_e_GT] = ACTIONS(879), - [anon_sym_o_GT] = ACTIONS(879), - [anon_sym_err_PLUSout_GT] = ACTIONS(879), - [anon_sym_out_PLUSerr_GT] = ACTIONS(879), - [anon_sym_o_PLUSe_GT] = ACTIONS(879), - [anon_sym_e_PLUSo_GT] = ACTIONS(879), - [sym_short_flag] = ACTIONS(879), - [aux_sym_unquoted_token1] = ACTIONS(879), - [anon_sym_POUND] = ACTIONS(3), - }, - [399] = { - [sym_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(913), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LF] = ACTIONS(913), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_PIPE] = ACTIONS(911), - [anon_sym_DOLLAR] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(911), - [anon_sym_DASH_DASH] = ACTIONS(911), - [anon_sym_DASH] = ACTIONS(911), - [anon_sym_in] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_STAR] = ACTIONS(911), - [anon_sym_STAR_STAR] = ACTIONS(911), - [anon_sym_PLUS_PLUS] = ACTIONS(911), - [anon_sym_SLASH] = ACTIONS(911), - [anon_sym_mod] = ACTIONS(911), - [anon_sym_SLASH_SLASH] = ACTIONS(911), - [anon_sym_PLUS] = ACTIONS(911), - [anon_sym_bit_DASHshl] = ACTIONS(911), - [anon_sym_bit_DASHshr] = ACTIONS(911), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_LT2] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_not_DASHin] = ACTIONS(911), - [anon_sym_starts_DASHwith] = ACTIONS(911), - [anon_sym_ends_DASHwith] = ACTIONS(911), - [anon_sym_EQ_TILDE] = ACTIONS(911), - [anon_sym_BANG_TILDE] = ACTIONS(911), - [anon_sym_bit_DASHand] = ACTIONS(911), - [anon_sym_bit_DASHxor] = ACTIONS(911), - [anon_sym_bit_DASHor] = ACTIONS(911), - [anon_sym_and] = ACTIONS(911), - [anon_sym_xor] = ACTIONS(911), - [anon_sym_or] = ACTIONS(911), - [anon_sym_DOT_DOT_LT] = ACTIONS(911), - [anon_sym_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [sym_val_nothing] = ACTIONS(911), - [anon_sym_true] = ACTIONS(911), - [anon_sym_false] = ACTIONS(911), - [aux_sym_val_number_token1] = ACTIONS(911), - [aux_sym_val_number_token2] = ACTIONS(911), - [aux_sym_val_number_token3] = ACTIONS(911), - [aux_sym_val_number_token4] = ACTIONS(911), - [aux_sym_val_number_token5] = ACTIONS(911), - [anon_sym_inf] = ACTIONS(911), - [anon_sym_DASHinf] = ACTIONS(911), - [anon_sym_NaN] = ACTIONS(911), - [anon_sym_0b] = ACTIONS(911), - [anon_sym_0o] = ACTIONS(911), - [anon_sym_0x] = ACTIONS(911), - [sym_val_date] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(911), - [sym__str_single_quotes] = ACTIONS(911), - [sym__str_back_ticks] = ACTIONS(911), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(911), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(911), - [anon_sym_err_GT] = ACTIONS(911), - [anon_sym_out_GT] = ACTIONS(911), - [anon_sym_e_GT] = ACTIONS(911), - [anon_sym_o_GT] = ACTIONS(911), - [anon_sym_err_PLUSout_GT] = ACTIONS(911), - [anon_sym_out_PLUSerr_GT] = ACTIONS(911), - [anon_sym_o_PLUSe_GT] = ACTIONS(911), - [anon_sym_e_PLUSo_GT] = ACTIONS(911), - [sym_short_flag] = ACTIONS(911), - [aux_sym_unquoted_token1] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(3), - }, - [400] = { - [sym__flag] = STATE(486), - [sym_long_flag] = STATE(503), - [sym_comment] = STATE(400), - [aux_sym_overlay_use_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1011), - [anon_sym_export] = ACTIONS(1009), - [anon_sym_alias] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1009), - [anon_sym_let_DASHenv] = ACTIONS(1009), - [anon_sym_mut] = ACTIONS(1009), - [anon_sym_const] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(1009), - [sym_cmd_identifier] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1011), - [anon_sym_def] = ACTIONS(1009), - [anon_sym_def_DASHenv] = ACTIONS(1009), - [anon_sym_export_DASHenv] = ACTIONS(1009), - [anon_sym_extern] = ACTIONS(1009), - [anon_sym_module] = ACTIONS(1009), - [anon_sym_use] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_error] = ACTIONS(1009), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_break] = ACTIONS(1009), - [anon_sym_continue] = ACTIONS(1009), - [anon_sym_for] = ACTIONS(1009), - [anon_sym_loop] = ACTIONS(1009), - [anon_sym_while] = ACTIONS(1009), - [anon_sym_do] = ACTIONS(1009), - [anon_sym_if] = ACTIONS(1009), - [anon_sym_match] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_try] = ACTIONS(1009), - [anon_sym_return] = ACTIONS(1009), - [anon_sym_source] = ACTIONS(1009), - [anon_sym_source_DASHenv] = ACTIONS(1009), - [anon_sym_register] = ACTIONS(1009), - [anon_sym_hide] = ACTIONS(1009), - [anon_sym_hide_DASHenv] = ACTIONS(1009), - [anon_sym_overlay] = ACTIONS(1009), - [anon_sym_as] = ACTIONS(1257), - [anon_sym_where] = ACTIONS(1009), - [anon_sym_not] = ACTIONS(1009), - [anon_sym_DOT_DOT_LT] = ACTIONS(1009), - [anon_sym_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [sym_val_nothing] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1009), - [anon_sym_false] = ACTIONS(1009), - [aux_sym_val_number_token1] = ACTIONS(1009), - [aux_sym_val_number_token2] = ACTIONS(1009), - [aux_sym_val_number_token3] = ACTIONS(1009), - [aux_sym_val_number_token4] = ACTIONS(1009), - [aux_sym_val_number_token5] = ACTIONS(1009), - [anon_sym_inf] = ACTIONS(1009), - [anon_sym_DASHinf] = ACTIONS(1009), - [anon_sym_NaN] = ACTIONS(1009), - [anon_sym_0b] = ACTIONS(1009), - [anon_sym_0o] = ACTIONS(1009), - [anon_sym_0x] = ACTIONS(1009), - [sym_val_date] = ACTIONS(1009), - [anon_sym_DQUOTE] = ACTIONS(1009), - [sym__str_single_quotes] = ACTIONS(1009), - [sym__str_back_ticks] = ACTIONS(1009), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1009), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1009), - [anon_sym_CARET] = ACTIONS(1009), - [sym_short_flag] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(3), - }, - [401] = { - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(889), - [anon_sym_SEMI] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_PIPE] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_GT] = ACTIONS(887), - [anon_sym_DASH_DASH] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_in] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_STAR_STAR] = ACTIONS(887), - [anon_sym_PLUS_PLUS] = ACTIONS(887), - [anon_sym_SLASH] = ACTIONS(887), - [anon_sym_mod] = ACTIONS(887), - [anon_sym_SLASH_SLASH] = ACTIONS(887), - [anon_sym_PLUS] = ACTIONS(887), - [anon_sym_bit_DASHshl] = ACTIONS(887), - [anon_sym_bit_DASHshr] = ACTIONS(887), - [anon_sym_EQ_EQ] = ACTIONS(887), - [anon_sym_BANG_EQ] = ACTIONS(887), - [anon_sym_LT2] = ACTIONS(887), - [anon_sym_LT_EQ] = ACTIONS(887), - [anon_sym_GT_EQ] = ACTIONS(887), - [anon_sym_not_DASHin] = ACTIONS(887), - [anon_sym_starts_DASHwith] = ACTIONS(887), - [anon_sym_ends_DASHwith] = ACTIONS(887), - [anon_sym_EQ_TILDE] = ACTIONS(887), - [anon_sym_BANG_TILDE] = ACTIONS(887), - [anon_sym_bit_DASHand] = ACTIONS(887), - [anon_sym_bit_DASHxor] = ACTIONS(887), - [anon_sym_bit_DASHor] = ACTIONS(887), - [anon_sym_and] = ACTIONS(887), - [anon_sym_xor] = ACTIONS(887), - [anon_sym_or] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_err_GT] = ACTIONS(887), - [anon_sym_out_GT] = ACTIONS(887), - [anon_sym_e_GT] = ACTIONS(887), - [anon_sym_o_GT] = ACTIONS(887), - [anon_sym_err_PLUSout_GT] = ACTIONS(887), - [anon_sym_out_PLUSerr_GT] = ACTIONS(887), - [anon_sym_o_PLUSe_GT] = ACTIONS(887), - [anon_sym_e_PLUSo_GT] = ACTIONS(887), - [sym_short_flag] = ACTIONS(887), - [aux_sym_unquoted_token1] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(3), - }, - [402] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(921), - [anon_sym_SEMI] = ACTIONS(919), - [anon_sym_LF] = ACTIONS(921), - [anon_sym_LBRACK] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(919), - [anon_sym_PIPE] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_DASH_DASH] = ACTIONS(919), - [anon_sym_DASH] = ACTIONS(919), - [anon_sym_in] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(919), - [anon_sym_STAR] = ACTIONS(919), - [anon_sym_STAR_STAR] = ACTIONS(919), - [anon_sym_PLUS_PLUS] = ACTIONS(919), - [anon_sym_SLASH] = ACTIONS(919), - [anon_sym_mod] = ACTIONS(919), - [anon_sym_SLASH_SLASH] = ACTIONS(919), - [anon_sym_PLUS] = ACTIONS(919), - [anon_sym_bit_DASHshl] = ACTIONS(919), - [anon_sym_bit_DASHshr] = ACTIONS(919), - [anon_sym_EQ_EQ] = ACTIONS(919), - [anon_sym_BANG_EQ] = ACTIONS(919), - [anon_sym_LT2] = ACTIONS(919), - [anon_sym_LT_EQ] = ACTIONS(919), - [anon_sym_GT_EQ] = ACTIONS(919), - [anon_sym_not_DASHin] = ACTIONS(919), - [anon_sym_starts_DASHwith] = ACTIONS(919), - [anon_sym_ends_DASHwith] = ACTIONS(919), - [anon_sym_EQ_TILDE] = ACTIONS(919), - [anon_sym_BANG_TILDE] = ACTIONS(919), - [anon_sym_bit_DASHand] = ACTIONS(919), - [anon_sym_bit_DASHxor] = ACTIONS(919), - [anon_sym_bit_DASHor] = ACTIONS(919), - [anon_sym_and] = ACTIONS(919), - [anon_sym_xor] = ACTIONS(919), - [anon_sym_or] = ACTIONS(919), - [anon_sym_DOT_DOT_LT] = ACTIONS(919), - [anon_sym_DOT_DOT] = ACTIONS(919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(919), - [sym_val_nothing] = ACTIONS(919), - [anon_sym_true] = ACTIONS(919), - [anon_sym_false] = ACTIONS(919), - [aux_sym_val_number_token1] = ACTIONS(919), - [aux_sym_val_number_token2] = ACTIONS(919), - [aux_sym_val_number_token3] = ACTIONS(919), - [aux_sym_val_number_token4] = ACTIONS(919), - [aux_sym_val_number_token5] = ACTIONS(919), - [anon_sym_inf] = ACTIONS(919), - [anon_sym_DASHinf] = ACTIONS(919), - [anon_sym_NaN] = ACTIONS(919), - [anon_sym_0b] = ACTIONS(919), - [anon_sym_0o] = ACTIONS(919), - [anon_sym_0x] = ACTIONS(919), - [sym_val_date] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(919), - [sym__str_single_quotes] = ACTIONS(919), - [sym__str_back_ticks] = ACTIONS(919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(919), - [anon_sym_err_GT] = ACTIONS(919), - [anon_sym_out_GT] = ACTIONS(919), - [anon_sym_e_GT] = ACTIONS(919), - [anon_sym_o_GT] = ACTIONS(919), - [anon_sym_err_PLUSout_GT] = ACTIONS(919), - [anon_sym_out_PLUSerr_GT] = ACTIONS(919), - [anon_sym_o_PLUSe_GT] = ACTIONS(919), - [anon_sym_e_PLUSo_GT] = ACTIONS(919), - [sym_short_flag] = ACTIONS(919), - [aux_sym_unquoted_token1] = ACTIONS(919), - [anon_sym_POUND] = ACTIONS(3), - }, - [403] = { - [sym__flag] = STATE(486), - [sym_long_flag] = STATE(503), - [sym_comment] = STATE(403), - [aux_sym_overlay_use_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1241), - [anon_sym_export] = ACTIONS(1239), - [anon_sym_alias] = ACTIONS(1239), - [anon_sym_let] = ACTIONS(1239), - [anon_sym_let_DASHenv] = ACTIONS(1239), - [anon_sym_mut] = ACTIONS(1239), - [anon_sym_const] = ACTIONS(1239), - [anon_sym_SEMI] = ACTIONS(1239), - [sym_cmd_identifier] = ACTIONS(1239), - [anon_sym_LF] = ACTIONS(1241), - [anon_sym_def] = ACTIONS(1239), - [anon_sym_def_DASHenv] = ACTIONS(1239), - [anon_sym_export_DASHenv] = ACTIONS(1239), - [anon_sym_extern] = ACTIONS(1239), - [anon_sym_module] = ACTIONS(1239), - [anon_sym_use] = ACTIONS(1239), - [anon_sym_LBRACK] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1239), - [anon_sym_error] = ACTIONS(1239), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1239), - [anon_sym_break] = ACTIONS(1239), - [anon_sym_continue] = ACTIONS(1239), - [anon_sym_for] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_while] = ACTIONS(1239), - [anon_sym_do] = ACTIONS(1239), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1239), - [anon_sym_LBRACE] = ACTIONS(1239), - [anon_sym_try] = ACTIONS(1239), - [anon_sym_return] = ACTIONS(1239), - [anon_sym_source] = ACTIONS(1239), - [anon_sym_source_DASHenv] = ACTIONS(1239), - [anon_sym_register] = ACTIONS(1239), - [anon_sym_hide] = ACTIONS(1239), - [anon_sym_hide_DASHenv] = ACTIONS(1239), - [anon_sym_overlay] = ACTIONS(1239), - [anon_sym_as] = ACTIONS(1261), - [anon_sym_where] = ACTIONS(1239), - [anon_sym_not] = ACTIONS(1239), - [anon_sym_DOT_DOT_LT] = ACTIONS(1239), - [anon_sym_DOT_DOT] = ACTIONS(1239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1239), - [sym_val_nothing] = ACTIONS(1239), - [anon_sym_true] = ACTIONS(1239), - [anon_sym_false] = ACTIONS(1239), - [aux_sym_val_number_token1] = ACTIONS(1239), - [aux_sym_val_number_token2] = ACTIONS(1239), - [aux_sym_val_number_token3] = ACTIONS(1239), - [aux_sym_val_number_token4] = ACTIONS(1239), - [aux_sym_val_number_token5] = ACTIONS(1239), - [anon_sym_inf] = ACTIONS(1239), - [anon_sym_DASHinf] = ACTIONS(1239), - [anon_sym_NaN] = ACTIONS(1239), - [anon_sym_0b] = ACTIONS(1239), - [anon_sym_0o] = ACTIONS(1239), - [anon_sym_0x] = ACTIONS(1239), - [sym_val_date] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1239), - [sym__str_single_quotes] = ACTIONS(1239), - [sym__str_back_ticks] = ACTIONS(1239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1239), - [sym_short_flag] = ACTIONS(1259), - [anon_sym_POUND] = ACTIONS(3), - }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(105), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_LF] = ACTIONS(105), - [anon_sym_LBRACK] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(103), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_DASH_DASH] = ACTIONS(103), - [anon_sym_DASH] = ACTIONS(103), - [anon_sym_in] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_STAR] = ACTIONS(103), - [anon_sym_STAR_STAR] = ACTIONS(103), - [anon_sym_PLUS_PLUS] = ACTIONS(103), - [anon_sym_SLASH] = ACTIONS(103), - [anon_sym_mod] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(103), - [anon_sym_bit_DASHshl] = ACTIONS(103), - [anon_sym_bit_DASHshr] = ACTIONS(103), - [anon_sym_EQ_EQ] = ACTIONS(103), - [anon_sym_BANG_EQ] = ACTIONS(103), - [anon_sym_LT2] = ACTIONS(103), - [anon_sym_LT_EQ] = ACTIONS(103), - [anon_sym_GT_EQ] = ACTIONS(103), - [anon_sym_not_DASHin] = ACTIONS(103), - [anon_sym_starts_DASHwith] = ACTIONS(103), - [anon_sym_ends_DASHwith] = ACTIONS(103), - [anon_sym_EQ_TILDE] = ACTIONS(103), - [anon_sym_BANG_TILDE] = ACTIONS(103), - [anon_sym_bit_DASHand] = ACTIONS(103), - [anon_sym_bit_DASHxor] = ACTIONS(103), - [anon_sym_bit_DASHor] = ACTIONS(103), - [anon_sym_and] = ACTIONS(103), - [anon_sym_xor] = ACTIONS(103), - [anon_sym_or] = ACTIONS(103), - [anon_sym_DOT_DOT_LT] = ACTIONS(103), - [anon_sym_DOT_DOT] = ACTIONS(103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(103), - [sym_val_nothing] = ACTIONS(103), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [aux_sym_val_number_token1] = ACTIONS(103), - [aux_sym_val_number_token2] = ACTIONS(103), - [aux_sym_val_number_token3] = ACTIONS(103), - [aux_sym_val_number_token4] = ACTIONS(103), - [aux_sym_val_number_token5] = ACTIONS(103), - [anon_sym_inf] = ACTIONS(103), - [anon_sym_DASHinf] = ACTIONS(103), - [anon_sym_NaN] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(103), - [anon_sym_0x] = ACTIONS(103), - [sym_val_date] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(103), - [sym__str_single_quotes] = ACTIONS(103), - [sym__str_back_ticks] = ACTIONS(103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), - [anon_sym_err_GT] = ACTIONS(103), - [anon_sym_out_GT] = ACTIONS(103), - [anon_sym_e_GT] = ACTIONS(103), - [anon_sym_o_GT] = ACTIONS(103), - [anon_sym_err_PLUSout_GT] = ACTIONS(103), - [anon_sym_out_PLUSerr_GT] = ACTIONS(103), - [anon_sym_o_PLUSe_GT] = ACTIONS(103), - [anon_sym_e_PLUSo_GT] = ACTIONS(103), - [sym_short_flag] = ACTIONS(103), - [aux_sym_unquoted_token1] = ACTIONS(103), + }, + [372] = { + [sym_comment] = STATE(372), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_RBRACE] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_DOT_DOT_LT] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [sym_val_nothing] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym_val_number_token1] = ACTIONS(909), + [aux_sym_val_number_token2] = ACTIONS(909), + [aux_sym_val_number_token3] = ACTIONS(909), + [aux_sym_val_number_token4] = ACTIONS(909), + [aux_sym_val_number_token5] = ACTIONS(909), + [anon_sym_inf] = ACTIONS(909), + [anon_sym_DASHinf] = ACTIONS(909), + [anon_sym_NaN] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_err_GT] = ACTIONS(909), + [anon_sym_out_GT] = ACTIONS(909), + [anon_sym_e_GT] = ACTIONS(909), + [anon_sym_o_GT] = ACTIONS(909), + [anon_sym_err_PLUSout_GT] = ACTIONS(909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(909), + [anon_sym_o_PLUSe_GT] = ACTIONS(909), + [anon_sym_e_PLUSo_GT] = ACTIONS(909), + [sym_short_flag] = ACTIONS(909), + [aux_sym_unquoted_token1] = ACTIONS(909), [anon_sym_POUND] = ACTIONS(3), }, - [405] = { - [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(115), + [373] = { + [sym_comment] = STATE(373), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [sym_short_flag] = ACTIONS(775), + [aux_sym_unquoted_token1] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [374] = { + [sym_comment] = STATE(374), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [375] = { + [sym_comment] = STATE(375), [anon_sym_SEMI] = ACTIONS(113), [anon_sym_LF] = ACTIONS(115), [anon_sym_LBRACK] = ACTIONS(113), [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_RPAREN] = ACTIONS(113), [anon_sym_PIPE] = ACTIONS(113), [anon_sym_DOLLAR] = ACTIONS(113), [anon_sym_GT] = ACTIONS(113), @@ -80281,6 +78116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(113), [anon_sym_in] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_RBRACE] = ACTIONS(113), [anon_sym_STAR] = ACTIONS(113), [anon_sym_STAR_STAR] = ACTIONS(113), [anon_sym_PLUS_PLUS] = ACTIONS(113), @@ -80341,87 +78177,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(113), [anon_sym_POUND] = ACTIONS(3), }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1199), - [anon_sym_SEMI] = ACTIONS(1197), - [anon_sym_LF] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1197), - [anon_sym_LPAREN] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(1197), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(1197), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(1283), - [anon_sym_xor] = ACTIONS(1285), - [anon_sym_or] = ACTIONS(1287), - [anon_sym_DOT_DOT_LT] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1197), - [sym_val_nothing] = ACTIONS(1197), - [anon_sym_true] = ACTIONS(1197), - [anon_sym_false] = ACTIONS(1197), - [aux_sym_val_number_token1] = ACTIONS(1197), - [aux_sym_val_number_token2] = ACTIONS(1197), - [aux_sym_val_number_token3] = ACTIONS(1197), - [aux_sym_val_number_token4] = ACTIONS(1197), - [aux_sym_val_number_token5] = ACTIONS(1197), - [anon_sym_inf] = ACTIONS(1197), - [anon_sym_DASHinf] = ACTIONS(1197), - [anon_sym_NaN] = ACTIONS(1197), - [anon_sym_0b] = ACTIONS(1197), - [anon_sym_0o] = ACTIONS(1197), - [anon_sym_0x] = ACTIONS(1197), - [sym_val_date] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym__str_single_quotes] = ACTIONS(1197), - [sym__str_back_ticks] = ACTIONS(1197), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1197), - [anon_sym_err_GT] = ACTIONS(1197), - [anon_sym_out_GT] = ACTIONS(1197), - [anon_sym_e_GT] = ACTIONS(1197), - [anon_sym_o_GT] = ACTIONS(1197), - [anon_sym_err_PLUSout_GT] = ACTIONS(1197), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1197), - [anon_sym_o_PLUSe_GT] = ACTIONS(1197), - [anon_sym_e_PLUSo_GT] = ACTIONS(1197), - [sym_short_flag] = ACTIONS(1197), - [aux_sym_unquoted_token1] = ACTIONS(1197), + [376] = { + [sym_comment] = STATE(376), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_err_GT] = ACTIONS(779), + [anon_sym_out_GT] = ACTIONS(779), + [anon_sym_e_GT] = ACTIONS(779), + [anon_sym_o_GT] = ACTIONS(779), + [anon_sym_err_PLUSout_GT] = ACTIONS(779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(779), + [anon_sym_o_PLUSe_GT] = ACTIONS(779), + [anon_sym_e_PLUSo_GT] = ACTIONS(779), + [sym_short_flag] = ACTIONS(779), + [aux_sym_unquoted_token1] = ACTIONS(779), [anon_sym_POUND] = ACTIONS(3), }, - [407] = { - [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(831), + [377] = { + [sym_comment] = STATE(377), + [anon_sym_SEMI] = ACTIONS(841), + [anon_sym_LF] = ACTIONS(843), + [anon_sym_LBRACK] = ACTIONS(841), + [anon_sym_LPAREN] = ACTIONS(841), + [anon_sym_RPAREN] = ACTIONS(841), + [anon_sym_PIPE] = ACTIONS(841), + [anon_sym_DOLLAR] = ACTIONS(841), + [anon_sym_GT] = ACTIONS(841), + [anon_sym_DASH_DASH] = ACTIONS(841), + [anon_sym_DASH] = ACTIONS(841), + [anon_sym_in] = ACTIONS(841), + [anon_sym_LBRACE] = ACTIONS(841), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_STAR] = ACTIONS(841), + [anon_sym_STAR_STAR] = ACTIONS(841), + [anon_sym_PLUS_PLUS] = ACTIONS(841), + [anon_sym_SLASH] = ACTIONS(841), + [anon_sym_mod] = ACTIONS(841), + [anon_sym_SLASH_SLASH] = ACTIONS(841), + [anon_sym_PLUS] = ACTIONS(841), + [anon_sym_bit_DASHshl] = ACTIONS(841), + [anon_sym_bit_DASHshr] = ACTIONS(841), + [anon_sym_EQ_EQ] = ACTIONS(841), + [anon_sym_BANG_EQ] = ACTIONS(841), + [anon_sym_LT2] = ACTIONS(841), + [anon_sym_LT_EQ] = ACTIONS(841), + [anon_sym_GT_EQ] = ACTIONS(841), + [anon_sym_not_DASHin] = ACTIONS(841), + [anon_sym_starts_DASHwith] = ACTIONS(841), + [anon_sym_ends_DASHwith] = ACTIONS(841), + [anon_sym_EQ_TILDE] = ACTIONS(841), + [anon_sym_BANG_TILDE] = ACTIONS(841), + [anon_sym_bit_DASHand] = ACTIONS(841), + [anon_sym_bit_DASHxor] = ACTIONS(841), + [anon_sym_bit_DASHor] = ACTIONS(841), + [anon_sym_and] = ACTIONS(841), + [anon_sym_xor] = ACTIONS(841), + [anon_sym_or] = ACTIONS(841), + [anon_sym_DOT_DOT_LT] = ACTIONS(841), + [anon_sym_DOT_DOT] = ACTIONS(841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(841), + [sym_val_nothing] = ACTIONS(841), + [anon_sym_true] = ACTIONS(841), + [anon_sym_false] = ACTIONS(841), + [aux_sym_val_number_token1] = ACTIONS(841), + [aux_sym_val_number_token2] = ACTIONS(841), + [aux_sym_val_number_token3] = ACTIONS(841), + [aux_sym_val_number_token4] = ACTIONS(841), + [aux_sym_val_number_token5] = ACTIONS(841), + [anon_sym_inf] = ACTIONS(841), + [anon_sym_DASHinf] = ACTIONS(841), + [anon_sym_NaN] = ACTIONS(841), + [anon_sym_0b] = ACTIONS(841), + [anon_sym_0o] = ACTIONS(841), + [anon_sym_0x] = ACTIONS(841), + [sym_val_date] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(841), + [sym__str_single_quotes] = ACTIONS(841), + [sym__str_back_ticks] = ACTIONS(841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), + [anon_sym_err_GT] = ACTIONS(841), + [anon_sym_out_GT] = ACTIONS(841), + [anon_sym_e_GT] = ACTIONS(841), + [anon_sym_o_GT] = ACTIONS(841), + [anon_sym_err_PLUSout_GT] = ACTIONS(841), + [anon_sym_out_PLUSerr_GT] = ACTIONS(841), + [anon_sym_o_PLUSe_GT] = ACTIONS(841), + [anon_sym_e_PLUSo_GT] = ACTIONS(841), + [sym_short_flag] = ACTIONS(841), + [aux_sym_unquoted_token1] = ACTIONS(841), + [anon_sym_POUND] = ACTIONS(3), + }, + [378] = { + [sym_comment] = STATE(378), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_bit_DASHshl] = ACTIONS(939), + [anon_sym_bit_DASHshr] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_LT2] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_not_DASHin] = ACTIONS(939), + [anon_sym_starts_DASHwith] = ACTIONS(939), + [anon_sym_ends_DASHwith] = ACTIONS(939), + [anon_sym_EQ_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_bit_DASHand] = ACTIONS(939), + [anon_sym_bit_DASHxor] = ACTIONS(939), + [anon_sym_bit_DASHor] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_err_GT] = ACTIONS(939), + [anon_sym_out_GT] = ACTIONS(939), + [anon_sym_e_GT] = ACTIONS(939), + [anon_sym_o_GT] = ACTIONS(939), + [anon_sym_err_PLUSout_GT] = ACTIONS(939), + [anon_sym_out_PLUSerr_GT] = ACTIONS(939), + [anon_sym_o_PLUSe_GT] = ACTIONS(939), + [anon_sym_e_PLUSo_GT] = ACTIONS(939), + [sym_short_flag] = ACTIONS(939), + [aux_sym_unquoted_token1] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(3), + }, + [379] = { + [sym_comment] = STATE(379), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -80429,6 +78416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(829), [anon_sym_in] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_STAR] = ACTIONS(829), [anon_sym_STAR_STAR] = ACTIONS(829), [anon_sym_PLUS_PLUS] = ACTIONS(829), @@ -80489,230 +78477,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [408] = { - [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(883), - [anon_sym_LF] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(883), - [anon_sym_PIPE] = ACTIONS(883), - [anon_sym_DOLLAR] = ACTIONS(883), - [anon_sym_GT] = ACTIONS(883), - [anon_sym_DASH_DASH] = ACTIONS(883), - [anon_sym_DASH] = ACTIONS(883), - [anon_sym_in] = ACTIONS(883), - [anon_sym_LBRACE] = ACTIONS(883), - [anon_sym_STAR] = ACTIONS(883), - [anon_sym_STAR_STAR] = ACTIONS(883), - [anon_sym_PLUS_PLUS] = ACTIONS(883), - [anon_sym_SLASH] = ACTIONS(883), - [anon_sym_mod] = ACTIONS(883), - [anon_sym_SLASH_SLASH] = ACTIONS(883), - [anon_sym_PLUS] = ACTIONS(883), - [anon_sym_bit_DASHshl] = ACTIONS(883), - [anon_sym_bit_DASHshr] = ACTIONS(883), - [anon_sym_EQ_EQ] = ACTIONS(883), - [anon_sym_BANG_EQ] = ACTIONS(883), - [anon_sym_LT2] = ACTIONS(883), - [anon_sym_LT_EQ] = ACTIONS(883), - [anon_sym_GT_EQ] = ACTIONS(883), - [anon_sym_not_DASHin] = ACTIONS(883), - [anon_sym_starts_DASHwith] = ACTIONS(883), - [anon_sym_ends_DASHwith] = ACTIONS(883), - [anon_sym_EQ_TILDE] = ACTIONS(883), - [anon_sym_BANG_TILDE] = ACTIONS(883), - [anon_sym_bit_DASHand] = ACTIONS(883), - [anon_sym_bit_DASHxor] = ACTIONS(883), - [anon_sym_bit_DASHor] = ACTIONS(883), - [anon_sym_and] = ACTIONS(883), - [anon_sym_xor] = ACTIONS(883), - [anon_sym_or] = ACTIONS(883), - [anon_sym_DOT_DOT_LT] = ACTIONS(883), - [anon_sym_DOT_DOT] = ACTIONS(883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(883), - [sym_val_nothing] = ACTIONS(883), - [anon_sym_true] = ACTIONS(883), - [anon_sym_false] = ACTIONS(883), - [aux_sym_val_number_token1] = ACTIONS(883), - [aux_sym_val_number_token2] = ACTIONS(883), - [aux_sym_val_number_token3] = ACTIONS(883), - [aux_sym_val_number_token4] = ACTIONS(883), - [aux_sym_val_number_token5] = ACTIONS(883), - [anon_sym_inf] = ACTIONS(883), - [anon_sym_DASHinf] = ACTIONS(883), - [anon_sym_NaN] = ACTIONS(883), - [anon_sym_0b] = ACTIONS(883), - [anon_sym_0o] = ACTIONS(883), - [anon_sym_0x] = ACTIONS(883), - [sym_val_date] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym__str_single_quotes] = ACTIONS(883), - [sym__str_back_ticks] = ACTIONS(883), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(883), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(883), - [anon_sym_err_GT] = ACTIONS(883), - [anon_sym_out_GT] = ACTIONS(883), - [anon_sym_e_GT] = ACTIONS(883), - [anon_sym_o_GT] = ACTIONS(883), - [anon_sym_err_PLUSout_GT] = ACTIONS(883), - [anon_sym_out_PLUSerr_GT] = ACTIONS(883), - [anon_sym_o_PLUSe_GT] = ACTIONS(883), - [anon_sym_e_PLUSo_GT] = ACTIONS(883), - [sym_short_flag] = ACTIONS(883), - [aux_sym_unquoted_token1] = ACTIONS(883), + [380] = { + [sym_comment] = STATE(380), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1141), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1163), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [409] = { - [sym__flag] = STATE(486), - [sym_long_flag] = STATE(503), - [sym_comment] = STATE(409), - [aux_sym_overlay_use_repeat1] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1229), - [anon_sym_export] = ACTIONS(1227), - [anon_sym_alias] = ACTIONS(1227), - [anon_sym_let] = ACTIONS(1227), - [anon_sym_let_DASHenv] = ACTIONS(1227), - [anon_sym_mut] = ACTIONS(1227), - [anon_sym_const] = ACTIONS(1227), - [anon_sym_SEMI] = ACTIONS(1227), - [sym_cmd_identifier] = ACTIONS(1227), - [anon_sym_LF] = ACTIONS(1229), - [anon_sym_def] = ACTIONS(1227), - [anon_sym_def_DASHenv] = ACTIONS(1227), - [anon_sym_export_DASHenv] = ACTIONS(1227), - [anon_sym_extern] = ACTIONS(1227), - [anon_sym_module] = ACTIONS(1227), - [anon_sym_use] = ACTIONS(1227), - [anon_sym_LBRACK] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1227), - [anon_sym_error] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1227), - [anon_sym_break] = ACTIONS(1227), - [anon_sym_continue] = ACTIONS(1227), - [anon_sym_for] = ACTIONS(1227), - [anon_sym_loop] = ACTIONS(1227), - [anon_sym_while] = ACTIONS(1227), - [anon_sym_do] = ACTIONS(1227), - [anon_sym_if] = ACTIONS(1227), - [anon_sym_match] = ACTIONS(1227), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_try] = ACTIONS(1227), - [anon_sym_return] = ACTIONS(1227), - [anon_sym_source] = ACTIONS(1227), - [anon_sym_source_DASHenv] = ACTIONS(1227), - [anon_sym_register] = ACTIONS(1227), - [anon_sym_hide] = ACTIONS(1227), - [anon_sym_hide_DASHenv] = ACTIONS(1227), - [anon_sym_overlay] = ACTIONS(1227), - [anon_sym_as] = ACTIONS(1289), - [anon_sym_where] = ACTIONS(1227), - [anon_sym_not] = ACTIONS(1227), - [anon_sym_DOT_DOT_LT] = ACTIONS(1227), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1227), - [sym_val_nothing] = ACTIONS(1227), - [anon_sym_true] = ACTIONS(1227), - [anon_sym_false] = ACTIONS(1227), - [aux_sym_val_number_token1] = ACTIONS(1227), - [aux_sym_val_number_token2] = ACTIONS(1227), - [aux_sym_val_number_token3] = ACTIONS(1227), - [aux_sym_val_number_token4] = ACTIONS(1227), - [aux_sym_val_number_token5] = ACTIONS(1227), - [anon_sym_inf] = ACTIONS(1227), - [anon_sym_DASHinf] = ACTIONS(1227), - [anon_sym_NaN] = ACTIONS(1227), - [anon_sym_0b] = ACTIONS(1227), - [anon_sym_0o] = ACTIONS(1227), - [anon_sym_0x] = ACTIONS(1227), - [sym_val_date] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1227), - [sym__str_single_quotes] = ACTIONS(1227), - [sym__str_back_ticks] = ACTIONS(1227), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1227), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [sym_short_flag] = ACTIONS(1259), + [381] = { + [sym_comment] = STATE(381), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [sym_short_flag] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(3), }, - [410] = { - [sym_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(3), + [382] = { + [sym__ctrl_expression_parenthesized] = STATE(3337), + [sym_ctrl_do] = STATE(3230), + [sym_ctrl_if_parenthesized] = STATE(3230), + [sym_ctrl_match] = STATE(3230), + [sym_ctrl_try_parenthesized] = STATE(3230), + [sym_ctrl_return] = STATE(3230), + [sym_pipe_element_parenthesized] = STATE(1600), + [sym_where_command] = STATE(3336), + [sym__expression] = STATE(2425), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym__command_parenthesized_body] = STATE(3369), + [sym_comment] = STATE(382), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(382), + [sym_cmd_identifier] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(1168), + [anon_sym_LPAREN] = ACTIONS(1171), + [anon_sym_DOLLAR] = ACTIONS(1174), + [anon_sym_DASH] = ACTIONS(1177), + [anon_sym_break] = ACTIONS(1180), + [anon_sym_continue] = ACTIONS(1183), + [anon_sym_do] = ACTIONS(1186), + [anon_sym_if] = ACTIONS(1189), + [anon_sym_match] = ACTIONS(1192), + [anon_sym_LBRACE] = ACTIONS(1195), + [anon_sym_try] = ACTIONS(1198), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_where] = ACTIONS(1204), + [anon_sym_not] = ACTIONS(1207), + [anon_sym_DOT_DOT_LT] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1210), + [sym_val_nothing] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1219), + [anon_sym_false] = ACTIONS(1219), + [aux_sym_val_number_token1] = ACTIONS(1222), + [aux_sym_val_number_token2] = ACTIONS(1222), + [aux_sym_val_number_token3] = ACTIONS(1225), + [aux_sym_val_number_token4] = ACTIONS(1225), + [aux_sym_val_number_token5] = ACTIONS(1225), + [anon_sym_inf] = ACTIONS(1222), + [anon_sym_DASHinf] = ACTIONS(1225), + [anon_sym_NaN] = ACTIONS(1222), + [anon_sym_0b] = ACTIONS(1228), + [anon_sym_0o] = ACTIONS(1228), + [anon_sym_0x] = ACTIONS(1228), + [sym_val_date] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1234), + [sym__str_single_quotes] = ACTIONS(1237), + [sym__str_back_ticks] = ACTIONS(1237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1240), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_POUND] = ACTIONS(145), }, - [411] = { - [sym_comment] = STATE(411), + [383] = { + [sym_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(795), [anon_sym_SEMI] = ACTIONS(793), [anon_sym_LF] = ACTIONS(795), @@ -80720,36 +78711,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(793), [anon_sym_PIPE] = ACTIONS(793), [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(793), [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_in] = ACTIONS(793), [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(1283), - [anon_sym_xor] = ACTIONS(1285), - [anon_sym_or] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_STAR] = ACTIONS(793), + [anon_sym_STAR_STAR] = ACTIONS(793), + [anon_sym_PLUS_PLUS] = ACTIONS(793), + [anon_sym_SLASH] = ACTIONS(793), + [anon_sym_mod] = ACTIONS(793), + [anon_sym_SLASH_SLASH] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(793), + [anon_sym_bit_DASHshl] = ACTIONS(793), + [anon_sym_bit_DASHshr] = ACTIONS(793), + [anon_sym_EQ_EQ] = ACTIONS(793), + [anon_sym_BANG_EQ] = ACTIONS(793), + [anon_sym_LT2] = ACTIONS(793), + [anon_sym_LT_EQ] = ACTIONS(793), + [anon_sym_GT_EQ] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(793), + [anon_sym_starts_DASHwith] = ACTIONS(793), + [anon_sym_ends_DASHwith] = ACTIONS(793), + [anon_sym_EQ_TILDE] = ACTIONS(793), + [anon_sym_BANG_TILDE] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(793), + [anon_sym_bit_DASHxor] = ACTIONS(793), + [anon_sym_bit_DASHor] = ACTIONS(793), + [anon_sym_and] = ACTIONS(793), + [anon_sym_xor] = ACTIONS(793), + [anon_sym_or] = ACTIONS(793), [anon_sym_DOT_DOT_LT] = ACTIONS(793), [anon_sym_DOT_DOT] = ACTIONS(793), [anon_sym_DOT_DOT_EQ] = ACTIONS(793), @@ -80785,13 +78777,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3), }, - [412] = { - [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(831), + [384] = { + [sym_comment] = STATE(384), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -80799,6 +78791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(829), [anon_sym_in] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_STAR] = ACTIONS(829), [anon_sym_STAR_STAR] = ACTIONS(829), [anon_sym_PLUS_PLUS] = ACTIONS(829), @@ -80859,87 +78852,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [413] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(1283), - [anon_sym_xor] = ACTIONS(1285), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [385] = { + [sym_comment] = STATE(385), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_bit_DASHshl] = ACTIONS(935), + [anon_sym_bit_DASHshr] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(935), + [anon_sym_starts_DASHwith] = ACTIONS(935), + [anon_sym_ends_DASHwith] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(935), + [anon_sym_bit_DASHxor] = ACTIONS(935), + [anon_sym_bit_DASHor] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [sym_val_nothing] = ACTIONS(935), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [aux_sym_val_number_token1] = ACTIONS(935), + [aux_sym_val_number_token2] = ACTIONS(935), + [aux_sym_val_number_token3] = ACTIONS(935), + [aux_sym_val_number_token4] = ACTIONS(935), + [aux_sym_val_number_token5] = ACTIONS(935), + [anon_sym_inf] = ACTIONS(935), + [anon_sym_DASHinf] = ACTIONS(935), + [anon_sym_NaN] = ACTIONS(935), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [sym_short_flag] = ACTIONS(935), + [aux_sym_unquoted_token1] = ACTIONS(935), [anon_sym_POUND] = ACTIONS(3), }, - [414] = { - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(831), + [386] = { + [sym_comment] = STATE(386), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), [anon_sym_LBRACK] = ACTIONS(829), [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_RPAREN] = ACTIONS(829), [anon_sym_PIPE] = ACTIONS(829), [anon_sym_DOLLAR] = ACTIONS(829), [anon_sym_GT] = ACTIONS(829), @@ -80947,6 +78941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(829), [anon_sym_in] = ACTIONS(829), [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_RBRACE] = ACTIONS(829), [anon_sym_STAR] = ACTIONS(829), [anon_sym_STAR_STAR] = ACTIONS(829), [anon_sym_PLUS_PLUS] = ACTIONS(829), @@ -81007,235 +79002,613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [415] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(901), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LF] = ACTIONS(901), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_PIPE] = ACTIONS(899), - [anon_sym_DOLLAR] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(899), - [anon_sym_DASH_DASH] = ACTIONS(899), - [anon_sym_DASH] = ACTIONS(899), - [anon_sym_in] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_STAR] = ACTIONS(899), - [anon_sym_STAR_STAR] = ACTIONS(899), - [anon_sym_PLUS_PLUS] = ACTIONS(899), - [anon_sym_SLASH] = ACTIONS(899), - [anon_sym_mod] = ACTIONS(899), - [anon_sym_SLASH_SLASH] = ACTIONS(899), - [anon_sym_PLUS] = ACTIONS(899), - [anon_sym_bit_DASHshl] = ACTIONS(899), - [anon_sym_bit_DASHshr] = ACTIONS(899), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_LT2] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_not_DASHin] = ACTIONS(899), - [anon_sym_starts_DASHwith] = ACTIONS(899), - [anon_sym_ends_DASHwith] = ACTIONS(899), - [anon_sym_EQ_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(899), - [anon_sym_bit_DASHand] = ACTIONS(899), - [anon_sym_bit_DASHxor] = ACTIONS(899), - [anon_sym_bit_DASHor] = ACTIONS(899), - [anon_sym_and] = ACTIONS(899), - [anon_sym_xor] = ACTIONS(899), - [anon_sym_or] = ACTIONS(899), - [anon_sym_DOT_DOT_LT] = ACTIONS(899), - [anon_sym_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [sym_val_nothing] = ACTIONS(899), - [anon_sym_true] = ACTIONS(899), - [anon_sym_false] = ACTIONS(899), - [aux_sym_val_number_token1] = ACTIONS(899), - [aux_sym_val_number_token2] = ACTIONS(899), - [aux_sym_val_number_token3] = ACTIONS(899), - [aux_sym_val_number_token4] = ACTIONS(899), - [aux_sym_val_number_token5] = ACTIONS(899), - [anon_sym_inf] = ACTIONS(899), - [anon_sym_DASHinf] = ACTIONS(899), - [anon_sym_NaN] = ACTIONS(899), - [anon_sym_0b] = ACTIONS(899), - [anon_sym_0o] = ACTIONS(899), - [anon_sym_0x] = ACTIONS(899), - [sym_val_date] = ACTIONS(899), - [anon_sym_DQUOTE] = ACTIONS(899), - [sym__str_single_quotes] = ACTIONS(899), - [sym__str_back_ticks] = ACTIONS(899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(899), - [anon_sym_err_GT] = ACTIONS(899), - [anon_sym_out_GT] = ACTIONS(899), - [anon_sym_e_GT] = ACTIONS(899), - [anon_sym_o_GT] = ACTIONS(899), - [anon_sym_err_PLUSout_GT] = ACTIONS(899), - [anon_sym_out_PLUSerr_GT] = ACTIONS(899), - [anon_sym_o_PLUSe_GT] = ACTIONS(899), - [anon_sym_e_PLUSo_GT] = ACTIONS(899), - [sym_short_flag] = ACTIONS(899), - [aux_sym_unquoted_token1] = ACTIONS(899), + [387] = { + [sym_comment] = STATE(387), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_bit_DASHshl] = ACTIONS(927), + [anon_sym_bit_DASHshr] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_not_DASHin] = ACTIONS(927), + [anon_sym_starts_DASHwith] = ACTIONS(927), + [anon_sym_ends_DASHwith] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_bit_DASHand] = ACTIONS(927), + [anon_sym_bit_DASHxor] = ACTIONS(927), + [anon_sym_bit_DASHor] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_DOT_DOT_LT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [sym_val_nothing] = ACTIONS(927), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [aux_sym_val_number_token1] = ACTIONS(927), + [aux_sym_val_number_token2] = ACTIONS(927), + [aux_sym_val_number_token3] = ACTIONS(927), + [aux_sym_val_number_token4] = ACTIONS(927), + [aux_sym_val_number_token5] = ACTIONS(927), + [anon_sym_inf] = ACTIONS(927), + [anon_sym_DASHinf] = ACTIONS(927), + [anon_sym_NaN] = ACTIONS(927), + [anon_sym_0b] = ACTIONS(927), + [anon_sym_0o] = ACTIONS(927), + [anon_sym_0x] = ACTIONS(927), + [sym_val_date] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_err_GT] = ACTIONS(927), + [anon_sym_out_GT] = ACTIONS(927), + [anon_sym_e_GT] = ACTIONS(927), + [anon_sym_o_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT] = ACTIONS(927), + [sym_short_flag] = ACTIONS(927), + [aux_sym_unquoted_token1] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(3), }, - [416] = { - [sym_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(871), - [anon_sym_SEMI] = ACTIONS(869), - [anon_sym_LF] = ACTIONS(871), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(869), - [anon_sym_PIPE] = ACTIONS(869), - [anon_sym_DOLLAR] = ACTIONS(869), - [anon_sym_GT] = ACTIONS(869), - [anon_sym_DASH_DASH] = ACTIONS(869), - [anon_sym_DASH] = ACTIONS(869), - [anon_sym_in] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(869), - [anon_sym_STAR] = ACTIONS(869), - [anon_sym_STAR_STAR] = ACTIONS(869), - [anon_sym_PLUS_PLUS] = ACTIONS(869), - [anon_sym_SLASH] = ACTIONS(869), - [anon_sym_mod] = ACTIONS(869), - [anon_sym_SLASH_SLASH] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(869), - [anon_sym_bit_DASHshl] = ACTIONS(869), - [anon_sym_bit_DASHshr] = ACTIONS(869), - [anon_sym_EQ_EQ] = ACTIONS(869), - [anon_sym_BANG_EQ] = ACTIONS(869), - [anon_sym_LT2] = ACTIONS(869), - [anon_sym_LT_EQ] = ACTIONS(869), - [anon_sym_GT_EQ] = ACTIONS(869), - [anon_sym_not_DASHin] = ACTIONS(869), - [anon_sym_starts_DASHwith] = ACTIONS(869), - [anon_sym_ends_DASHwith] = ACTIONS(869), - [anon_sym_EQ_TILDE] = ACTIONS(869), - [anon_sym_BANG_TILDE] = ACTIONS(869), - [anon_sym_bit_DASHand] = ACTIONS(869), - [anon_sym_bit_DASHxor] = ACTIONS(869), - [anon_sym_bit_DASHor] = ACTIONS(869), - [anon_sym_and] = ACTIONS(869), - [anon_sym_xor] = ACTIONS(869), - [anon_sym_or] = ACTIONS(869), - [anon_sym_DOT_DOT_LT] = ACTIONS(869), - [anon_sym_DOT_DOT] = ACTIONS(869), - [anon_sym_DOT_DOT_EQ] = ACTIONS(869), - [sym_val_nothing] = ACTIONS(869), - [anon_sym_true] = ACTIONS(869), - [anon_sym_false] = ACTIONS(869), - [aux_sym_val_number_token1] = ACTIONS(869), - [aux_sym_val_number_token2] = ACTIONS(869), - [aux_sym_val_number_token3] = ACTIONS(869), - [aux_sym_val_number_token4] = ACTIONS(869), - [aux_sym_val_number_token5] = ACTIONS(869), - [anon_sym_inf] = ACTIONS(869), - [anon_sym_DASHinf] = ACTIONS(869), - [anon_sym_NaN] = ACTIONS(869), - [anon_sym_0b] = ACTIONS(869), - [anon_sym_0o] = ACTIONS(869), - [anon_sym_0x] = ACTIONS(869), - [sym_val_date] = ACTIONS(869), - [anon_sym_DQUOTE] = ACTIONS(869), - [sym__str_single_quotes] = ACTIONS(869), - [sym__str_back_ticks] = ACTIONS(869), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), - [anon_sym_err_GT] = ACTIONS(869), - [anon_sym_out_GT] = ACTIONS(869), - [anon_sym_e_GT] = ACTIONS(869), - [anon_sym_o_GT] = ACTIONS(869), - [anon_sym_err_PLUSout_GT] = ACTIONS(869), - [anon_sym_out_PLUSerr_GT] = ACTIONS(869), - [anon_sym_o_PLUSe_GT] = ACTIONS(869), - [anon_sym_e_PLUSo_GT] = ACTIONS(869), - [sym_short_flag] = ACTIONS(869), - [aux_sym_unquoted_token1] = ACTIONS(869), + [388] = { + [sym__command_name] = STATE(669), + [sym_scope_pattern] = STATE(645), + [sym_wild_card] = STATE(660), + [sym_command_list] = STATE(656), + [sym_val_string] = STATE(536), + [sym__str_double_quotes] = STATE(526), + [sym_comment] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(1007), + [anon_sym_export] = ACTIONS(1005), + [anon_sym_alias] = ACTIONS(1005), + [anon_sym_let] = ACTIONS(1005), + [anon_sym_let_DASHenv] = ACTIONS(1005), + [anon_sym_mut] = ACTIONS(1005), + [anon_sym_const] = ACTIONS(1005), + [anon_sym_SEMI] = ACTIONS(1005), + [sym_cmd_identifier] = ACTIONS(1033), + [anon_sym_LF] = ACTIONS(1007), + [anon_sym_def] = ACTIONS(1005), + [anon_sym_def_DASHenv] = ACTIONS(1005), + [anon_sym_export_DASHenv] = ACTIONS(1005), + [anon_sym_extern] = ACTIONS(1005), + [anon_sym_module] = ACTIONS(1005), + [anon_sym_use] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_DOLLAR] = ACTIONS(1005), + [anon_sym_error] = ACTIONS(1005), + [anon_sym_DASH] = ACTIONS(1005), + [anon_sym_break] = ACTIONS(1005), + [anon_sym_continue] = ACTIONS(1005), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_loop] = ACTIONS(1005), + [anon_sym_while] = ACTIONS(1005), + [anon_sym_do] = ACTIONS(1005), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_match] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_try] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1005), + [anon_sym_source] = ACTIONS(1005), + [anon_sym_source_DASHenv] = ACTIONS(1005), + [anon_sym_register] = ACTIONS(1005), + [anon_sym_hide] = ACTIONS(1005), + [anon_sym_hide_DASHenv] = ACTIONS(1005), + [anon_sym_overlay] = ACTIONS(1005), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_where] = ACTIONS(1005), + [anon_sym_not] = ACTIONS(1005), + [anon_sym_DOT_DOT_LT] = ACTIONS(1005), + [anon_sym_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [sym_val_nothing] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1005), + [anon_sym_false] = ACTIONS(1005), + [aux_sym_val_number_token1] = ACTIONS(1005), + [aux_sym_val_number_token2] = ACTIONS(1005), + [aux_sym_val_number_token3] = ACTIONS(1005), + [aux_sym_val_number_token4] = ACTIONS(1005), + [aux_sym_val_number_token5] = ACTIONS(1005), + [anon_sym_inf] = ACTIONS(1005), + [anon_sym_DASHinf] = ACTIONS(1005), + [anon_sym_NaN] = ACTIONS(1005), + [anon_sym_0b] = ACTIONS(1005), + [anon_sym_0o] = ACTIONS(1005), + [anon_sym_0x] = ACTIONS(1005), + [sym_val_date] = ACTIONS(1005), + [anon_sym_DQUOTE] = ACTIONS(1039), + [sym__str_single_quotes] = ACTIONS(1041), + [sym__str_back_ticks] = ACTIONS(1041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1005), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1005), + [anon_sym_CARET] = ACTIONS(1005), [anon_sym_POUND] = ACTIONS(3), }, - [417] = { - [sym_comment] = STATE(417), - [ts_builtin_sym_end] = ACTIONS(823), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(823), - [anon_sym_LBRACK] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_DOLLAR] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(821), - [anon_sym_DASH_DASH] = ACTIONS(821), - [anon_sym_DASH] = ACTIONS(821), - [anon_sym_in] = ACTIONS(821), - [anon_sym_LBRACE] = ACTIONS(821), - [anon_sym_STAR] = ACTIONS(821), - [anon_sym_STAR_STAR] = ACTIONS(821), - [anon_sym_PLUS_PLUS] = ACTIONS(821), - [anon_sym_SLASH] = ACTIONS(821), - [anon_sym_mod] = ACTIONS(821), - [anon_sym_SLASH_SLASH] = ACTIONS(821), - [anon_sym_PLUS] = ACTIONS(821), - [anon_sym_bit_DASHshl] = ACTIONS(821), - [anon_sym_bit_DASHshr] = ACTIONS(821), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_LT2] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_not_DASHin] = ACTIONS(821), - [anon_sym_starts_DASHwith] = ACTIONS(821), - [anon_sym_ends_DASHwith] = ACTIONS(821), - [anon_sym_EQ_TILDE] = ACTIONS(821), - [anon_sym_BANG_TILDE] = ACTIONS(821), - [anon_sym_bit_DASHand] = ACTIONS(821), - [anon_sym_bit_DASHxor] = ACTIONS(821), - [anon_sym_bit_DASHor] = ACTIONS(821), - [anon_sym_and] = ACTIONS(821), - [anon_sym_xor] = ACTIONS(821), - [anon_sym_or] = ACTIONS(821), - [anon_sym_DOT_DOT_LT] = ACTIONS(821), - [anon_sym_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(821), - [sym_val_nothing] = ACTIONS(821), - [anon_sym_true] = ACTIONS(821), - [anon_sym_false] = ACTIONS(821), - [aux_sym_val_number_token1] = ACTIONS(821), - [aux_sym_val_number_token2] = ACTIONS(821), - [aux_sym_val_number_token3] = ACTIONS(821), - [aux_sym_val_number_token4] = ACTIONS(821), - [aux_sym_val_number_token5] = ACTIONS(821), - [anon_sym_inf] = ACTIONS(821), - [anon_sym_DASHinf] = ACTIONS(821), - [anon_sym_NaN] = ACTIONS(821), - [anon_sym_0b] = ACTIONS(821), - [anon_sym_0o] = ACTIONS(821), - [anon_sym_0x] = ACTIONS(821), - [sym_val_date] = ACTIONS(821), - [anon_sym_DQUOTE] = ACTIONS(821), - [sym__str_single_quotes] = ACTIONS(821), - [sym__str_back_ticks] = ACTIONS(821), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(821), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(821), - [anon_sym_err_GT] = ACTIONS(821), - [anon_sym_out_GT] = ACTIONS(821), - [anon_sym_e_GT] = ACTIONS(821), - [anon_sym_o_GT] = ACTIONS(821), - [anon_sym_err_PLUSout_GT] = ACTIONS(821), - [anon_sym_out_PLUSerr_GT] = ACTIONS(821), - [anon_sym_o_PLUSe_GT] = ACTIONS(821), - [anon_sym_e_PLUSo_GT] = ACTIONS(821), - [sym_short_flag] = ACTIONS(821), - [aux_sym_unquoted_token1] = ACTIONS(821), + [389] = { + [sym__flag] = STATE(468), + [sym_long_flag] = STATE(471), + [sym_comment] = STATE(389), + [aux_sym_overlay_use_repeat1] = STATE(389), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_def_DASHenv] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [sym_val_nothing] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym_val_number_token1] = ACTIONS(1249), + [aux_sym_val_number_token2] = ACTIONS(1249), + [aux_sym_val_number_token3] = ACTIONS(1249), + [aux_sym_val_number_token4] = ACTIONS(1249), + [aux_sym_val_number_token5] = ACTIONS(1249), + [anon_sym_inf] = ACTIONS(1249), + [anon_sym_DASHinf] = ACTIONS(1249), + [anon_sym_NaN] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [sym_short_flag] = ACTIONS(1256), [anon_sym_POUND] = ACTIONS(3), }, - [418] = { - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(933), + [390] = { + [sym_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(789), + [anon_sym_SEMI] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_PIPE] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_GT] = ACTIONS(787), + [anon_sym_DASH_DASH] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_in] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_STAR] = ACTIONS(787), + [anon_sym_STAR_STAR] = ACTIONS(787), + [anon_sym_PLUS_PLUS] = ACTIONS(787), + [anon_sym_SLASH] = ACTIONS(787), + [anon_sym_mod] = ACTIONS(787), + [anon_sym_SLASH_SLASH] = ACTIONS(787), + [anon_sym_PLUS] = ACTIONS(787), + [anon_sym_bit_DASHshl] = ACTIONS(787), + [anon_sym_bit_DASHshr] = ACTIONS(787), + [anon_sym_EQ_EQ] = ACTIONS(787), + [anon_sym_BANG_EQ] = ACTIONS(787), + [anon_sym_LT2] = ACTIONS(787), + [anon_sym_LT_EQ] = ACTIONS(787), + [anon_sym_GT_EQ] = ACTIONS(787), + [anon_sym_not_DASHin] = ACTIONS(787), + [anon_sym_starts_DASHwith] = ACTIONS(787), + [anon_sym_ends_DASHwith] = ACTIONS(787), + [anon_sym_EQ_TILDE] = ACTIONS(787), + [anon_sym_BANG_TILDE] = ACTIONS(787), + [anon_sym_bit_DASHand] = ACTIONS(787), + [anon_sym_bit_DASHxor] = ACTIONS(787), + [anon_sym_bit_DASHor] = ACTIONS(787), + [anon_sym_and] = ACTIONS(787), + [anon_sym_xor] = ACTIONS(787), + [anon_sym_or] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [aux_sym_val_number_token1] = ACTIONS(787), + [aux_sym_val_number_token2] = ACTIONS(787), + [aux_sym_val_number_token3] = ACTIONS(787), + [aux_sym_val_number_token4] = ACTIONS(787), + [aux_sym_val_number_token5] = ACTIONS(787), + [anon_sym_inf] = ACTIONS(787), + [anon_sym_DASHinf] = ACTIONS(787), + [anon_sym_NaN] = ACTIONS(787), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_err_GT] = ACTIONS(787), + [anon_sym_out_GT] = ACTIONS(787), + [anon_sym_e_GT] = ACTIONS(787), + [anon_sym_o_GT] = ACTIONS(787), + [anon_sym_err_PLUSout_GT] = ACTIONS(787), + [anon_sym_out_PLUSerr_GT] = ACTIONS(787), + [anon_sym_o_PLUSe_GT] = ACTIONS(787), + [anon_sym_e_PLUSo_GT] = ACTIONS(787), + [sym_short_flag] = ACTIONS(787), + [aux_sym_unquoted_token1] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(3), + }, + [391] = { + [sym_comment] = STATE(391), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_RPAREN] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1141), + [anon_sym_xor] = ACTIONS(1143), + [anon_sym_or] = ACTIONS(1163), + [anon_sym_DOT_DOT_LT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), + [sym_val_nothing] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [aux_sym_val_number_token1] = ACTIONS(1259), + [aux_sym_val_number_token2] = ACTIONS(1259), + [aux_sym_val_number_token3] = ACTIONS(1259), + [aux_sym_val_number_token4] = ACTIONS(1259), + [aux_sym_val_number_token5] = ACTIONS(1259), + [anon_sym_inf] = ACTIONS(1259), + [anon_sym_DASHinf] = ACTIONS(1259), + [anon_sym_NaN] = ACTIONS(1259), + [anon_sym_0b] = ACTIONS(1259), + [anon_sym_0o] = ACTIONS(1259), + [anon_sym_0x] = ACTIONS(1259), + [sym_val_date] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym__str_single_quotes] = ACTIONS(1259), + [sym__str_back_ticks] = ACTIONS(1259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), + [anon_sym_err_GT] = ACTIONS(1259), + [anon_sym_out_GT] = ACTIONS(1259), + [anon_sym_e_GT] = ACTIONS(1259), + [anon_sym_o_GT] = ACTIONS(1259), + [anon_sym_err_PLUSout_GT] = ACTIONS(1259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), + [anon_sym_o_PLUSe_GT] = ACTIONS(1259), + [anon_sym_e_PLUSo_GT] = ACTIONS(1259), + [sym_short_flag] = ACTIONS(1259), + [aux_sym_unquoted_token1] = ACTIONS(1259), + [anon_sym_POUND] = ACTIONS(3), + }, + [392] = { + [sym_comment] = STATE(392), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_DASH_DASH] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_in] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_STAR_STAR] = ACTIONS(923), + [anon_sym_PLUS_PLUS] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_bit_DASHshl] = ACTIONS(923), + [anon_sym_bit_DASHshr] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_LT2] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_not_DASHin] = ACTIONS(923), + [anon_sym_starts_DASHwith] = ACTIONS(923), + [anon_sym_ends_DASHwith] = ACTIONS(923), + [anon_sym_EQ_TILDE] = ACTIONS(923), + [anon_sym_BANG_TILDE] = ACTIONS(923), + [anon_sym_bit_DASHand] = ACTIONS(923), + [anon_sym_bit_DASHxor] = ACTIONS(923), + [anon_sym_bit_DASHor] = ACTIONS(923), + [anon_sym_and] = ACTIONS(923), + [anon_sym_xor] = ACTIONS(923), + [anon_sym_or] = ACTIONS(923), + [anon_sym_DOT_DOT_LT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [sym_val_nothing] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [aux_sym_val_number_token1] = ACTIONS(923), + [aux_sym_val_number_token2] = ACTIONS(923), + [aux_sym_val_number_token3] = ACTIONS(923), + [aux_sym_val_number_token4] = ACTIONS(923), + [aux_sym_val_number_token5] = ACTIONS(923), + [anon_sym_inf] = ACTIONS(923), + [anon_sym_DASHinf] = ACTIONS(923), + [anon_sym_NaN] = ACTIONS(923), + [anon_sym_0b] = ACTIONS(923), + [anon_sym_0o] = ACTIONS(923), + [anon_sym_0x] = ACTIONS(923), + [sym_val_date] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym__str_single_quotes] = ACTIONS(923), + [sym__str_back_ticks] = ACTIONS(923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_err_GT] = ACTIONS(923), + [anon_sym_out_GT] = ACTIONS(923), + [anon_sym_e_GT] = ACTIONS(923), + [anon_sym_o_GT] = ACTIONS(923), + [anon_sym_err_PLUSout_GT] = ACTIONS(923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(923), + [anon_sym_o_PLUSe_GT] = ACTIONS(923), + [anon_sym_e_PLUSo_GT] = ACTIONS(923), + [sym_short_flag] = ACTIONS(923), + [aux_sym_unquoted_token1] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(3), + }, + [393] = { + [sym_comment] = STATE(393), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_RPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_RBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), + [anon_sym_POUND] = ACTIONS(3), + }, + [394] = { + [sym_comment] = STATE(394), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_bit_DASHshl] = ACTIONS(885), + [anon_sym_bit_DASHshr] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_not_DASHin] = ACTIONS(885), + [anon_sym_starts_DASHwith] = ACTIONS(885), + [anon_sym_ends_DASHwith] = ACTIONS(885), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_bit_DASHand] = ACTIONS(885), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_DOT_DOT_LT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [sym_val_nothing] = ACTIONS(885), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [aux_sym_val_number_token1] = ACTIONS(885), + [aux_sym_val_number_token2] = ACTIONS(885), + [aux_sym_val_number_token3] = ACTIONS(885), + [aux_sym_val_number_token4] = ACTIONS(885), + [aux_sym_val_number_token5] = ACTIONS(885), + [anon_sym_inf] = ACTIONS(885), + [anon_sym_DASHinf] = ACTIONS(885), + [anon_sym_NaN] = ACTIONS(885), + [anon_sym_0b] = ACTIONS(885), + [anon_sym_0o] = ACTIONS(885), + [anon_sym_0x] = ACTIONS(885), + [sym_val_date] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [sym__str_single_quotes] = ACTIONS(885), + [sym__str_back_ticks] = ACTIONS(885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), + [anon_sym_err_GT] = ACTIONS(885), + [anon_sym_out_GT] = ACTIONS(885), + [anon_sym_e_GT] = ACTIONS(885), + [anon_sym_o_GT] = ACTIONS(885), + [anon_sym_err_PLUSout_GT] = ACTIONS(885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(885), + [anon_sym_o_PLUSe_GT] = ACTIONS(885), + [anon_sym_e_PLUSo_GT] = ACTIONS(885), + [sym_short_flag] = ACTIONS(885), + [aux_sym_unquoted_token1] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(3), + }, + [395] = { + [sym_comment] = STATE(395), [anon_sym_SEMI] = ACTIONS(931), [anon_sym_LF] = ACTIONS(933), [anon_sym_LBRACK] = ACTIONS(931), [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), [anon_sym_PIPE] = ACTIONS(931), [anon_sym_DOLLAR] = ACTIONS(931), [anon_sym_GT] = ACTIONS(931), @@ -81243,6 +79616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(931), [anon_sym_in] = ACTIONS(931), [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), [anon_sym_STAR] = ACTIONS(931), [anon_sym_STAR_STAR] = ACTIONS(931), [anon_sym_PLUS_PLUS] = ACTIONS(931), @@ -81303,156 +79677,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(3), }, - [419] = { - [sym_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(825), - [anon_sym_LF] = ACTIONS(827), - [anon_sym_LBRACK] = ACTIONS(825), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PIPE] = ACTIONS(825), - [anon_sym_DOLLAR] = ACTIONS(825), - [anon_sym_GT] = ACTIONS(825), - [anon_sym_DASH_DASH] = ACTIONS(825), - [anon_sym_DASH] = ACTIONS(825), - [anon_sym_in] = ACTIONS(825), - [anon_sym_LBRACE] = ACTIONS(825), - [anon_sym_STAR] = ACTIONS(825), - [anon_sym_STAR_STAR] = ACTIONS(825), - [anon_sym_PLUS_PLUS] = ACTIONS(825), - [anon_sym_SLASH] = ACTIONS(825), - [anon_sym_mod] = ACTIONS(825), - [anon_sym_SLASH_SLASH] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(825), - [anon_sym_bit_DASHshl] = ACTIONS(825), - [anon_sym_bit_DASHshr] = ACTIONS(825), - [anon_sym_EQ_EQ] = ACTIONS(825), - [anon_sym_BANG_EQ] = ACTIONS(825), - [anon_sym_LT2] = ACTIONS(825), - [anon_sym_LT_EQ] = ACTIONS(825), - [anon_sym_GT_EQ] = ACTIONS(825), - [anon_sym_not_DASHin] = ACTIONS(825), - [anon_sym_starts_DASHwith] = ACTIONS(825), - [anon_sym_ends_DASHwith] = ACTIONS(825), - [anon_sym_EQ_TILDE] = ACTIONS(825), - [anon_sym_BANG_TILDE] = ACTIONS(825), - [anon_sym_bit_DASHand] = ACTIONS(825), - [anon_sym_bit_DASHxor] = ACTIONS(825), - [anon_sym_bit_DASHor] = ACTIONS(825), - [anon_sym_and] = ACTIONS(825), - [anon_sym_xor] = ACTIONS(825), - [anon_sym_or] = ACTIONS(825), - [anon_sym_DOT_DOT_LT] = ACTIONS(825), - [anon_sym_DOT_DOT] = ACTIONS(825), - [anon_sym_DOT_DOT_EQ] = ACTIONS(825), - [sym_val_nothing] = ACTIONS(825), - [anon_sym_true] = ACTIONS(825), - [anon_sym_false] = ACTIONS(825), - [aux_sym_val_number_token1] = ACTIONS(825), - [aux_sym_val_number_token2] = ACTIONS(825), - [aux_sym_val_number_token3] = ACTIONS(825), - [aux_sym_val_number_token4] = ACTIONS(825), - [aux_sym_val_number_token5] = ACTIONS(825), - [anon_sym_inf] = ACTIONS(825), - [anon_sym_DASHinf] = ACTIONS(825), - [anon_sym_NaN] = ACTIONS(825), - [anon_sym_0b] = ACTIONS(825), - [anon_sym_0o] = ACTIONS(825), - [anon_sym_0x] = ACTIONS(825), - [sym_val_date] = ACTIONS(825), - [anon_sym_DQUOTE] = ACTIONS(825), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(825), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(825), - [anon_sym_err_GT] = ACTIONS(825), - [anon_sym_out_GT] = ACTIONS(825), - [anon_sym_e_GT] = ACTIONS(825), - [anon_sym_o_GT] = ACTIONS(825), - [anon_sym_err_PLUSout_GT] = ACTIONS(825), - [anon_sym_out_PLUSerr_GT] = ACTIONS(825), - [anon_sym_o_PLUSe_GT] = ACTIONS(825), - [anon_sym_e_PLUSo_GT] = ACTIONS(825), - [sym_short_flag] = ACTIONS(825), - [aux_sym_unquoted_token1] = ACTIONS(825), + [396] = { + [sym_comment] = STATE(396), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_RPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1017), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_RBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1023), + [anon_sym_STAR_STAR] = ACTIONS(1025), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1023), + [anon_sym_mod] = ACTIONS(1023), + [anon_sym_SLASH_SLASH] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_bit_DASHshl] = ACTIONS(1027), + [anon_sym_bit_DASHshr] = ACTIONS(1027), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_LT2] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_not_DASHin] = ACTIONS(1021), + [anon_sym_starts_DASHwith] = ACTIONS(1021), + [anon_sym_ends_DASHwith] = ACTIONS(1021), + [anon_sym_EQ_TILDE] = ACTIONS(1029), + [anon_sym_BANG_TILDE] = ACTIONS(1029), + [anon_sym_bit_DASHand] = ACTIONS(1031), + [anon_sym_bit_DASHxor] = ACTIONS(1137), + [anon_sym_bit_DASHor] = ACTIONS(1139), + [anon_sym_and] = ACTIONS(1141), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [420] = { - [sym_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(875), - [anon_sym_SEMI] = ACTIONS(873), - [anon_sym_LF] = ACTIONS(875), - [anon_sym_LBRACK] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(873), - [anon_sym_PIPE] = ACTIONS(873), - [anon_sym_DOLLAR] = ACTIONS(873), - [anon_sym_GT] = ACTIONS(873), - [anon_sym_DASH_DASH] = ACTIONS(873), - [anon_sym_DASH] = ACTIONS(873), - [anon_sym_in] = ACTIONS(873), - [anon_sym_LBRACE] = ACTIONS(873), - [anon_sym_STAR] = ACTIONS(873), - [anon_sym_STAR_STAR] = ACTIONS(873), - [anon_sym_PLUS_PLUS] = ACTIONS(873), - [anon_sym_SLASH] = ACTIONS(873), - [anon_sym_mod] = ACTIONS(873), - [anon_sym_SLASH_SLASH] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(873), - [anon_sym_bit_DASHshl] = ACTIONS(873), - [anon_sym_bit_DASHshr] = ACTIONS(873), - [anon_sym_EQ_EQ] = ACTIONS(873), - [anon_sym_BANG_EQ] = ACTIONS(873), - [anon_sym_LT2] = ACTIONS(873), - [anon_sym_LT_EQ] = ACTIONS(873), - [anon_sym_GT_EQ] = ACTIONS(873), - [anon_sym_not_DASHin] = ACTIONS(873), - [anon_sym_starts_DASHwith] = ACTIONS(873), - [anon_sym_ends_DASHwith] = ACTIONS(873), - [anon_sym_EQ_TILDE] = ACTIONS(873), - [anon_sym_BANG_TILDE] = ACTIONS(873), - [anon_sym_bit_DASHand] = ACTIONS(873), - [anon_sym_bit_DASHxor] = ACTIONS(873), - [anon_sym_bit_DASHor] = ACTIONS(873), - [anon_sym_and] = ACTIONS(873), - [anon_sym_xor] = ACTIONS(873), - [anon_sym_or] = ACTIONS(873), - [anon_sym_DOT_DOT_LT] = ACTIONS(873), - [anon_sym_DOT_DOT] = ACTIONS(873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(873), - [sym_val_nothing] = ACTIONS(873), - [anon_sym_true] = ACTIONS(873), - [anon_sym_false] = ACTIONS(873), - [aux_sym_val_number_token1] = ACTIONS(873), - [aux_sym_val_number_token2] = ACTIONS(873), - [aux_sym_val_number_token3] = ACTIONS(873), - [aux_sym_val_number_token4] = ACTIONS(873), - [aux_sym_val_number_token5] = ACTIONS(873), - [anon_sym_inf] = ACTIONS(873), - [anon_sym_DASHinf] = ACTIONS(873), - [anon_sym_NaN] = ACTIONS(873), - [anon_sym_0b] = ACTIONS(873), - [anon_sym_0o] = ACTIONS(873), - [anon_sym_0x] = ACTIONS(873), - [sym_val_date] = ACTIONS(873), - [anon_sym_DQUOTE] = ACTIONS(873), - [sym__str_single_quotes] = ACTIONS(873), - [sym__str_back_ticks] = ACTIONS(873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), - [anon_sym_err_GT] = ACTIONS(873), - [anon_sym_out_GT] = ACTIONS(873), - [anon_sym_e_GT] = ACTIONS(873), - [anon_sym_o_GT] = ACTIONS(873), - [anon_sym_err_PLUSout_GT] = ACTIONS(873), - [anon_sym_out_PLUSerr_GT] = ACTIONS(873), - [anon_sym_o_PLUSe_GT] = ACTIONS(873), - [anon_sym_e_PLUSo_GT] = ACTIONS(873), - [sym_short_flag] = ACTIONS(873), - [aux_sym_unquoted_token1] = ACTIONS(873), + [397] = { + [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [421] = { - [sym_comment] = STATE(421), + [398] = { + [sym_comment] = STATE(398), + [ts_builtin_sym_end] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LF] = ACTIONS(911), + [anon_sym_LBRACK] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(909), + [anon_sym_PIPE] = ACTIONS(909), + [anon_sym_DOLLAR] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(909), + [anon_sym_DASH_DASH] = ACTIONS(909), + [anon_sym_DASH] = ACTIONS(909), + [anon_sym_in] = ACTIONS(909), + [anon_sym_LBRACE] = ACTIONS(909), + [anon_sym_STAR] = ACTIONS(909), + [anon_sym_STAR_STAR] = ACTIONS(909), + [anon_sym_PLUS_PLUS] = ACTIONS(909), + [anon_sym_SLASH] = ACTIONS(909), + [anon_sym_mod] = ACTIONS(909), + [anon_sym_SLASH_SLASH] = ACTIONS(909), + [anon_sym_PLUS] = ACTIONS(909), + [anon_sym_bit_DASHshl] = ACTIONS(909), + [anon_sym_bit_DASHshr] = ACTIONS(909), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_LT2] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_not_DASHin] = ACTIONS(909), + [anon_sym_starts_DASHwith] = ACTIONS(909), + [anon_sym_ends_DASHwith] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(909), + [anon_sym_BANG_TILDE] = ACTIONS(909), + [anon_sym_bit_DASHand] = ACTIONS(909), + [anon_sym_bit_DASHxor] = ACTIONS(909), + [anon_sym_bit_DASHor] = ACTIONS(909), + [anon_sym_and] = ACTIONS(909), + [anon_sym_xor] = ACTIONS(909), + [anon_sym_or] = ACTIONS(909), + [anon_sym_DOT_DOT_LT] = ACTIONS(909), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [sym_val_nothing] = ACTIONS(909), + [anon_sym_true] = ACTIONS(909), + [anon_sym_false] = ACTIONS(909), + [aux_sym_val_number_token1] = ACTIONS(909), + [aux_sym_val_number_token2] = ACTIONS(909), + [aux_sym_val_number_token3] = ACTIONS(909), + [aux_sym_val_number_token4] = ACTIONS(909), + [aux_sym_val_number_token5] = ACTIONS(909), + [anon_sym_inf] = ACTIONS(909), + [anon_sym_DASHinf] = ACTIONS(909), + [anon_sym_NaN] = ACTIONS(909), + [anon_sym_0b] = ACTIONS(909), + [anon_sym_0o] = ACTIONS(909), + [anon_sym_0x] = ACTIONS(909), + [sym_val_date] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(909), + [sym__str_single_quotes] = ACTIONS(909), + [sym__str_back_ticks] = ACTIONS(909), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(909), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(909), + [anon_sym_err_GT] = ACTIONS(909), + [anon_sym_out_GT] = ACTIONS(909), + [anon_sym_e_GT] = ACTIONS(909), + [anon_sym_o_GT] = ACTIONS(909), + [anon_sym_err_PLUSout_GT] = ACTIONS(909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(909), + [anon_sym_o_PLUSe_GT] = ACTIONS(909), + [anon_sym_e_PLUSo_GT] = ACTIONS(909), + [sym_short_flag] = ACTIONS(909), + [aux_sym_unquoted_token1] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(3), + }, + [399] = { + [sym_comment] = STATE(399), [ts_builtin_sym_end] = ACTIONS(835), [anon_sym_SEMI] = ACTIONS(833), [anon_sym_LF] = ACTIONS(835), @@ -81525,82 +79974,526 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(833), [anon_sym_POUND] = ACTIONS(3), }, - [422] = { - [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), + [400] = { + [sym_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, + [401] = { + [sym_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), [anon_sym_EQ_EQ] = ACTIONS(1263), [anon_sym_BANG_EQ] = ACTIONS(1263), [anon_sym_LT2] = ACTIONS(1263), [anon_sym_LT_EQ] = ACTIONS(1263), [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(1283), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1285), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [423] = { - [sym_comment] = STATE(423), + [403] = { + [sym_comment] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(881), + [anon_sym_LF] = ACTIONS(883), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_PIPE] = ACTIONS(881), + [anon_sym_DOLLAR] = ACTIONS(881), + [anon_sym_GT] = ACTIONS(881), + [anon_sym_DASH_DASH] = ACTIONS(881), + [anon_sym_DASH] = ACTIONS(881), + [anon_sym_in] = ACTIONS(881), + [anon_sym_LBRACE] = ACTIONS(881), + [anon_sym_STAR] = ACTIONS(881), + [anon_sym_STAR_STAR] = ACTIONS(881), + [anon_sym_PLUS_PLUS] = ACTIONS(881), + [anon_sym_SLASH] = ACTIONS(881), + [anon_sym_mod] = ACTIONS(881), + [anon_sym_SLASH_SLASH] = ACTIONS(881), + [anon_sym_PLUS] = ACTIONS(881), + [anon_sym_bit_DASHshl] = ACTIONS(881), + [anon_sym_bit_DASHshr] = ACTIONS(881), + [anon_sym_EQ_EQ] = ACTIONS(881), + [anon_sym_BANG_EQ] = ACTIONS(881), + [anon_sym_LT2] = ACTIONS(881), + [anon_sym_LT_EQ] = ACTIONS(881), + [anon_sym_GT_EQ] = ACTIONS(881), + [anon_sym_not_DASHin] = ACTIONS(881), + [anon_sym_starts_DASHwith] = ACTIONS(881), + [anon_sym_ends_DASHwith] = ACTIONS(881), + [anon_sym_EQ_TILDE] = ACTIONS(881), + [anon_sym_BANG_TILDE] = ACTIONS(881), + [anon_sym_bit_DASHand] = ACTIONS(881), + [anon_sym_bit_DASHxor] = ACTIONS(881), + [anon_sym_bit_DASHor] = ACTIONS(881), + [anon_sym_and] = ACTIONS(881), + [anon_sym_xor] = ACTIONS(881), + [anon_sym_or] = ACTIONS(881), + [anon_sym_DOT_DOT_LT] = ACTIONS(881), + [anon_sym_DOT_DOT] = ACTIONS(881), + [anon_sym_DOT_DOT_EQ] = ACTIONS(881), + [sym_val_nothing] = ACTIONS(881), + [anon_sym_true] = ACTIONS(881), + [anon_sym_false] = ACTIONS(881), + [aux_sym_val_number_token1] = ACTIONS(881), + [aux_sym_val_number_token2] = ACTIONS(881), + [aux_sym_val_number_token3] = ACTIONS(881), + [aux_sym_val_number_token4] = ACTIONS(881), + [aux_sym_val_number_token5] = ACTIONS(881), + [anon_sym_inf] = ACTIONS(881), + [anon_sym_DASHinf] = ACTIONS(881), + [anon_sym_NaN] = ACTIONS(881), + [anon_sym_0b] = ACTIONS(881), + [anon_sym_0o] = ACTIONS(881), + [anon_sym_0x] = ACTIONS(881), + [sym_val_date] = ACTIONS(881), + [anon_sym_DQUOTE] = ACTIONS(881), + [sym__str_single_quotes] = ACTIONS(881), + [sym__str_back_ticks] = ACTIONS(881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(881), + [anon_sym_err_GT] = ACTIONS(881), + [anon_sym_out_GT] = ACTIONS(881), + [anon_sym_e_GT] = ACTIONS(881), + [anon_sym_o_GT] = ACTIONS(881), + [anon_sym_err_PLUSout_GT] = ACTIONS(881), + [anon_sym_out_PLUSerr_GT] = ACTIONS(881), + [anon_sym_o_PLUSe_GT] = ACTIONS(881), + [anon_sym_e_PLUSo_GT] = ACTIONS(881), + [sym_short_flag] = ACTIONS(881), + [aux_sym_unquoted_token1] = ACTIONS(881), + [anon_sym_POUND] = ACTIONS(3), + }, + [404] = { + [sym_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(129), + [anon_sym_DOT_DOT] = ACTIONS(129), + [anon_sym_DOT_DOT_EQ] = ACTIONS(129), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [sym_short_flag] = ACTIONS(901), + [aux_sym_unquoted_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(935), + [anon_sym_LF] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_in] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_STAR_STAR] = ACTIONS(935), + [anon_sym_PLUS_PLUS] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_bit_DASHshl] = ACTIONS(935), + [anon_sym_bit_DASHshr] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(935), + [anon_sym_BANG_EQ] = ACTIONS(935), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(935), + [anon_sym_not_DASHin] = ACTIONS(935), + [anon_sym_starts_DASHwith] = ACTIONS(935), + [anon_sym_ends_DASHwith] = ACTIONS(935), + [anon_sym_EQ_TILDE] = ACTIONS(935), + [anon_sym_BANG_TILDE] = ACTIONS(935), + [anon_sym_bit_DASHand] = ACTIONS(935), + [anon_sym_bit_DASHxor] = ACTIONS(935), + [anon_sym_bit_DASHor] = ACTIONS(935), + [anon_sym_and] = ACTIONS(935), + [anon_sym_xor] = ACTIONS(935), + [anon_sym_or] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [sym_val_nothing] = ACTIONS(935), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [aux_sym_val_number_token1] = ACTIONS(935), + [aux_sym_val_number_token2] = ACTIONS(935), + [aux_sym_val_number_token3] = ACTIONS(935), + [aux_sym_val_number_token4] = ACTIONS(935), + [aux_sym_val_number_token5] = ACTIONS(935), + [anon_sym_inf] = ACTIONS(935), + [anon_sym_DASHinf] = ACTIONS(935), + [anon_sym_NaN] = ACTIONS(935), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(935), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(935), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [sym_short_flag] = ACTIONS(935), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(3), + }, + [406] = { + [sym_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(903), + [anon_sym_SEMI] = ACTIONS(901), + [anon_sym_LF] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_DASH_DASH] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_in] = ACTIONS(901), + [anon_sym_LBRACE] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_STAR_STAR] = ACTIONS(901), + [anon_sym_PLUS_PLUS] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_bit_DASHshl] = ACTIONS(901), + [anon_sym_bit_DASHshr] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(901), + [anon_sym_BANG_EQ] = ACTIONS(901), + [anon_sym_LT2] = ACTIONS(901), + [anon_sym_LT_EQ] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(901), + [anon_sym_not_DASHin] = ACTIONS(901), + [anon_sym_starts_DASHwith] = ACTIONS(901), + [anon_sym_ends_DASHwith] = ACTIONS(901), + [anon_sym_EQ_TILDE] = ACTIONS(901), + [anon_sym_BANG_TILDE] = ACTIONS(901), + [anon_sym_bit_DASHand] = ACTIONS(901), + [anon_sym_bit_DASHxor] = ACTIONS(901), + [anon_sym_bit_DASHor] = ACTIONS(901), + [anon_sym_and] = ACTIONS(901), + [anon_sym_xor] = ACTIONS(901), + [anon_sym_or] = ACTIONS(901), + [anon_sym_DOT_DOT_LT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(901), + [sym_val_nothing] = ACTIONS(901), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [aux_sym_val_number_token1] = ACTIONS(901), + [aux_sym_val_number_token2] = ACTIONS(901), + [aux_sym_val_number_token3] = ACTIONS(901), + [aux_sym_val_number_token4] = ACTIONS(901), + [aux_sym_val_number_token5] = ACTIONS(901), + [anon_sym_inf] = ACTIONS(901), + [anon_sym_DASHinf] = ACTIONS(901), + [anon_sym_NaN] = ACTIONS(901), + [anon_sym_0b] = ACTIONS(901), + [anon_sym_0o] = ACTIONS(901), + [anon_sym_0x] = ACTIONS(901), + [sym_val_date] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(901), + [sym__str_single_quotes] = ACTIONS(901), + [sym__str_back_ticks] = ACTIONS(901), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(901), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(901), + [anon_sym_err_GT] = ACTIONS(901), + [anon_sym_out_GT] = ACTIONS(901), + [anon_sym_e_GT] = ACTIONS(901), + [anon_sym_o_GT] = ACTIONS(901), + [anon_sym_err_PLUSout_GT] = ACTIONS(901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(901), + [anon_sym_o_PLUSe_GT] = ACTIONS(901), + [anon_sym_e_PLUSo_GT] = ACTIONS(901), + [sym_short_flag] = ACTIONS(901), + [aux_sym_unquoted_token1] = ACTIONS(901), + [anon_sym_POUND] = ACTIONS(3), + }, + [407] = { + [sym_comment] = STATE(407), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -81673,8 +80566,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [424] = { - [sym_comment] = STATE(424), + [408] = { + [sym_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(115), + [anon_sym_SEMI] = ACTIONS(113), + [anon_sym_LF] = ACTIONS(115), + [anon_sym_LBRACK] = ACTIONS(113), + [anon_sym_LPAREN] = ACTIONS(113), + [anon_sym_PIPE] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_GT] = ACTIONS(113), + [anon_sym_DASH_DASH] = ACTIONS(113), + [anon_sym_DASH] = ACTIONS(113), + [anon_sym_in] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR_STAR] = ACTIONS(113), + [anon_sym_PLUS_PLUS] = ACTIONS(113), + [anon_sym_SLASH] = ACTIONS(113), + [anon_sym_mod] = ACTIONS(113), + [anon_sym_SLASH_SLASH] = ACTIONS(113), + [anon_sym_PLUS] = ACTIONS(113), + [anon_sym_bit_DASHshl] = ACTIONS(113), + [anon_sym_bit_DASHshr] = ACTIONS(113), + [anon_sym_EQ_EQ] = ACTIONS(113), + [anon_sym_BANG_EQ] = ACTIONS(113), + [anon_sym_LT2] = ACTIONS(113), + [anon_sym_LT_EQ] = ACTIONS(113), + [anon_sym_GT_EQ] = ACTIONS(113), + [anon_sym_not_DASHin] = ACTIONS(113), + [anon_sym_starts_DASHwith] = ACTIONS(113), + [anon_sym_ends_DASHwith] = ACTIONS(113), + [anon_sym_EQ_TILDE] = ACTIONS(113), + [anon_sym_BANG_TILDE] = ACTIONS(113), + [anon_sym_bit_DASHand] = ACTIONS(113), + [anon_sym_bit_DASHxor] = ACTIONS(113), + [anon_sym_bit_DASHor] = ACTIONS(113), + [anon_sym_and] = ACTIONS(113), + [anon_sym_xor] = ACTIONS(113), + [anon_sym_or] = ACTIONS(113), + [anon_sym_DOT_DOT_LT] = ACTIONS(113), + [anon_sym_DOT_DOT] = ACTIONS(113), + [anon_sym_DOT_DOT_EQ] = ACTIONS(113), + [sym_val_nothing] = ACTIONS(113), + [anon_sym_true] = ACTIONS(113), + [anon_sym_false] = ACTIONS(113), + [aux_sym_val_number_token1] = ACTIONS(113), + [aux_sym_val_number_token2] = ACTIONS(113), + [aux_sym_val_number_token3] = ACTIONS(113), + [aux_sym_val_number_token4] = ACTIONS(113), + [aux_sym_val_number_token5] = ACTIONS(113), + [anon_sym_inf] = ACTIONS(113), + [anon_sym_DASHinf] = ACTIONS(113), + [anon_sym_NaN] = ACTIONS(113), + [anon_sym_0b] = ACTIONS(113), + [anon_sym_0o] = ACTIONS(113), + [anon_sym_0x] = ACTIONS(113), + [sym_val_date] = ACTIONS(113), + [anon_sym_DQUOTE] = ACTIONS(113), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(113), + [anon_sym_err_GT] = ACTIONS(113), + [anon_sym_out_GT] = ACTIONS(113), + [anon_sym_e_GT] = ACTIONS(113), + [anon_sym_o_GT] = ACTIONS(113), + [anon_sym_err_PLUSout_GT] = ACTIONS(113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(113), + [anon_sym_o_PLUSe_GT] = ACTIONS(113), + [anon_sym_e_PLUSo_GT] = ACTIONS(113), + [sym_short_flag] = ACTIONS(113), + [aux_sym_unquoted_token1] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(3), + }, + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_PIPE] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_GT] = ACTIONS(939), + [anon_sym_DASH_DASH] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_in] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_STAR_STAR] = ACTIONS(939), + [anon_sym_PLUS_PLUS] = ACTIONS(939), + [anon_sym_SLASH] = ACTIONS(939), + [anon_sym_mod] = ACTIONS(939), + [anon_sym_SLASH_SLASH] = ACTIONS(939), + [anon_sym_PLUS] = ACTIONS(939), + [anon_sym_bit_DASHshl] = ACTIONS(939), + [anon_sym_bit_DASHshr] = ACTIONS(939), + [anon_sym_EQ_EQ] = ACTIONS(939), + [anon_sym_BANG_EQ] = ACTIONS(939), + [anon_sym_LT2] = ACTIONS(939), + [anon_sym_LT_EQ] = ACTIONS(939), + [anon_sym_GT_EQ] = ACTIONS(939), + [anon_sym_not_DASHin] = ACTIONS(939), + [anon_sym_starts_DASHwith] = ACTIONS(939), + [anon_sym_ends_DASHwith] = ACTIONS(939), + [anon_sym_EQ_TILDE] = ACTIONS(939), + [anon_sym_BANG_TILDE] = ACTIONS(939), + [anon_sym_bit_DASHand] = ACTIONS(939), + [anon_sym_bit_DASHxor] = ACTIONS(939), + [anon_sym_bit_DASHor] = ACTIONS(939), + [anon_sym_and] = ACTIONS(939), + [anon_sym_xor] = ACTIONS(939), + [anon_sym_or] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_err_GT] = ACTIONS(939), + [anon_sym_out_GT] = ACTIONS(939), + [anon_sym_e_GT] = ACTIONS(939), + [anon_sym_o_GT] = ACTIONS(939), + [anon_sym_err_PLUSout_GT] = ACTIONS(939), + [anon_sym_out_PLUSerr_GT] = ACTIONS(939), + [anon_sym_o_PLUSe_GT] = ACTIONS(939), + [anon_sym_e_PLUSo_GT] = ACTIONS(939), + [sym_short_flag] = ACTIONS(939), + [aux_sym_unquoted_token1] = ACTIONS(939), + [anon_sym_POUND] = ACTIONS(3), + }, + [410] = { + [sym_comment] = STATE(410), [ts_builtin_sym_end] = ACTIONS(839), [anon_sym_SEMI] = ACTIONS(837), [anon_sym_LF] = ACTIONS(839), @@ -81747,8 +80788,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(837), [anon_sym_POUND] = ACTIONS(3), }, - [425] = { - [sym_comment] = STATE(425), + [411] = { + [sym_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1285), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [412] = { + [sym_comment] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [413] = { + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(781), + [anon_sym_SEMI] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH_DASH] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_STAR_STAR] = ACTIONS(779), + [anon_sym_PLUS_PLUS] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(779), + [anon_sym_BANG_EQ] = ACTIONS(779), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(779), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(779), + [anon_sym_BANG_TILDE] = ACTIONS(779), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_err_GT] = ACTIONS(779), + [anon_sym_out_GT] = ACTIONS(779), + [anon_sym_e_GT] = ACTIONS(779), + [anon_sym_o_GT] = ACTIONS(779), + [anon_sym_err_PLUSout_GT] = ACTIONS(779), + [anon_sym_out_PLUSerr_GT] = ACTIONS(779), + [anon_sym_o_PLUSe_GT] = ACTIONS(779), + [anon_sym_e_PLUSo_GT] = ACTIONS(779), + [sym_short_flag] = ACTIONS(779), + [aux_sym_unquoted_token1] = ACTIONS(779), + [anon_sym_POUND] = ACTIONS(3), + }, + [414] = { + [sym_comment] = STATE(414), [ts_builtin_sym_end] = ACTIONS(843), [anon_sym_SEMI] = ACTIONS(841), [anon_sym_LF] = ACTIONS(843), @@ -81821,82 +81084,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(841), [anon_sym_POUND] = ACTIONS(3), }, - [426] = { - [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_SEMI] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_PIPE] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH_DASH] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_STAR_STAR] = ACTIONS(768), - [anon_sym_PLUS_PLUS] = ACTIONS(768), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(768), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(768), - [anon_sym_BANG_EQ] = ACTIONS(768), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(768), - [anon_sym_GT_EQ] = ACTIONS(768), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(768), - [anon_sym_BANG_TILDE] = ACTIONS(768), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_err_GT] = ACTIONS(768), - [anon_sym_out_GT] = ACTIONS(768), - [anon_sym_e_GT] = ACTIONS(768), - [anon_sym_o_GT] = ACTIONS(768), - [anon_sym_err_PLUSout_GT] = ACTIONS(768), - [anon_sym_out_PLUSerr_GT] = ACTIONS(768), - [anon_sym_o_PLUSe_GT] = ACTIONS(768), - [anon_sym_e_PLUSo_GT] = ACTIONS(768), - [sym_short_flag] = ACTIONS(768), - [aux_sym_unquoted_token1] = ACTIONS(768), + [415] = { + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(927), + [anon_sym_LF] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_in] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_STAR_STAR] = ACTIONS(927), + [anon_sym_PLUS_PLUS] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_bit_DASHshl] = ACTIONS(927), + [anon_sym_bit_DASHshr] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(927), + [anon_sym_BANG_EQ] = ACTIONS(927), + [anon_sym_LT2] = ACTIONS(927), + [anon_sym_LT_EQ] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(927), + [anon_sym_not_DASHin] = ACTIONS(927), + [anon_sym_starts_DASHwith] = ACTIONS(927), + [anon_sym_ends_DASHwith] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(927), + [anon_sym_BANG_TILDE] = ACTIONS(927), + [anon_sym_bit_DASHand] = ACTIONS(927), + [anon_sym_bit_DASHxor] = ACTIONS(927), + [anon_sym_bit_DASHor] = ACTIONS(927), + [anon_sym_and] = ACTIONS(927), + [anon_sym_xor] = ACTIONS(927), + [anon_sym_or] = ACTIONS(927), + [anon_sym_DOT_DOT_LT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(927), + [sym_val_nothing] = ACTIONS(927), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [aux_sym_val_number_token1] = ACTIONS(927), + [aux_sym_val_number_token2] = ACTIONS(927), + [aux_sym_val_number_token3] = ACTIONS(927), + [aux_sym_val_number_token4] = ACTIONS(927), + [aux_sym_val_number_token5] = ACTIONS(927), + [anon_sym_inf] = ACTIONS(927), + [anon_sym_DASHinf] = ACTIONS(927), + [anon_sym_NaN] = ACTIONS(927), + [anon_sym_0b] = ACTIONS(927), + [anon_sym_0o] = ACTIONS(927), + [anon_sym_0x] = ACTIONS(927), + [sym_val_date] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym__str_single_quotes] = ACTIONS(927), + [sym__str_back_ticks] = ACTIONS(927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), + [anon_sym_err_GT] = ACTIONS(927), + [anon_sym_out_GT] = ACTIONS(927), + [anon_sym_e_GT] = ACTIONS(927), + [anon_sym_o_GT] = ACTIONS(927), + [anon_sym_err_PLUSout_GT] = ACTIONS(927), + [anon_sym_out_PLUSerr_GT] = ACTIONS(927), + [anon_sym_o_PLUSe_GT] = ACTIONS(927), + [anon_sym_e_PLUSo_GT] = ACTIONS(927), + [sym_short_flag] = ACTIONS(927), + [aux_sym_unquoted_token1] = ACTIONS(927), [anon_sym_POUND] = ACTIONS(3), }, - [427] = { - [sym_comment] = STATE(427), + [416] = { + [sym_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), + [anon_sym_POUND] = ACTIONS(3), + }, + [417] = { + [sym_comment] = STATE(417), [ts_builtin_sym_end] = ACTIONS(847), [anon_sym_SEMI] = ACTIONS(845), [anon_sym_LF] = ACTIONS(847), @@ -81969,156 +81306,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(845), [anon_sym_POUND] = ACTIONS(3), }, - [428] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_PIPE] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_GT] = ACTIONS(895), - [anon_sym_DASH_DASH] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_in] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_STAR] = ACTIONS(895), - [anon_sym_STAR_STAR] = ACTIONS(895), - [anon_sym_PLUS_PLUS] = ACTIONS(895), - [anon_sym_SLASH] = ACTIONS(895), - [anon_sym_mod] = ACTIONS(895), - [anon_sym_SLASH_SLASH] = ACTIONS(895), - [anon_sym_PLUS] = ACTIONS(895), - [anon_sym_bit_DASHshl] = ACTIONS(895), - [anon_sym_bit_DASHshr] = ACTIONS(895), - [anon_sym_EQ_EQ] = ACTIONS(895), - [anon_sym_BANG_EQ] = ACTIONS(895), - [anon_sym_LT2] = ACTIONS(895), - [anon_sym_LT_EQ] = ACTIONS(895), - [anon_sym_GT_EQ] = ACTIONS(895), - [anon_sym_not_DASHin] = ACTIONS(895), - [anon_sym_starts_DASHwith] = ACTIONS(895), - [anon_sym_ends_DASHwith] = ACTIONS(895), - [anon_sym_EQ_TILDE] = ACTIONS(895), - [anon_sym_BANG_TILDE] = ACTIONS(895), - [anon_sym_bit_DASHand] = ACTIONS(895), - [anon_sym_bit_DASHxor] = ACTIONS(895), - [anon_sym_bit_DASHor] = ACTIONS(895), - [anon_sym_and] = ACTIONS(895), - [anon_sym_xor] = ACTIONS(895), - [anon_sym_or] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_err_GT] = ACTIONS(895), - [anon_sym_out_GT] = ACTIONS(895), - [anon_sym_e_GT] = ACTIONS(895), - [anon_sym_o_GT] = ACTIONS(895), - [anon_sym_err_PLUSout_GT] = ACTIONS(895), - [anon_sym_out_PLUSerr_GT] = ACTIONS(895), - [anon_sym_o_PLUSe_GT] = ACTIONS(895), - [anon_sym_e_PLUSo_GT] = ACTIONS(895), - [sym_short_flag] = ACTIONS(895), - [aux_sym_unquoted_token1] = ACTIONS(895), + [418] = { + [sym_comment] = STATE(418), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [429] = { - [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(861), - [anon_sym_LF] = ACTIONS(863), - [anon_sym_LBRACK] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(861), - [anon_sym_PIPE] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(861), - [anon_sym_GT] = ACTIONS(861), - [anon_sym_DASH_DASH] = ACTIONS(861), - [anon_sym_DASH] = ACTIONS(861), - [anon_sym_in] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(861), - [anon_sym_STAR] = ACTIONS(861), - [anon_sym_STAR_STAR] = ACTIONS(861), - [anon_sym_PLUS_PLUS] = ACTIONS(861), - [anon_sym_SLASH] = ACTIONS(861), - [anon_sym_mod] = ACTIONS(861), - [anon_sym_SLASH_SLASH] = ACTIONS(861), - [anon_sym_PLUS] = ACTIONS(861), - [anon_sym_bit_DASHshl] = ACTIONS(861), - [anon_sym_bit_DASHshr] = ACTIONS(861), - [anon_sym_EQ_EQ] = ACTIONS(861), - [anon_sym_BANG_EQ] = ACTIONS(861), - [anon_sym_LT2] = ACTIONS(861), - [anon_sym_LT_EQ] = ACTIONS(861), - [anon_sym_GT_EQ] = ACTIONS(861), - [anon_sym_not_DASHin] = ACTIONS(861), - [anon_sym_starts_DASHwith] = ACTIONS(861), - [anon_sym_ends_DASHwith] = ACTIONS(861), - [anon_sym_EQ_TILDE] = ACTIONS(861), - [anon_sym_BANG_TILDE] = ACTIONS(861), - [anon_sym_bit_DASHand] = ACTIONS(861), - [anon_sym_bit_DASHxor] = ACTIONS(861), - [anon_sym_bit_DASHor] = ACTIONS(861), - [anon_sym_and] = ACTIONS(861), - [anon_sym_xor] = ACTIONS(861), - [anon_sym_or] = ACTIONS(861), - [anon_sym_DOT_DOT_LT] = ACTIONS(861), - [anon_sym_DOT_DOT] = ACTIONS(861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(861), - [sym_val_nothing] = ACTIONS(861), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [aux_sym_val_number_token1] = ACTIONS(861), - [aux_sym_val_number_token2] = ACTIONS(861), - [aux_sym_val_number_token3] = ACTIONS(861), - [aux_sym_val_number_token4] = ACTIONS(861), - [aux_sym_val_number_token5] = ACTIONS(861), - [anon_sym_inf] = ACTIONS(861), - [anon_sym_DASHinf] = ACTIONS(861), - [anon_sym_NaN] = ACTIONS(861), - [anon_sym_0b] = ACTIONS(861), - [anon_sym_0o] = ACTIONS(861), - [anon_sym_0x] = ACTIONS(861), - [sym_val_date] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(861), - [sym__str_single_quotes] = ACTIONS(861), - [sym__str_back_ticks] = ACTIONS(861), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), - [anon_sym_err_GT] = ACTIONS(861), - [anon_sym_out_GT] = ACTIONS(861), - [anon_sym_e_GT] = ACTIONS(861), - [anon_sym_o_GT] = ACTIONS(861), - [anon_sym_err_PLUSout_GT] = ACTIONS(861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(861), - [anon_sym_o_PLUSe_GT] = ACTIONS(861), - [anon_sym_e_PLUSo_GT] = ACTIONS(861), - [sym_short_flag] = ACTIONS(861), - [aux_sym_unquoted_token1] = ACTIONS(861), + [419] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(851), + [anon_sym_SEMI] = ACTIONS(849), + [anon_sym_LF] = ACTIONS(851), + [anon_sym_LBRACK] = ACTIONS(849), + [anon_sym_LPAREN] = ACTIONS(849), + [anon_sym_PIPE] = ACTIONS(849), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_GT] = ACTIONS(849), + [anon_sym_DASH_DASH] = ACTIONS(849), + [anon_sym_DASH] = ACTIONS(849), + [anon_sym_in] = ACTIONS(849), + [anon_sym_LBRACE] = ACTIONS(849), + [anon_sym_STAR] = ACTIONS(849), + [anon_sym_STAR_STAR] = ACTIONS(849), + [anon_sym_PLUS_PLUS] = ACTIONS(849), + [anon_sym_SLASH] = ACTIONS(849), + [anon_sym_mod] = ACTIONS(849), + [anon_sym_SLASH_SLASH] = ACTIONS(849), + [anon_sym_PLUS] = ACTIONS(849), + [anon_sym_bit_DASHshl] = ACTIONS(849), + [anon_sym_bit_DASHshr] = ACTIONS(849), + [anon_sym_EQ_EQ] = ACTIONS(849), + [anon_sym_BANG_EQ] = ACTIONS(849), + [anon_sym_LT2] = ACTIONS(849), + [anon_sym_LT_EQ] = ACTIONS(849), + [anon_sym_GT_EQ] = ACTIONS(849), + [anon_sym_not_DASHin] = ACTIONS(849), + [anon_sym_starts_DASHwith] = ACTIONS(849), + [anon_sym_ends_DASHwith] = ACTIONS(849), + [anon_sym_EQ_TILDE] = ACTIONS(849), + [anon_sym_BANG_TILDE] = ACTIONS(849), + [anon_sym_bit_DASHand] = ACTIONS(849), + [anon_sym_bit_DASHxor] = ACTIONS(849), + [anon_sym_bit_DASHor] = ACTIONS(849), + [anon_sym_and] = ACTIONS(849), + [anon_sym_xor] = ACTIONS(849), + [anon_sym_or] = ACTIONS(849), + [anon_sym_DOT_DOT_LT] = ACTIONS(849), + [anon_sym_DOT_DOT] = ACTIONS(849), + [anon_sym_DOT_DOT_EQ] = ACTIONS(849), + [sym_val_nothing] = ACTIONS(849), + [anon_sym_true] = ACTIONS(849), + [anon_sym_false] = ACTIONS(849), + [aux_sym_val_number_token1] = ACTIONS(849), + [aux_sym_val_number_token2] = ACTIONS(849), + [aux_sym_val_number_token3] = ACTIONS(849), + [aux_sym_val_number_token4] = ACTIONS(849), + [aux_sym_val_number_token5] = ACTIONS(849), + [anon_sym_inf] = ACTIONS(849), + [anon_sym_DASHinf] = ACTIONS(849), + [anon_sym_NaN] = ACTIONS(849), + [anon_sym_0b] = ACTIONS(849), + [anon_sym_0o] = ACTIONS(849), + [anon_sym_0x] = ACTIONS(849), + [sym_val_date] = ACTIONS(849), + [anon_sym_DQUOTE] = ACTIONS(849), + [sym__str_single_quotes] = ACTIONS(849), + [sym__str_back_ticks] = ACTIONS(849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), + [anon_sym_err_GT] = ACTIONS(849), + [anon_sym_out_GT] = ACTIONS(849), + [anon_sym_e_GT] = ACTIONS(849), + [anon_sym_o_GT] = ACTIONS(849), + [anon_sym_err_PLUSout_GT] = ACTIONS(849), + [anon_sym_out_PLUSerr_GT] = ACTIONS(849), + [anon_sym_o_PLUSe_GT] = ACTIONS(849), + [anon_sym_e_PLUSo_GT] = ACTIONS(849), + [sym_short_flag] = ACTIONS(849), + [aux_sym_unquoted_token1] = ACTIONS(849), [anon_sym_POUND] = ACTIONS(3), }, - [430] = { - [sym_comment] = STATE(430), + [420] = { + [sym_comment] = STATE(420), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [421] = { + [sym_comment] = STATE(421), [ts_builtin_sym_end] = ACTIONS(855), [anon_sym_SEMI] = ACTIONS(853), [anon_sym_LF] = ACTIONS(855), @@ -82191,304 +81602,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(853), [anon_sym_POUND] = ACTIONS(3), }, - [431] = { - [sym_comment] = STATE(431), - [ts_builtin_sym_end] = ACTIONS(893), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_DASH_DASH] = ACTIONS(891), - [anon_sym_DASH] = ACTIONS(891), - [anon_sym_in] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(891), - [anon_sym_STAR] = ACTIONS(891), - [anon_sym_STAR_STAR] = ACTIONS(891), - [anon_sym_PLUS_PLUS] = ACTIONS(891), - [anon_sym_SLASH] = ACTIONS(891), - [anon_sym_mod] = ACTIONS(891), - [anon_sym_SLASH_SLASH] = ACTIONS(891), - [anon_sym_PLUS] = ACTIONS(891), - [anon_sym_bit_DASHshl] = ACTIONS(891), - [anon_sym_bit_DASHshr] = ACTIONS(891), - [anon_sym_EQ_EQ] = ACTIONS(891), - [anon_sym_BANG_EQ] = ACTIONS(891), - [anon_sym_LT2] = ACTIONS(891), - [anon_sym_LT_EQ] = ACTIONS(891), - [anon_sym_GT_EQ] = ACTIONS(891), - [anon_sym_not_DASHin] = ACTIONS(891), - [anon_sym_starts_DASHwith] = ACTIONS(891), - [anon_sym_ends_DASHwith] = ACTIONS(891), - [anon_sym_EQ_TILDE] = ACTIONS(891), - [anon_sym_BANG_TILDE] = ACTIONS(891), - [anon_sym_bit_DASHand] = ACTIONS(891), - [anon_sym_bit_DASHxor] = ACTIONS(891), - [anon_sym_bit_DASHor] = ACTIONS(891), - [anon_sym_and] = ACTIONS(891), - [anon_sym_xor] = ACTIONS(891), - [anon_sym_or] = ACTIONS(891), - [anon_sym_DOT_DOT_LT] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(891), - [anon_sym_DOT_DOT_EQ] = ACTIONS(891), - [sym_val_nothing] = ACTIONS(891), - [anon_sym_true] = ACTIONS(891), - [anon_sym_false] = ACTIONS(891), - [aux_sym_val_number_token1] = ACTIONS(891), - [aux_sym_val_number_token2] = ACTIONS(891), - [aux_sym_val_number_token3] = ACTIONS(891), - [aux_sym_val_number_token4] = ACTIONS(891), - [aux_sym_val_number_token5] = ACTIONS(891), - [anon_sym_inf] = ACTIONS(891), - [anon_sym_DASHinf] = ACTIONS(891), - [anon_sym_NaN] = ACTIONS(891), - [anon_sym_0b] = ACTIONS(891), - [anon_sym_0o] = ACTIONS(891), - [anon_sym_0x] = ACTIONS(891), - [sym_val_date] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__str_single_quotes] = ACTIONS(891), - [sym__str_back_ticks] = ACTIONS(891), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(891), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(891), - [anon_sym_err_GT] = ACTIONS(891), - [anon_sym_out_GT] = ACTIONS(891), - [anon_sym_e_GT] = ACTIONS(891), - [anon_sym_o_GT] = ACTIONS(891), - [anon_sym_err_PLUSout_GT] = ACTIONS(891), - [anon_sym_out_PLUSerr_GT] = ACTIONS(891), - [anon_sym_o_PLUSe_GT] = ACTIONS(891), - [anon_sym_e_PLUSo_GT] = ACTIONS(891), - [sym_short_flag] = ACTIONS(891), - [aux_sym_unquoted_token1] = ACTIONS(891), - [anon_sym_POUND] = ACTIONS(3), - }, - [432] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(905), - [anon_sym_SEMI] = ACTIONS(903), - [anon_sym_LF] = ACTIONS(905), - [anon_sym_LBRACK] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(903), - [anon_sym_PIPE] = ACTIONS(903), - [anon_sym_DOLLAR] = ACTIONS(903), - [anon_sym_GT] = ACTIONS(903), - [anon_sym_DASH_DASH] = ACTIONS(903), - [anon_sym_DASH] = ACTIONS(903), - [anon_sym_in] = ACTIONS(903), - [anon_sym_LBRACE] = ACTIONS(903), - [anon_sym_STAR] = ACTIONS(903), - [anon_sym_STAR_STAR] = ACTIONS(903), - [anon_sym_PLUS_PLUS] = ACTIONS(903), - [anon_sym_SLASH] = ACTIONS(903), - [anon_sym_mod] = ACTIONS(903), - [anon_sym_SLASH_SLASH] = ACTIONS(903), - [anon_sym_PLUS] = ACTIONS(903), - [anon_sym_bit_DASHshl] = ACTIONS(903), - [anon_sym_bit_DASHshr] = ACTIONS(903), - [anon_sym_EQ_EQ] = ACTIONS(903), - [anon_sym_BANG_EQ] = ACTIONS(903), - [anon_sym_LT2] = ACTIONS(903), - [anon_sym_LT_EQ] = ACTIONS(903), - [anon_sym_GT_EQ] = ACTIONS(903), - [anon_sym_not_DASHin] = ACTIONS(903), - [anon_sym_starts_DASHwith] = ACTIONS(903), - [anon_sym_ends_DASHwith] = ACTIONS(903), - [anon_sym_EQ_TILDE] = ACTIONS(903), - [anon_sym_BANG_TILDE] = ACTIONS(903), - [anon_sym_bit_DASHand] = ACTIONS(903), - [anon_sym_bit_DASHxor] = ACTIONS(903), - [anon_sym_bit_DASHor] = ACTIONS(903), - [anon_sym_and] = ACTIONS(903), - [anon_sym_xor] = ACTIONS(903), - [anon_sym_or] = ACTIONS(903), - [anon_sym_DOT_DOT_LT] = ACTIONS(903), - [anon_sym_DOT_DOT] = ACTIONS(903), - [anon_sym_DOT_DOT_EQ] = ACTIONS(903), - [sym_val_nothing] = ACTIONS(903), - [anon_sym_true] = ACTIONS(903), - [anon_sym_false] = ACTIONS(903), - [aux_sym_val_number_token1] = ACTIONS(903), - [aux_sym_val_number_token2] = ACTIONS(903), - [aux_sym_val_number_token3] = ACTIONS(903), - [aux_sym_val_number_token4] = ACTIONS(903), - [aux_sym_val_number_token5] = ACTIONS(903), - [anon_sym_inf] = ACTIONS(903), - [anon_sym_DASHinf] = ACTIONS(903), - [anon_sym_NaN] = ACTIONS(903), - [anon_sym_0b] = ACTIONS(903), - [anon_sym_0o] = ACTIONS(903), - [anon_sym_0x] = ACTIONS(903), - [sym_val_date] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(903), - [sym__str_single_quotes] = ACTIONS(903), - [sym__str_back_ticks] = ACTIONS(903), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(903), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(903), - [anon_sym_err_GT] = ACTIONS(903), - [anon_sym_out_GT] = ACTIONS(903), - [anon_sym_e_GT] = ACTIONS(903), - [anon_sym_o_GT] = ACTIONS(903), - [anon_sym_err_PLUSout_GT] = ACTIONS(903), - [anon_sym_out_PLUSerr_GT] = ACTIONS(903), - [anon_sym_o_PLUSe_GT] = ACTIONS(903), - [anon_sym_e_PLUSo_GT] = ACTIONS(903), - [sym_short_flag] = ACTIONS(903), - [aux_sym_unquoted_token1] = ACTIONS(903), - [anon_sym_POUND] = ACTIONS(3), - }, - [433] = { - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(1281), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [422] = { + [sym_comment] = STATE(422), + [ts_builtin_sym_end] = ACTIONS(835), + [anon_sym_SEMI] = ACTIONS(833), + [anon_sym_LF] = ACTIONS(835), + [anon_sym_LBRACK] = ACTIONS(833), + [anon_sym_LPAREN] = ACTIONS(833), + [anon_sym_PIPE] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(833), + [anon_sym_GT] = ACTIONS(833), + [anon_sym_DASH_DASH] = ACTIONS(833), + [anon_sym_DASH] = ACTIONS(833), + [anon_sym_in] = ACTIONS(833), + [anon_sym_LBRACE] = ACTIONS(833), + [anon_sym_STAR] = ACTIONS(833), + [anon_sym_STAR_STAR] = ACTIONS(833), + [anon_sym_PLUS_PLUS] = ACTIONS(833), + [anon_sym_SLASH] = ACTIONS(833), + [anon_sym_mod] = ACTIONS(833), + [anon_sym_SLASH_SLASH] = ACTIONS(833), + [anon_sym_PLUS] = ACTIONS(833), + [anon_sym_bit_DASHshl] = ACTIONS(833), + [anon_sym_bit_DASHshr] = ACTIONS(833), + [anon_sym_EQ_EQ] = ACTIONS(833), + [anon_sym_BANG_EQ] = ACTIONS(833), + [anon_sym_LT2] = ACTIONS(833), + [anon_sym_LT_EQ] = ACTIONS(833), + [anon_sym_GT_EQ] = ACTIONS(833), + [anon_sym_not_DASHin] = ACTIONS(833), + [anon_sym_starts_DASHwith] = ACTIONS(833), + [anon_sym_ends_DASHwith] = ACTIONS(833), + [anon_sym_EQ_TILDE] = ACTIONS(833), + [anon_sym_BANG_TILDE] = ACTIONS(833), + [anon_sym_bit_DASHand] = ACTIONS(833), + [anon_sym_bit_DASHxor] = ACTIONS(833), + [anon_sym_bit_DASHor] = ACTIONS(833), + [anon_sym_and] = ACTIONS(833), + [anon_sym_xor] = ACTIONS(833), + [anon_sym_or] = ACTIONS(833), + [anon_sym_DOT_DOT_LT] = ACTIONS(833), + [anon_sym_DOT_DOT] = ACTIONS(833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(833), + [sym_val_nothing] = ACTIONS(833), + [anon_sym_true] = ACTIONS(833), + [anon_sym_false] = ACTIONS(833), + [aux_sym_val_number_token1] = ACTIONS(833), + [aux_sym_val_number_token2] = ACTIONS(833), + [aux_sym_val_number_token3] = ACTIONS(833), + [aux_sym_val_number_token4] = ACTIONS(833), + [aux_sym_val_number_token5] = ACTIONS(833), + [anon_sym_inf] = ACTIONS(833), + [anon_sym_DASHinf] = ACTIONS(833), + [anon_sym_NaN] = ACTIONS(833), + [anon_sym_0b] = ACTIONS(833), + [anon_sym_0o] = ACTIONS(833), + [anon_sym_0x] = ACTIONS(833), + [sym_val_date] = ACTIONS(833), + [anon_sym_DQUOTE] = ACTIONS(833), + [sym__str_single_quotes] = ACTIONS(833), + [sym__str_back_ticks] = ACTIONS(833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(833), + [anon_sym_err_GT] = ACTIONS(833), + [anon_sym_out_GT] = ACTIONS(833), + [anon_sym_e_GT] = ACTIONS(833), + [anon_sym_o_GT] = ACTIONS(833), + [anon_sym_err_PLUSout_GT] = ACTIONS(833), + [anon_sym_out_PLUSerr_GT] = ACTIONS(833), + [anon_sym_o_PLUSe_GT] = ACTIONS(833), + [anon_sym_e_PLUSo_GT] = ACTIONS(833), + [sym_short_flag] = ACTIONS(833), + [aux_sym_unquoted_token1] = ACTIONS(833), [anon_sym_POUND] = ACTIONS(3), }, - [434] = { - [sym__flag] = STATE(486), - [sym_long_flag] = STATE(503), - [sym_comment] = STATE(434), - [aux_sym_overlay_use_repeat1] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(1235), - [anon_sym_export] = ACTIONS(1233), - [anon_sym_alias] = ACTIONS(1233), - [anon_sym_let] = ACTIONS(1233), - [anon_sym_let_DASHenv] = ACTIONS(1233), - [anon_sym_mut] = ACTIONS(1233), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_SEMI] = ACTIONS(1233), - [sym_cmd_identifier] = ACTIONS(1233), - [anon_sym_LF] = ACTIONS(1235), - [anon_sym_def] = ACTIONS(1233), - [anon_sym_def_DASHenv] = ACTIONS(1233), - [anon_sym_export_DASHenv] = ACTIONS(1233), - [anon_sym_extern] = ACTIONS(1233), - [anon_sym_module] = ACTIONS(1233), - [anon_sym_use] = ACTIONS(1233), - [anon_sym_LBRACK] = ACTIONS(1233), - [anon_sym_LPAREN] = ACTIONS(1233), - [anon_sym_DOLLAR] = ACTIONS(1233), - [anon_sym_error] = ACTIONS(1233), - [anon_sym_DASH_DASH] = ACTIONS(1255), - [anon_sym_DASH] = ACTIONS(1233), - [anon_sym_break] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(1233), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_loop] = ACTIONS(1233), - [anon_sym_while] = ACTIONS(1233), - [anon_sym_do] = ACTIONS(1233), - [anon_sym_if] = ACTIONS(1233), - [anon_sym_match] = ACTIONS(1233), - [anon_sym_LBRACE] = ACTIONS(1233), - [anon_sym_try] = ACTIONS(1233), - [anon_sym_return] = ACTIONS(1233), - [anon_sym_source] = ACTIONS(1233), - [anon_sym_source_DASHenv] = ACTIONS(1233), - [anon_sym_register] = ACTIONS(1233), - [anon_sym_hide] = ACTIONS(1233), - [anon_sym_hide_DASHenv] = ACTIONS(1233), - [anon_sym_overlay] = ACTIONS(1233), - [anon_sym_as] = ACTIONS(1291), - [anon_sym_where] = ACTIONS(1233), - [anon_sym_not] = ACTIONS(1233), - [anon_sym_DOT_DOT_LT] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1233), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1233), - [sym_val_nothing] = ACTIONS(1233), - [anon_sym_true] = ACTIONS(1233), - [anon_sym_false] = ACTIONS(1233), - [aux_sym_val_number_token1] = ACTIONS(1233), - [aux_sym_val_number_token2] = ACTIONS(1233), - [aux_sym_val_number_token3] = ACTIONS(1233), - [aux_sym_val_number_token4] = ACTIONS(1233), - [aux_sym_val_number_token5] = ACTIONS(1233), - [anon_sym_inf] = ACTIONS(1233), - [anon_sym_DASHinf] = ACTIONS(1233), - [anon_sym_NaN] = ACTIONS(1233), - [anon_sym_0b] = ACTIONS(1233), - [anon_sym_0o] = ACTIONS(1233), - [anon_sym_0x] = ACTIONS(1233), - [sym_val_date] = ACTIONS(1233), - [anon_sym_DQUOTE] = ACTIONS(1233), - [sym__str_single_quotes] = ACTIONS(1233), - [sym__str_back_ticks] = ACTIONS(1233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1233), - [anon_sym_CARET] = ACTIONS(1233), - [sym_short_flag] = ACTIONS(1259), + [423] = { + [sym_comment] = STATE(423), + [ts_builtin_sym_end] = ACTIONS(859), + [anon_sym_SEMI] = ACTIONS(857), + [anon_sym_LF] = ACTIONS(859), + [anon_sym_LBRACK] = ACTIONS(857), + [anon_sym_LPAREN] = ACTIONS(857), + [anon_sym_PIPE] = ACTIONS(857), + [anon_sym_DOLLAR] = ACTIONS(857), + [anon_sym_GT] = ACTIONS(857), + [anon_sym_DASH_DASH] = ACTIONS(857), + [anon_sym_DASH] = ACTIONS(857), + [anon_sym_in] = ACTIONS(857), + [anon_sym_LBRACE] = ACTIONS(857), + [anon_sym_STAR] = ACTIONS(857), + [anon_sym_STAR_STAR] = ACTIONS(857), + [anon_sym_PLUS_PLUS] = ACTIONS(857), + [anon_sym_SLASH] = ACTIONS(857), + [anon_sym_mod] = ACTIONS(857), + [anon_sym_SLASH_SLASH] = ACTIONS(857), + [anon_sym_PLUS] = ACTIONS(857), + [anon_sym_bit_DASHshl] = ACTIONS(857), + [anon_sym_bit_DASHshr] = ACTIONS(857), + [anon_sym_EQ_EQ] = ACTIONS(857), + [anon_sym_BANG_EQ] = ACTIONS(857), + [anon_sym_LT2] = ACTIONS(857), + [anon_sym_LT_EQ] = ACTIONS(857), + [anon_sym_GT_EQ] = ACTIONS(857), + [anon_sym_not_DASHin] = ACTIONS(857), + [anon_sym_starts_DASHwith] = ACTIONS(857), + [anon_sym_ends_DASHwith] = ACTIONS(857), + [anon_sym_EQ_TILDE] = ACTIONS(857), + [anon_sym_BANG_TILDE] = ACTIONS(857), + [anon_sym_bit_DASHand] = ACTIONS(857), + [anon_sym_bit_DASHxor] = ACTIONS(857), + [anon_sym_bit_DASHor] = ACTIONS(857), + [anon_sym_and] = ACTIONS(857), + [anon_sym_xor] = ACTIONS(857), + [anon_sym_or] = ACTIONS(857), + [anon_sym_DOT_DOT_LT] = ACTIONS(857), + [anon_sym_DOT_DOT] = ACTIONS(857), + [anon_sym_DOT_DOT_EQ] = ACTIONS(857), + [sym_val_nothing] = ACTIONS(857), + [anon_sym_true] = ACTIONS(857), + [anon_sym_false] = ACTIONS(857), + [aux_sym_val_number_token1] = ACTIONS(857), + [aux_sym_val_number_token2] = ACTIONS(857), + [aux_sym_val_number_token3] = ACTIONS(857), + [aux_sym_val_number_token4] = ACTIONS(857), + [aux_sym_val_number_token5] = ACTIONS(857), + [anon_sym_inf] = ACTIONS(857), + [anon_sym_DASHinf] = ACTIONS(857), + [anon_sym_NaN] = ACTIONS(857), + [anon_sym_0b] = ACTIONS(857), + [anon_sym_0o] = ACTIONS(857), + [anon_sym_0x] = ACTIONS(857), + [sym_val_date] = ACTIONS(857), + [anon_sym_DQUOTE] = ACTIONS(857), + [sym__str_single_quotes] = ACTIONS(857), + [sym__str_back_ticks] = ACTIONS(857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(857), + [anon_sym_err_GT] = ACTIONS(857), + [anon_sym_out_GT] = ACTIONS(857), + [anon_sym_e_GT] = ACTIONS(857), + [anon_sym_o_GT] = ACTIONS(857), + [anon_sym_err_PLUSout_GT] = ACTIONS(857), + [anon_sym_out_PLUSerr_GT] = ACTIONS(857), + [anon_sym_o_PLUSe_GT] = ACTIONS(857), + [anon_sym_e_PLUSo_GT] = ACTIONS(857), + [sym_short_flag] = ACTIONS(857), + [aux_sym_unquoted_token1] = ACTIONS(857), [anon_sym_POUND] = ACTIONS(3), }, - [435] = { - [sym_comment] = STATE(435), + [424] = { + [sym_comment] = STATE(424), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -82561,304 +81824,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [436] = { - [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(907), - [anon_sym_LF] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_PIPE] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(907), - [anon_sym_GT] = ACTIONS(907), - [anon_sym_DASH_DASH] = ACTIONS(907), - [anon_sym_DASH] = ACTIONS(907), - [anon_sym_in] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(907), - [anon_sym_STAR] = ACTIONS(907), - [anon_sym_STAR_STAR] = ACTIONS(907), - [anon_sym_PLUS_PLUS] = ACTIONS(907), - [anon_sym_SLASH] = ACTIONS(907), - [anon_sym_mod] = ACTIONS(907), - [anon_sym_SLASH_SLASH] = ACTIONS(907), - [anon_sym_PLUS] = ACTIONS(907), - [anon_sym_bit_DASHshl] = ACTIONS(907), - [anon_sym_bit_DASHshr] = ACTIONS(907), - [anon_sym_EQ_EQ] = ACTIONS(907), - [anon_sym_BANG_EQ] = ACTIONS(907), - [anon_sym_LT2] = ACTIONS(907), - [anon_sym_LT_EQ] = ACTIONS(907), - [anon_sym_GT_EQ] = ACTIONS(907), - [anon_sym_not_DASHin] = ACTIONS(907), - [anon_sym_starts_DASHwith] = ACTIONS(907), - [anon_sym_ends_DASHwith] = ACTIONS(907), - [anon_sym_EQ_TILDE] = ACTIONS(907), - [anon_sym_BANG_TILDE] = ACTIONS(907), - [anon_sym_bit_DASHand] = ACTIONS(907), - [anon_sym_bit_DASHxor] = ACTIONS(907), - [anon_sym_bit_DASHor] = ACTIONS(907), - [anon_sym_and] = ACTIONS(907), - [anon_sym_xor] = ACTIONS(907), - [anon_sym_or] = ACTIONS(907), - [anon_sym_DOT_DOT_LT] = ACTIONS(907), - [anon_sym_DOT_DOT] = ACTIONS(907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(907), - [sym_val_nothing] = ACTIONS(907), - [anon_sym_true] = ACTIONS(907), - [anon_sym_false] = ACTIONS(907), - [aux_sym_val_number_token1] = ACTIONS(907), - [aux_sym_val_number_token2] = ACTIONS(907), - [aux_sym_val_number_token3] = ACTIONS(907), - [aux_sym_val_number_token4] = ACTIONS(907), - [aux_sym_val_number_token5] = ACTIONS(907), - [anon_sym_inf] = ACTIONS(907), - [anon_sym_DASHinf] = ACTIONS(907), - [anon_sym_NaN] = ACTIONS(907), - [anon_sym_0b] = ACTIONS(907), - [anon_sym_0o] = ACTIONS(907), - [anon_sym_0x] = ACTIONS(907), - [sym_val_date] = ACTIONS(907), - [anon_sym_DQUOTE] = ACTIONS(907), - [sym__str_single_quotes] = ACTIONS(907), - [sym__str_back_ticks] = ACTIONS(907), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(907), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(907), - [anon_sym_err_GT] = ACTIONS(907), - [anon_sym_out_GT] = ACTIONS(907), - [anon_sym_e_GT] = ACTIONS(907), - [anon_sym_o_GT] = ACTIONS(907), - [anon_sym_err_PLUSout_GT] = ACTIONS(907), - [anon_sym_out_PLUSerr_GT] = ACTIONS(907), - [anon_sym_o_PLUSe_GT] = ACTIONS(907), - [anon_sym_e_PLUSo_GT] = ACTIONS(907), - [sym_short_flag] = ACTIONS(907), - [aux_sym_unquoted_token1] = ACTIONS(907), + [425] = { + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [437] = { - [sym__flag] = STATE(486), - [sym_long_flag] = STATE(503), - [sym_comment] = STATE(437), - [aux_sym_overlay_use_repeat1] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(1247), - [anon_sym_export] = ACTIONS(1245), - [anon_sym_alias] = ACTIONS(1245), - [anon_sym_let] = ACTIONS(1245), - [anon_sym_let_DASHenv] = ACTIONS(1245), - [anon_sym_mut] = ACTIONS(1245), - [anon_sym_const] = ACTIONS(1245), - [anon_sym_SEMI] = ACTIONS(1245), - [sym_cmd_identifier] = ACTIONS(1245), - [anon_sym_LF] = ACTIONS(1247), - [anon_sym_def] = ACTIONS(1245), - [anon_sym_def_DASHenv] = ACTIONS(1245), - [anon_sym_export_DASHenv] = ACTIONS(1245), - [anon_sym_extern] = ACTIONS(1245), - [anon_sym_module] = ACTIONS(1245), - [anon_sym_use] = ACTIONS(1245), - [anon_sym_LBRACK] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1245), - [anon_sym_DOLLAR] = ACTIONS(1245), - [anon_sym_error] = ACTIONS(1245), - [anon_sym_DASH_DASH] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1245), - [anon_sym_break] = ACTIONS(1245), - [anon_sym_continue] = ACTIONS(1245), - [anon_sym_for] = ACTIONS(1245), - [anon_sym_loop] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_do] = ACTIONS(1245), - [anon_sym_if] = ACTIONS(1245), - [anon_sym_match] = ACTIONS(1245), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_try] = ACTIONS(1245), - [anon_sym_return] = ACTIONS(1245), - [anon_sym_source] = ACTIONS(1245), - [anon_sym_source_DASHenv] = ACTIONS(1245), - [anon_sym_register] = ACTIONS(1245), - [anon_sym_hide] = ACTIONS(1245), - [anon_sym_hide_DASHenv] = ACTIONS(1245), - [anon_sym_overlay] = ACTIONS(1245), - [anon_sym_as] = ACTIONS(1245), - [anon_sym_where] = ACTIONS(1245), - [anon_sym_not] = ACTIONS(1245), - [anon_sym_DOT_DOT_LT] = ACTIONS(1245), - [anon_sym_DOT_DOT] = ACTIONS(1245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1245), - [sym_val_nothing] = ACTIONS(1245), - [anon_sym_true] = ACTIONS(1245), - [anon_sym_false] = ACTIONS(1245), - [aux_sym_val_number_token1] = ACTIONS(1245), - [aux_sym_val_number_token2] = ACTIONS(1245), - [aux_sym_val_number_token3] = ACTIONS(1245), - [aux_sym_val_number_token4] = ACTIONS(1245), - [aux_sym_val_number_token5] = ACTIONS(1245), - [anon_sym_inf] = ACTIONS(1245), - [anon_sym_DASHinf] = ACTIONS(1245), - [anon_sym_NaN] = ACTIONS(1245), - [anon_sym_0b] = ACTIONS(1245), - [anon_sym_0o] = ACTIONS(1245), - [anon_sym_0x] = ACTIONS(1245), - [sym_val_date] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1245), - [sym__str_single_quotes] = ACTIONS(1245), - [sym__str_back_ticks] = ACTIONS(1245), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1245), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1245), - [anon_sym_CARET] = ACTIONS(1245), - [sym_short_flag] = ACTIONS(1296), + [426] = { + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(492), + [sym_comment] = STATE(426), + [aux_sym_overlay_use_repeat1] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1159), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_alias] = ACTIONS(1157), + [anon_sym_let] = ACTIONS(1157), + [anon_sym_let_DASHenv] = ACTIONS(1157), + [anon_sym_mut] = ACTIONS(1157), + [anon_sym_const] = ACTIONS(1157), + [anon_sym_SEMI] = ACTIONS(1157), + [sym_cmd_identifier] = ACTIONS(1157), + [anon_sym_LF] = ACTIONS(1159), + [anon_sym_def] = ACTIONS(1157), + [anon_sym_def_DASHenv] = ACTIONS(1157), + [anon_sym_export_DASHenv] = ACTIONS(1157), + [anon_sym_extern] = ACTIONS(1157), + [anon_sym_module] = ACTIONS(1157), + [anon_sym_use] = ACTIONS(1157), + [anon_sym_LBRACK] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1157), + [anon_sym_DOLLAR] = ACTIONS(1157), + [anon_sym_error] = ACTIONS(1157), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1157), + [anon_sym_continue] = ACTIONS(1157), + [anon_sym_for] = ACTIONS(1157), + [anon_sym_loop] = ACTIONS(1157), + [anon_sym_while] = ACTIONS(1157), + [anon_sym_do] = ACTIONS(1157), + [anon_sym_if] = ACTIONS(1157), + [anon_sym_match] = ACTIONS(1157), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_try] = ACTIONS(1157), + [anon_sym_return] = ACTIONS(1157), + [anon_sym_source] = ACTIONS(1157), + [anon_sym_source_DASHenv] = ACTIONS(1157), + [anon_sym_register] = ACTIONS(1157), + [anon_sym_hide] = ACTIONS(1157), + [anon_sym_hide_DASHenv] = ACTIONS(1157), + [anon_sym_overlay] = ACTIONS(1157), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_where] = ACTIONS(1157), + [anon_sym_not] = ACTIONS(1157), + [anon_sym_DOT_DOT_LT] = ACTIONS(1157), + [anon_sym_DOT_DOT] = ACTIONS(1157), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1157), + [sym_val_nothing] = ACTIONS(1157), + [anon_sym_true] = ACTIONS(1157), + [anon_sym_false] = ACTIONS(1157), + [aux_sym_val_number_token1] = ACTIONS(1157), + [aux_sym_val_number_token2] = ACTIONS(1157), + [aux_sym_val_number_token3] = ACTIONS(1157), + [aux_sym_val_number_token4] = ACTIONS(1157), + [aux_sym_val_number_token5] = ACTIONS(1157), + [anon_sym_inf] = ACTIONS(1157), + [anon_sym_DASHinf] = ACTIONS(1157), + [anon_sym_NaN] = ACTIONS(1157), + [anon_sym_0b] = ACTIONS(1157), + [anon_sym_0o] = ACTIONS(1157), + [anon_sym_0x] = ACTIONS(1157), + [sym_val_date] = ACTIONS(1157), + [anon_sym_DQUOTE] = ACTIONS(1157), + [sym__str_single_quotes] = ACTIONS(1157), + [sym__str_back_ticks] = ACTIONS(1157), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1157), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1157), + [anon_sym_CARET] = ACTIONS(1157), + [sym_short_flag] = ACTIONS(1293), [anon_sym_POUND] = ACTIONS(3), }, - [438] = { - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [427] = { + [sym_comment] = STATE(427), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(801), + [anon_sym_mod] = ACTIONS(801), + [anon_sym_SLASH_SLASH] = ACTIONS(801), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [439] = { - [sym_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(1279), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [428] = { + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(831), + [anon_sym_SEMI] = ACTIONS(829), + [anon_sym_LF] = ACTIONS(831), + [anon_sym_LBRACK] = ACTIONS(829), + [anon_sym_LPAREN] = ACTIONS(829), + [anon_sym_PIPE] = ACTIONS(829), + [anon_sym_DOLLAR] = ACTIONS(829), + [anon_sym_GT] = ACTIONS(829), + [anon_sym_DASH_DASH] = ACTIONS(829), + [anon_sym_DASH] = ACTIONS(829), + [anon_sym_in] = ACTIONS(829), + [anon_sym_LBRACE] = ACTIONS(829), + [anon_sym_STAR] = ACTIONS(829), + [anon_sym_STAR_STAR] = ACTIONS(829), + [anon_sym_PLUS_PLUS] = ACTIONS(829), + [anon_sym_SLASH] = ACTIONS(829), + [anon_sym_mod] = ACTIONS(829), + [anon_sym_SLASH_SLASH] = ACTIONS(829), + [anon_sym_PLUS] = ACTIONS(829), + [anon_sym_bit_DASHshl] = ACTIONS(829), + [anon_sym_bit_DASHshr] = ACTIONS(829), + [anon_sym_EQ_EQ] = ACTIONS(829), + [anon_sym_BANG_EQ] = ACTIONS(829), + [anon_sym_LT2] = ACTIONS(829), + [anon_sym_LT_EQ] = ACTIONS(829), + [anon_sym_GT_EQ] = ACTIONS(829), + [anon_sym_not_DASHin] = ACTIONS(829), + [anon_sym_starts_DASHwith] = ACTIONS(829), + [anon_sym_ends_DASHwith] = ACTIONS(829), + [anon_sym_EQ_TILDE] = ACTIONS(829), + [anon_sym_BANG_TILDE] = ACTIONS(829), + [anon_sym_bit_DASHand] = ACTIONS(829), + [anon_sym_bit_DASHxor] = ACTIONS(829), + [anon_sym_bit_DASHor] = ACTIONS(829), + [anon_sym_and] = ACTIONS(829), + [anon_sym_xor] = ACTIONS(829), + [anon_sym_or] = ACTIONS(829), + [anon_sym_DOT_DOT_LT] = ACTIONS(829), + [anon_sym_DOT_DOT] = ACTIONS(829), + [anon_sym_DOT_DOT_EQ] = ACTIONS(829), + [sym_val_nothing] = ACTIONS(829), + [anon_sym_true] = ACTIONS(829), + [anon_sym_false] = ACTIONS(829), + [aux_sym_val_number_token1] = ACTIONS(829), + [aux_sym_val_number_token2] = ACTIONS(829), + [aux_sym_val_number_token3] = ACTIONS(829), + [aux_sym_val_number_token4] = ACTIONS(829), + [aux_sym_val_number_token5] = ACTIONS(829), + [anon_sym_inf] = ACTIONS(829), + [anon_sym_DASHinf] = ACTIONS(829), + [anon_sym_NaN] = ACTIONS(829), + [anon_sym_0b] = ACTIONS(829), + [anon_sym_0o] = ACTIONS(829), + [anon_sym_0x] = ACTIONS(829), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(829), + [sym__str_single_quotes] = ACTIONS(829), + [sym__str_back_ticks] = ACTIONS(829), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), + [anon_sym_err_GT] = ACTIONS(829), + [anon_sym_out_GT] = ACTIONS(829), + [anon_sym_e_GT] = ACTIONS(829), + [anon_sym_o_GT] = ACTIONS(829), + [anon_sym_err_PLUSout_GT] = ACTIONS(829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(829), + [anon_sym_o_PLUSe_GT] = ACTIONS(829), + [anon_sym_e_PLUSo_GT] = ACTIONS(829), + [sym_short_flag] = ACTIONS(829), + [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [440] = { - [sym_comment] = STATE(440), + [429] = { + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(492), + [sym_comment] = STATE(429), + [aux_sym_overlay_use_repeat1] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(1153), + [anon_sym_export] = ACTIONS(1151), + [anon_sym_alias] = ACTIONS(1151), + [anon_sym_let] = ACTIONS(1151), + [anon_sym_let_DASHenv] = ACTIONS(1151), + [anon_sym_mut] = ACTIONS(1151), + [anon_sym_const] = ACTIONS(1151), + [anon_sym_SEMI] = ACTIONS(1151), + [sym_cmd_identifier] = ACTIONS(1151), + [anon_sym_LF] = ACTIONS(1153), + [anon_sym_def] = ACTIONS(1151), + [anon_sym_def_DASHenv] = ACTIONS(1151), + [anon_sym_export_DASHenv] = ACTIONS(1151), + [anon_sym_extern] = ACTIONS(1151), + [anon_sym_module] = ACTIONS(1151), + [anon_sym_use] = ACTIONS(1151), + [anon_sym_LBRACK] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1151), + [anon_sym_DOLLAR] = ACTIONS(1151), + [anon_sym_error] = ACTIONS(1151), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1151), + [anon_sym_break] = ACTIONS(1151), + [anon_sym_continue] = ACTIONS(1151), + [anon_sym_for] = ACTIONS(1151), + [anon_sym_loop] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1151), + [anon_sym_do] = ACTIONS(1151), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_match] = ACTIONS(1151), + [anon_sym_LBRACE] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(1151), + [anon_sym_return] = ACTIONS(1151), + [anon_sym_source] = ACTIONS(1151), + [anon_sym_source_DASHenv] = ACTIONS(1151), + [anon_sym_register] = ACTIONS(1151), + [anon_sym_hide] = ACTIONS(1151), + [anon_sym_hide_DASHenv] = ACTIONS(1151), + [anon_sym_overlay] = ACTIONS(1151), + [anon_sym_as] = ACTIONS(1295), + [anon_sym_where] = ACTIONS(1151), + [anon_sym_not] = ACTIONS(1151), + [anon_sym_DOT_DOT_LT] = ACTIONS(1151), + [anon_sym_DOT_DOT] = ACTIONS(1151), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1151), + [sym_val_nothing] = ACTIONS(1151), + [anon_sym_true] = ACTIONS(1151), + [anon_sym_false] = ACTIONS(1151), + [aux_sym_val_number_token1] = ACTIONS(1151), + [aux_sym_val_number_token2] = ACTIONS(1151), + [aux_sym_val_number_token3] = ACTIONS(1151), + [aux_sym_val_number_token4] = ACTIONS(1151), + [aux_sym_val_number_token5] = ACTIONS(1151), + [anon_sym_inf] = ACTIONS(1151), + [anon_sym_DASHinf] = ACTIONS(1151), + [anon_sym_NaN] = ACTIONS(1151), + [anon_sym_0b] = ACTIONS(1151), + [anon_sym_0o] = ACTIONS(1151), + [anon_sym_0x] = ACTIONS(1151), + [sym_val_date] = ACTIONS(1151), + [anon_sym_DQUOTE] = ACTIONS(1151), + [sym__str_single_quotes] = ACTIONS(1151), + [sym__str_back_ticks] = ACTIONS(1151), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1151), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(1151), + [sym_short_flag] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(3), + }, + [430] = { + [sym_comment] = STATE(430), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -82931,156 +82268,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [441] = { - [sym_comment] = STATE(441), - [ts_builtin_sym_end] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_GT] = ACTIONS(865), - [anon_sym_DASH_DASH] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_in] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_STAR_STAR] = ACTIONS(865), - [anon_sym_PLUS_PLUS] = ACTIONS(865), - [anon_sym_SLASH] = ACTIONS(865), - [anon_sym_mod] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(865), - [anon_sym_PLUS] = ACTIONS(865), - [anon_sym_bit_DASHshl] = ACTIONS(865), - [anon_sym_bit_DASHshr] = ACTIONS(865), - [anon_sym_EQ_EQ] = ACTIONS(865), - [anon_sym_BANG_EQ] = ACTIONS(865), - [anon_sym_LT2] = ACTIONS(865), - [anon_sym_LT_EQ] = ACTIONS(865), - [anon_sym_GT_EQ] = ACTIONS(865), - [anon_sym_not_DASHin] = ACTIONS(865), - [anon_sym_starts_DASHwith] = ACTIONS(865), - [anon_sym_ends_DASHwith] = ACTIONS(865), - [anon_sym_EQ_TILDE] = ACTIONS(865), - [anon_sym_BANG_TILDE] = ACTIONS(865), - [anon_sym_bit_DASHand] = ACTIONS(865), - [anon_sym_bit_DASHxor] = ACTIONS(865), - [anon_sym_bit_DASHor] = ACTIONS(865), - [anon_sym_and] = ACTIONS(865), - [anon_sym_xor] = ACTIONS(865), - [anon_sym_or] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_err_GT] = ACTIONS(865), - [anon_sym_out_GT] = ACTIONS(865), - [anon_sym_e_GT] = ACTIONS(865), - [anon_sym_o_GT] = ACTIONS(865), - [anon_sym_err_PLUSout_GT] = ACTIONS(865), - [anon_sym_out_PLUSerr_GT] = ACTIONS(865), - [anon_sym_o_PLUSe_GT] = ACTIONS(865), - [anon_sym_e_PLUSo_GT] = ACTIONS(865), - [sym_short_flag] = ACTIONS(865), - [aux_sym_unquoted_token1] = ACTIONS(865), + [431] = { + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [442] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH_DASH] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_STAR_STAR] = ACTIONS(764), - [anon_sym_PLUS_PLUS] = ACTIONS(764), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(764), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(764), - [anon_sym_BANG_EQ] = ACTIONS(764), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(764), - [anon_sym_GT_EQ] = ACTIONS(764), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(764), - [anon_sym_BANG_TILDE] = ACTIONS(764), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_err_GT] = ACTIONS(764), - [anon_sym_out_GT] = ACTIONS(764), - [anon_sym_e_GT] = ACTIONS(764), - [anon_sym_o_GT] = ACTIONS(764), - [anon_sym_err_PLUSout_GT] = ACTIONS(764), - [anon_sym_out_PLUSerr_GT] = ACTIONS(764), - [anon_sym_o_PLUSe_GT] = ACTIONS(764), - [anon_sym_e_PLUSo_GT] = ACTIONS(764), - [sym_short_flag] = ACTIONS(764), - [aux_sym_unquoted_token1] = ACTIONS(764), + [432] = { + [sym_comment] = STATE(432), + [ts_builtin_sym_end] = ACTIONS(907), + [anon_sym_SEMI] = ACTIONS(905), + [anon_sym_LF] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(905), + [anon_sym_LPAREN] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_DASH_DASH] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_in] = ACTIONS(905), + [anon_sym_LBRACE] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_STAR_STAR] = ACTIONS(905), + [anon_sym_PLUS_PLUS] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_bit_DASHshl] = ACTIONS(905), + [anon_sym_bit_DASHshr] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(905), + [anon_sym_BANG_EQ] = ACTIONS(905), + [anon_sym_LT2] = ACTIONS(905), + [anon_sym_LT_EQ] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(905), + [anon_sym_not_DASHin] = ACTIONS(905), + [anon_sym_starts_DASHwith] = ACTIONS(905), + [anon_sym_ends_DASHwith] = ACTIONS(905), + [anon_sym_EQ_TILDE] = ACTIONS(905), + [anon_sym_BANG_TILDE] = ACTIONS(905), + [anon_sym_bit_DASHand] = ACTIONS(905), + [anon_sym_bit_DASHxor] = ACTIONS(905), + [anon_sym_bit_DASHor] = ACTIONS(905), + [anon_sym_and] = ACTIONS(905), + [anon_sym_xor] = ACTIONS(905), + [anon_sym_or] = ACTIONS(905), + [anon_sym_DOT_DOT_LT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_EQ] = ACTIONS(905), + [sym_val_nothing] = ACTIONS(905), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [aux_sym_val_number_token1] = ACTIONS(905), + [aux_sym_val_number_token2] = ACTIONS(905), + [aux_sym_val_number_token3] = ACTIONS(905), + [aux_sym_val_number_token4] = ACTIONS(905), + [aux_sym_val_number_token5] = ACTIONS(905), + [anon_sym_inf] = ACTIONS(905), + [anon_sym_DASHinf] = ACTIONS(905), + [anon_sym_NaN] = ACTIONS(905), + [anon_sym_0b] = ACTIONS(905), + [anon_sym_0o] = ACTIONS(905), + [anon_sym_0x] = ACTIONS(905), + [sym_val_date] = ACTIONS(905), + [anon_sym_DQUOTE] = ACTIONS(905), + [sym__str_single_quotes] = ACTIONS(905), + [sym__str_back_ticks] = ACTIONS(905), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(905), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(905), + [anon_sym_err_GT] = ACTIONS(905), + [anon_sym_out_GT] = ACTIONS(905), + [anon_sym_e_GT] = ACTIONS(905), + [anon_sym_o_GT] = ACTIONS(905), + [anon_sym_err_PLUSout_GT] = ACTIONS(905), + [anon_sym_out_PLUSerr_GT] = ACTIONS(905), + [anon_sym_o_PLUSe_GT] = ACTIONS(905), + [anon_sym_e_PLUSo_GT] = ACTIONS(905), + [sym_short_flag] = ACTIONS(905), + [aux_sym_unquoted_token1] = ACTIONS(905), [anon_sym_POUND] = ACTIONS(3), }, - [443] = { - [sym_comment] = STATE(443), + [433] = { + [sym_comment] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(899), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_DASH_DASH] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_in] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_STAR_STAR] = ACTIONS(897), + [anon_sym_PLUS_PLUS] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_bit_DASHshl] = ACTIONS(897), + [anon_sym_bit_DASHshr] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(897), + [anon_sym_BANG_EQ] = ACTIONS(897), + [anon_sym_LT2] = ACTIONS(897), + [anon_sym_LT_EQ] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(897), + [anon_sym_not_DASHin] = ACTIONS(897), + [anon_sym_starts_DASHwith] = ACTIONS(897), + [anon_sym_ends_DASHwith] = ACTIONS(897), + [anon_sym_EQ_TILDE] = ACTIONS(897), + [anon_sym_BANG_TILDE] = ACTIONS(897), + [anon_sym_bit_DASHand] = ACTIONS(897), + [anon_sym_bit_DASHxor] = ACTIONS(897), + [anon_sym_bit_DASHor] = ACTIONS(897), + [anon_sym_and] = ACTIONS(897), + [anon_sym_xor] = ACTIONS(897), + [anon_sym_or] = ACTIONS(897), + [anon_sym_DOT_DOT_LT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_EQ] = ACTIONS(897), + [sym_val_nothing] = ACTIONS(897), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [aux_sym_val_number_token1] = ACTIONS(897), + [aux_sym_val_number_token2] = ACTIONS(897), + [aux_sym_val_number_token3] = ACTIONS(897), + [aux_sym_val_number_token4] = ACTIONS(897), + [aux_sym_val_number_token5] = ACTIONS(897), + [anon_sym_inf] = ACTIONS(897), + [anon_sym_DASHinf] = ACTIONS(897), + [anon_sym_NaN] = ACTIONS(897), + [anon_sym_0b] = ACTIONS(897), + [anon_sym_0o] = ACTIONS(897), + [anon_sym_0x] = ACTIONS(897), + [sym_val_date] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__str_single_quotes] = ACTIONS(897), + [sym__str_back_ticks] = ACTIONS(897), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(897), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(897), + [anon_sym_err_GT] = ACTIONS(897), + [anon_sym_out_GT] = ACTIONS(897), + [anon_sym_e_GT] = ACTIONS(897), + [anon_sym_o_GT] = ACTIONS(897), + [anon_sym_err_PLUSout_GT] = ACTIONS(897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(897), + [anon_sym_o_PLUSe_GT] = ACTIONS(897), + [anon_sym_e_PLUSo_GT] = ACTIONS(897), + [sym_short_flag] = ACTIONS(897), + [aux_sym_unquoted_token1] = ACTIONS(897), + [anon_sym_POUND] = ACTIONS(3), + }, + [434] = { + [sym_comment] = STATE(434), [ts_builtin_sym_end] = ACTIONS(925), [anon_sym_SEMI] = ACTIONS(923), [anon_sym_LF] = ACTIONS(925), @@ -83153,82 +82564,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(3), }, - [444] = { - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(1275), - [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(1277), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(867), + [anon_sym_SEMI] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_PIPE] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_GT] = ACTIONS(865), + [anon_sym_DASH_DASH] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_in] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_STAR] = ACTIONS(865), + [anon_sym_STAR_STAR] = ACTIONS(865), + [anon_sym_PLUS_PLUS] = ACTIONS(865), + [anon_sym_SLASH] = ACTIONS(865), + [anon_sym_mod] = ACTIONS(865), + [anon_sym_SLASH_SLASH] = ACTIONS(865), + [anon_sym_PLUS] = ACTIONS(865), + [anon_sym_bit_DASHshl] = ACTIONS(865), + [anon_sym_bit_DASHshr] = ACTIONS(865), + [anon_sym_EQ_EQ] = ACTIONS(865), + [anon_sym_BANG_EQ] = ACTIONS(865), + [anon_sym_LT2] = ACTIONS(865), + [anon_sym_LT_EQ] = ACTIONS(865), + [anon_sym_GT_EQ] = ACTIONS(865), + [anon_sym_not_DASHin] = ACTIONS(865), + [anon_sym_starts_DASHwith] = ACTIONS(865), + [anon_sym_ends_DASHwith] = ACTIONS(865), + [anon_sym_EQ_TILDE] = ACTIONS(865), + [anon_sym_BANG_TILDE] = ACTIONS(865), + [anon_sym_bit_DASHand] = ACTIONS(865), + [anon_sym_bit_DASHxor] = ACTIONS(865), + [anon_sym_bit_DASHor] = ACTIONS(865), + [anon_sym_and] = ACTIONS(865), + [anon_sym_xor] = ACTIONS(865), + [anon_sym_or] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_err_GT] = ACTIONS(865), + [anon_sym_out_GT] = ACTIONS(865), + [anon_sym_e_GT] = ACTIONS(865), + [anon_sym_o_GT] = ACTIONS(865), + [anon_sym_err_PLUSout_GT] = ACTIONS(865), + [anon_sym_out_PLUSerr_GT] = ACTIONS(865), + [anon_sym_o_PLUSe_GT] = ACTIONS(865), + [anon_sym_e_PLUSo_GT] = ACTIONS(865), + [sym_short_flag] = ACTIONS(865), + [aux_sym_unquoted_token1] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(3), }, - [445] = { - [sym_comment] = STATE(445), + [436] = { + [sym_comment] = STATE(436), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -83301,526 +82712,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [446] = { - [sym_comment] = STATE(446), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_DOT_DOT_LT] = ACTIONS(849), - [anon_sym_DOT_DOT] = ACTIONS(849), - [anon_sym_DOT_DOT_EQ] = ACTIONS(849), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [sym_short_flag] = ACTIONS(849), - [aux_sym_unquoted_token1] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [447] = { - [sym_comment] = STATE(447), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(849), - [anon_sym_LF] = ACTIONS(851), - [anon_sym_LBRACK] = ACTIONS(849), - [anon_sym_LPAREN] = ACTIONS(849), - [anon_sym_PIPE] = ACTIONS(849), - [anon_sym_DOLLAR] = ACTIONS(849), - [anon_sym_GT] = ACTIONS(849), - [anon_sym_DASH_DASH] = ACTIONS(849), - [anon_sym_DASH] = ACTIONS(849), - [anon_sym_in] = ACTIONS(849), - [anon_sym_LBRACE] = ACTIONS(849), - [anon_sym_STAR] = ACTIONS(849), - [anon_sym_STAR_STAR] = ACTIONS(849), - [anon_sym_PLUS_PLUS] = ACTIONS(849), - [anon_sym_SLASH] = ACTIONS(849), - [anon_sym_mod] = ACTIONS(849), - [anon_sym_SLASH_SLASH] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(849), - [anon_sym_bit_DASHshl] = ACTIONS(849), - [anon_sym_bit_DASHshr] = ACTIONS(849), - [anon_sym_EQ_EQ] = ACTIONS(849), - [anon_sym_BANG_EQ] = ACTIONS(849), - [anon_sym_LT2] = ACTIONS(849), - [anon_sym_LT_EQ] = ACTIONS(849), - [anon_sym_GT_EQ] = ACTIONS(849), - [anon_sym_not_DASHin] = ACTIONS(849), - [anon_sym_starts_DASHwith] = ACTIONS(849), - [anon_sym_ends_DASHwith] = ACTIONS(849), - [anon_sym_EQ_TILDE] = ACTIONS(849), - [anon_sym_BANG_TILDE] = ACTIONS(849), - [anon_sym_bit_DASHand] = ACTIONS(849), - [anon_sym_bit_DASHxor] = ACTIONS(849), - [anon_sym_bit_DASHor] = ACTIONS(849), - [anon_sym_and] = ACTIONS(849), - [anon_sym_xor] = ACTIONS(849), - [anon_sym_or] = ACTIONS(849), - [anon_sym_DOT_DOT_LT] = ACTIONS(129), - [anon_sym_DOT_DOT] = ACTIONS(129), - [anon_sym_DOT_DOT_EQ] = ACTIONS(129), - [sym_val_nothing] = ACTIONS(849), - [anon_sym_true] = ACTIONS(849), - [anon_sym_false] = ACTIONS(849), - [aux_sym_val_number_token1] = ACTIONS(849), - [aux_sym_val_number_token2] = ACTIONS(849), - [aux_sym_val_number_token3] = ACTIONS(849), - [aux_sym_val_number_token4] = ACTIONS(849), - [aux_sym_val_number_token5] = ACTIONS(849), - [anon_sym_inf] = ACTIONS(849), - [anon_sym_DASHinf] = ACTIONS(849), - [anon_sym_NaN] = ACTIONS(849), - [anon_sym_0b] = ACTIONS(849), - [anon_sym_0o] = ACTIONS(849), - [anon_sym_0x] = ACTIONS(849), - [sym_val_date] = ACTIONS(849), - [anon_sym_DQUOTE] = ACTIONS(849), - [sym__str_single_quotes] = ACTIONS(849), - [sym__str_back_ticks] = ACTIONS(849), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(849), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(849), - [anon_sym_err_GT] = ACTIONS(849), - [anon_sym_out_GT] = ACTIONS(849), - [anon_sym_e_GT] = ACTIONS(849), - [anon_sym_o_GT] = ACTIONS(849), - [anon_sym_err_PLUSout_GT] = ACTIONS(849), - [anon_sym_out_PLUSerr_GT] = ACTIONS(849), - [anon_sym_o_PLUSe_GT] = ACTIONS(849), - [anon_sym_e_PLUSo_GT] = ACTIONS(849), - [sym_short_flag] = ACTIONS(849), - [aux_sym_unquoted_token1] = ACTIONS(849), - [anon_sym_POUND] = ACTIONS(3), - }, - [448] = { - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_err_GT] = ACTIONS(927), - [anon_sym_out_GT] = ACTIONS(927), - [anon_sym_e_GT] = ACTIONS(927), - [anon_sym_o_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT] = ACTIONS(927), - [sym_short_flag] = ACTIONS(927), - [aux_sym_unquoted_token1] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [449] = { - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(929), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym_LF] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_DASH_DASH] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_in] = ACTIONS(927), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_STAR_STAR] = ACTIONS(927), - [anon_sym_PLUS_PLUS] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_bit_DASHshl] = ACTIONS(927), - [anon_sym_bit_DASHshr] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(927), - [anon_sym_BANG_EQ] = ACTIONS(927), - [anon_sym_LT2] = ACTIONS(927), - [anon_sym_LT_EQ] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(927), - [anon_sym_not_DASHin] = ACTIONS(927), - [anon_sym_starts_DASHwith] = ACTIONS(927), - [anon_sym_ends_DASHwith] = ACTIONS(927), - [anon_sym_EQ_TILDE] = ACTIONS(927), - [anon_sym_BANG_TILDE] = ACTIONS(927), - [anon_sym_bit_DASHand] = ACTIONS(927), - [anon_sym_bit_DASHxor] = ACTIONS(927), - [anon_sym_bit_DASHor] = ACTIONS(927), - [anon_sym_and] = ACTIONS(927), - [anon_sym_xor] = ACTIONS(927), - [anon_sym_or] = ACTIONS(927), - [anon_sym_DOT_DOT_LT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(927), - [sym_val_nothing] = ACTIONS(927), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [aux_sym_val_number_token1] = ACTIONS(927), - [aux_sym_val_number_token2] = ACTIONS(927), - [aux_sym_val_number_token3] = ACTIONS(927), - [aux_sym_val_number_token4] = ACTIONS(927), - [aux_sym_val_number_token5] = ACTIONS(927), - [anon_sym_inf] = ACTIONS(927), - [anon_sym_DASHinf] = ACTIONS(927), - [anon_sym_NaN] = ACTIONS(927), - [anon_sym_0b] = ACTIONS(927), - [anon_sym_0o] = ACTIONS(927), - [anon_sym_0x] = ACTIONS(927), - [sym_val_date] = ACTIONS(927), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym__str_single_quotes] = ACTIONS(927), - [sym__str_back_ticks] = ACTIONS(927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(927), - [anon_sym_err_GT] = ACTIONS(927), - [anon_sym_out_GT] = ACTIONS(927), - [anon_sym_e_GT] = ACTIONS(927), - [anon_sym_o_GT] = ACTIONS(927), - [anon_sym_err_PLUSout_GT] = ACTIONS(927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(927), - [anon_sym_o_PLUSe_GT] = ACTIONS(927), - [anon_sym_e_PLUSo_GT] = ACTIONS(927), - [sym_short_flag] = ACTIONS(927), - [aux_sym_unquoted_token1] = ACTIONS(927), - [anon_sym_POUND] = ACTIONS(3), - }, - [450] = { - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(859), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_LF] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(857), - [anon_sym_LPAREN] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_DOLLAR] = ACTIONS(857), - [anon_sym_GT] = ACTIONS(857), - [anon_sym_DASH_DASH] = ACTIONS(857), - [anon_sym_DASH] = ACTIONS(857), - [anon_sym_in] = ACTIONS(857), - [anon_sym_LBRACE] = ACTIONS(857), - [anon_sym_STAR] = ACTIONS(857), - [anon_sym_STAR_STAR] = ACTIONS(857), - [anon_sym_PLUS_PLUS] = ACTIONS(857), - [anon_sym_SLASH] = ACTIONS(857), - [anon_sym_mod] = ACTIONS(857), - [anon_sym_SLASH_SLASH] = ACTIONS(857), - [anon_sym_PLUS] = ACTIONS(857), - [anon_sym_bit_DASHshl] = ACTIONS(857), - [anon_sym_bit_DASHshr] = ACTIONS(857), - [anon_sym_EQ_EQ] = ACTIONS(857), - [anon_sym_BANG_EQ] = ACTIONS(857), - [anon_sym_LT2] = ACTIONS(857), - [anon_sym_LT_EQ] = ACTIONS(857), - [anon_sym_GT_EQ] = ACTIONS(857), - [anon_sym_not_DASHin] = ACTIONS(857), - [anon_sym_starts_DASHwith] = ACTIONS(857), - [anon_sym_ends_DASHwith] = ACTIONS(857), - [anon_sym_EQ_TILDE] = ACTIONS(857), - [anon_sym_BANG_TILDE] = ACTIONS(857), - [anon_sym_bit_DASHand] = ACTIONS(857), - [anon_sym_bit_DASHxor] = ACTIONS(857), - [anon_sym_bit_DASHor] = ACTIONS(857), - [anon_sym_and] = ACTIONS(857), - [anon_sym_xor] = ACTIONS(857), - [anon_sym_or] = ACTIONS(857), - [anon_sym_DOT_DOT_LT] = ACTIONS(857), - [anon_sym_DOT_DOT] = ACTIONS(857), - [anon_sym_DOT_DOT_EQ] = ACTIONS(857), - [sym_val_nothing] = ACTIONS(857), - [anon_sym_true] = ACTIONS(857), - [anon_sym_false] = ACTIONS(857), - [aux_sym_val_number_token1] = ACTIONS(857), - [aux_sym_val_number_token2] = ACTIONS(857), - [aux_sym_val_number_token3] = ACTIONS(857), - [aux_sym_val_number_token4] = ACTIONS(857), - [aux_sym_val_number_token5] = ACTIONS(857), - [anon_sym_inf] = ACTIONS(857), - [anon_sym_DASHinf] = ACTIONS(857), - [anon_sym_NaN] = ACTIONS(857), - [anon_sym_0b] = ACTIONS(857), - [anon_sym_0o] = ACTIONS(857), - [anon_sym_0x] = ACTIONS(857), - [sym_val_date] = ACTIONS(857), - [anon_sym_DQUOTE] = ACTIONS(857), - [sym__str_single_quotes] = ACTIONS(857), - [sym__str_back_ticks] = ACTIONS(857), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(857), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(857), - [anon_sym_err_GT] = ACTIONS(857), - [anon_sym_out_GT] = ACTIONS(857), - [anon_sym_e_GT] = ACTIONS(857), - [anon_sym_o_GT] = ACTIONS(857), - [anon_sym_err_PLUSout_GT] = ACTIONS(857), - [anon_sym_out_PLUSerr_GT] = ACTIONS(857), - [anon_sym_o_PLUSe_GT] = ACTIONS(857), - [anon_sym_e_PLUSo_GT] = ACTIONS(857), - [sym_short_flag] = ACTIONS(857), - [aux_sym_unquoted_token1] = ACTIONS(857), - [anon_sym_POUND] = ACTIONS(3), - }, - [451] = { - [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), + [437] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), [anon_sym_EQ_EQ] = ACTIONS(1263), [anon_sym_BANG_EQ] = ACTIONS(1263), [anon_sym_LT2] = ACTIONS(1263), [anon_sym_LT_EQ] = ACTIONS(1263), [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), [anon_sym_EQ_TILDE] = ACTIONS(1275), [anon_sym_BANG_TILDE] = ACTIONS(1275), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), - [anon_sym_POUND] = ACTIONS(3), - }, - [452] = { - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), - [anon_sym_EQ_EQ] = ACTIONS(1263), - [anon_sym_BANG_EQ] = ACTIONS(1263), - [anon_sym_LT2] = ACTIONS(1263), - [anon_sym_LT_EQ] = ACTIONS(1263), - [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, - [453] = { - [sym_comment] = STATE(453), + [438] = { + [sym_comment] = STATE(438), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -83893,82 +82860,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [454] = { - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [439] = { + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(105), + [anon_sym_SEMI] = ACTIONS(103), + [anon_sym_LF] = ACTIONS(105), + [anon_sym_LBRACK] = ACTIONS(103), + [anon_sym_LPAREN] = ACTIONS(103), + [anon_sym_PIPE] = ACTIONS(103), + [anon_sym_DOLLAR] = ACTIONS(103), + [anon_sym_GT] = ACTIONS(103), + [anon_sym_DASH_DASH] = ACTIONS(103), + [anon_sym_DASH] = ACTIONS(103), + [anon_sym_in] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(103), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_STAR_STAR] = ACTIONS(103), + [anon_sym_PLUS_PLUS] = ACTIONS(103), + [anon_sym_SLASH] = ACTIONS(103), + [anon_sym_mod] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(103), + [anon_sym_bit_DASHshl] = ACTIONS(103), + [anon_sym_bit_DASHshr] = ACTIONS(103), + [anon_sym_EQ_EQ] = ACTIONS(103), + [anon_sym_BANG_EQ] = ACTIONS(103), + [anon_sym_LT2] = ACTIONS(103), + [anon_sym_LT_EQ] = ACTIONS(103), + [anon_sym_GT_EQ] = ACTIONS(103), + [anon_sym_not_DASHin] = ACTIONS(103), + [anon_sym_starts_DASHwith] = ACTIONS(103), + [anon_sym_ends_DASHwith] = ACTIONS(103), + [anon_sym_EQ_TILDE] = ACTIONS(103), + [anon_sym_BANG_TILDE] = ACTIONS(103), + [anon_sym_bit_DASHand] = ACTIONS(103), + [anon_sym_bit_DASHxor] = ACTIONS(103), + [anon_sym_bit_DASHor] = ACTIONS(103), + [anon_sym_and] = ACTIONS(103), + [anon_sym_xor] = ACTIONS(103), + [anon_sym_or] = ACTIONS(103), + [anon_sym_DOT_DOT_LT] = ACTIONS(103), + [anon_sym_DOT_DOT] = ACTIONS(103), + [anon_sym_DOT_DOT_EQ] = ACTIONS(103), + [sym_val_nothing] = ACTIONS(103), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [aux_sym_val_number_token1] = ACTIONS(103), + [aux_sym_val_number_token2] = ACTIONS(103), + [aux_sym_val_number_token3] = ACTIONS(103), + [aux_sym_val_number_token4] = ACTIONS(103), + [aux_sym_val_number_token5] = ACTIONS(103), + [anon_sym_inf] = ACTIONS(103), + [anon_sym_DASHinf] = ACTIONS(103), + [anon_sym_NaN] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(103), + [anon_sym_0x] = ACTIONS(103), + [sym_val_date] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(103), + [sym__str_single_quotes] = ACTIONS(103), + [sym__str_back_ticks] = ACTIONS(103), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(103), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(103), + [anon_sym_err_GT] = ACTIONS(103), + [anon_sym_out_GT] = ACTIONS(103), + [anon_sym_e_GT] = ACTIONS(103), + [anon_sym_o_GT] = ACTIONS(103), + [anon_sym_err_PLUSout_GT] = ACTIONS(103), + [anon_sym_out_PLUSerr_GT] = ACTIONS(103), + [anon_sym_o_PLUSe_GT] = ACTIONS(103), + [anon_sym_e_PLUSo_GT] = ACTIONS(103), + [sym_short_flag] = ACTIONS(103), + [aux_sym_unquoted_token1] = ACTIONS(103), [anon_sym_POUND] = ACTIONS(3), }, - [455] = { - [sym_comment] = STATE(455), + [440] = { + [sym_comment] = STATE(440), [ts_builtin_sym_end] = ACTIONS(831), [anon_sym_SEMI] = ACTIONS(829), [anon_sym_LF] = ACTIONS(831), @@ -84041,78 +83008,1188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_unquoted_token1] = ACTIONS(829), [anon_sym_POUND] = ACTIONS(3), }, - [456] = { - [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(887), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(885), + [anon_sym_DASH_DASH] = ACTIONS(885), + [anon_sym_DASH] = ACTIONS(885), + [anon_sym_in] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_STAR] = ACTIONS(885), + [anon_sym_STAR_STAR] = ACTIONS(885), + [anon_sym_PLUS_PLUS] = ACTIONS(885), + [anon_sym_SLASH] = ACTIONS(885), + [anon_sym_mod] = ACTIONS(885), + [anon_sym_SLASH_SLASH] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(885), + [anon_sym_bit_DASHshl] = ACTIONS(885), + [anon_sym_bit_DASHshr] = ACTIONS(885), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_LT2] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_not_DASHin] = ACTIONS(885), + [anon_sym_starts_DASHwith] = ACTIONS(885), + [anon_sym_ends_DASHwith] = ACTIONS(885), + [anon_sym_EQ_TILDE] = ACTIONS(885), + [anon_sym_BANG_TILDE] = ACTIONS(885), + [anon_sym_bit_DASHand] = ACTIONS(885), + [anon_sym_bit_DASHxor] = ACTIONS(885), + [anon_sym_bit_DASHor] = ACTIONS(885), + [anon_sym_and] = ACTIONS(885), + [anon_sym_xor] = ACTIONS(885), + [anon_sym_or] = ACTIONS(885), + [anon_sym_DOT_DOT_LT] = ACTIONS(885), + [anon_sym_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [sym_val_nothing] = ACTIONS(885), + [anon_sym_true] = ACTIONS(885), + [anon_sym_false] = ACTIONS(885), + [aux_sym_val_number_token1] = ACTIONS(885), + [aux_sym_val_number_token2] = ACTIONS(885), + [aux_sym_val_number_token3] = ACTIONS(885), + [aux_sym_val_number_token4] = ACTIONS(885), + [aux_sym_val_number_token5] = ACTIONS(885), + [anon_sym_inf] = ACTIONS(885), + [anon_sym_DASHinf] = ACTIONS(885), + [anon_sym_NaN] = ACTIONS(885), + [anon_sym_0b] = ACTIONS(885), + [anon_sym_0o] = ACTIONS(885), + [anon_sym_0x] = ACTIONS(885), + [sym_val_date] = ACTIONS(885), + [anon_sym_DQUOTE] = ACTIONS(885), + [sym__str_single_quotes] = ACTIONS(885), + [sym__str_back_ticks] = ACTIONS(885), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(885), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(885), + [anon_sym_err_GT] = ACTIONS(885), + [anon_sym_out_GT] = ACTIONS(885), + [anon_sym_e_GT] = ACTIONS(885), + [anon_sym_o_GT] = ACTIONS(885), + [anon_sym_err_PLUSout_GT] = ACTIONS(885), + [anon_sym_out_PLUSerr_GT] = ACTIONS(885), + [anon_sym_o_PLUSe_GT] = ACTIONS(885), + [anon_sym_e_PLUSo_GT] = ACTIONS(885), + [sym_short_flag] = ACTIONS(885), + [aux_sym_unquoted_token1] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(3), + }, + [442] = { + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(492), + [sym_comment] = STATE(442), + [aux_sym_overlay_use_repeat1] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1251), + [anon_sym_export] = ACTIONS(1249), + [anon_sym_alias] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_let_DASHenv] = ACTIONS(1249), + [anon_sym_mut] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [sym_cmd_identifier] = ACTIONS(1249), + [anon_sym_LF] = ACTIONS(1251), + [anon_sym_def] = ACTIONS(1249), + [anon_sym_def_DASHenv] = ACTIONS(1249), + [anon_sym_export_DASHenv] = ACTIONS(1249), + [anon_sym_extern] = ACTIONS(1249), + [anon_sym_module] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1249), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_DOLLAR] = ACTIONS(1249), + [anon_sym_error] = ACTIONS(1249), + [anon_sym_DASH_DASH] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_source] = ACTIONS(1249), + [anon_sym_source_DASHenv] = ACTIONS(1249), + [anon_sym_register] = ACTIONS(1249), + [anon_sym_hide] = ACTIONS(1249), + [anon_sym_hide_DASHenv] = ACTIONS(1249), + [anon_sym_overlay] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_not] = ACTIONS(1249), + [anon_sym_DOT_DOT_LT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1249), + [sym_val_nothing] = ACTIONS(1249), + [anon_sym_true] = ACTIONS(1249), + [anon_sym_false] = ACTIONS(1249), + [aux_sym_val_number_token1] = ACTIONS(1249), + [aux_sym_val_number_token2] = ACTIONS(1249), + [aux_sym_val_number_token3] = ACTIONS(1249), + [aux_sym_val_number_token4] = ACTIONS(1249), + [aux_sym_val_number_token5] = ACTIONS(1249), + [anon_sym_inf] = ACTIONS(1249), + [anon_sym_DASHinf] = ACTIONS(1249), + [anon_sym_NaN] = ACTIONS(1249), + [anon_sym_0b] = ACTIONS(1249), + [anon_sym_0o] = ACTIONS(1249), + [anon_sym_0x] = ACTIONS(1249), + [sym_val_date] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1249), + [sym__str_single_quotes] = ACTIONS(1249), + [sym__str_back_ticks] = ACTIONS(1249), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1249), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1249), + [anon_sym_CARET] = ACTIONS(1249), + [sym_short_flag] = ACTIONS(1300), + [anon_sym_POUND] = ACTIONS(3), + }, + [443] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(863), + [anon_sym_SEMI] = ACTIONS(861), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_LBRACK] = ACTIONS(861), + [anon_sym_LPAREN] = ACTIONS(861), + [anon_sym_PIPE] = ACTIONS(861), + [anon_sym_DOLLAR] = ACTIONS(861), + [anon_sym_GT] = ACTIONS(861), + [anon_sym_DASH_DASH] = ACTIONS(861), + [anon_sym_DASH] = ACTIONS(861), + [anon_sym_in] = ACTIONS(861), + [anon_sym_LBRACE] = ACTIONS(861), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_STAR_STAR] = ACTIONS(861), + [anon_sym_PLUS_PLUS] = ACTIONS(861), + [anon_sym_SLASH] = ACTIONS(861), + [anon_sym_mod] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(861), + [anon_sym_PLUS] = ACTIONS(861), + [anon_sym_bit_DASHshl] = ACTIONS(861), + [anon_sym_bit_DASHshr] = ACTIONS(861), + [anon_sym_EQ_EQ] = ACTIONS(861), + [anon_sym_BANG_EQ] = ACTIONS(861), + [anon_sym_LT2] = ACTIONS(861), + [anon_sym_LT_EQ] = ACTIONS(861), + [anon_sym_GT_EQ] = ACTIONS(861), + [anon_sym_not_DASHin] = ACTIONS(861), + [anon_sym_starts_DASHwith] = ACTIONS(861), + [anon_sym_ends_DASHwith] = ACTIONS(861), + [anon_sym_EQ_TILDE] = ACTIONS(861), + [anon_sym_BANG_TILDE] = ACTIONS(861), + [anon_sym_bit_DASHand] = ACTIONS(861), + [anon_sym_bit_DASHxor] = ACTIONS(861), + [anon_sym_bit_DASHor] = ACTIONS(861), + [anon_sym_and] = ACTIONS(861), + [anon_sym_xor] = ACTIONS(861), + [anon_sym_or] = ACTIONS(861), + [anon_sym_DOT_DOT_LT] = ACTIONS(861), + [anon_sym_DOT_DOT] = ACTIONS(861), + [anon_sym_DOT_DOT_EQ] = ACTIONS(861), + [sym_val_nothing] = ACTIONS(861), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [aux_sym_val_number_token1] = ACTIONS(861), + [aux_sym_val_number_token2] = ACTIONS(861), + [aux_sym_val_number_token3] = ACTIONS(861), + [aux_sym_val_number_token4] = ACTIONS(861), + [aux_sym_val_number_token5] = ACTIONS(861), + [anon_sym_inf] = ACTIONS(861), + [anon_sym_DASHinf] = ACTIONS(861), + [anon_sym_NaN] = ACTIONS(861), + [anon_sym_0b] = ACTIONS(861), + [anon_sym_0o] = ACTIONS(861), + [anon_sym_0x] = ACTIONS(861), + [sym_val_date] = ACTIONS(861), + [anon_sym_DQUOTE] = ACTIONS(861), + [sym__str_single_quotes] = ACTIONS(861), + [sym__str_back_ticks] = ACTIONS(861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(861), + [anon_sym_err_GT] = ACTIONS(861), + [anon_sym_out_GT] = ACTIONS(861), + [anon_sym_e_GT] = ACTIONS(861), + [anon_sym_o_GT] = ACTIONS(861), + [anon_sym_err_PLUSout_GT] = ACTIONS(861), + [anon_sym_out_PLUSerr_GT] = ACTIONS(861), + [anon_sym_o_PLUSe_GT] = ACTIONS(861), + [anon_sym_e_PLUSo_GT] = ACTIONS(861), + [sym_short_flag] = ACTIONS(861), + [aux_sym_unquoted_token1] = ACTIONS(861), + [anon_sym_POUND] = ACTIONS(3), + }, + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(895), + [anon_sym_SEMI] = ACTIONS(893), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(893), + [anon_sym_LPAREN] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_DASH_DASH] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_in] = ACTIONS(893), + [anon_sym_LBRACE] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_STAR_STAR] = ACTIONS(893), + [anon_sym_PLUS_PLUS] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_bit_DASHshl] = ACTIONS(893), + [anon_sym_bit_DASHshr] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(893), + [anon_sym_BANG_EQ] = ACTIONS(893), + [anon_sym_LT2] = ACTIONS(893), + [anon_sym_LT_EQ] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(893), + [anon_sym_not_DASHin] = ACTIONS(893), + [anon_sym_starts_DASHwith] = ACTIONS(893), + [anon_sym_ends_DASHwith] = ACTIONS(893), + [anon_sym_EQ_TILDE] = ACTIONS(893), + [anon_sym_BANG_TILDE] = ACTIONS(893), + [anon_sym_bit_DASHand] = ACTIONS(893), + [anon_sym_bit_DASHxor] = ACTIONS(893), + [anon_sym_bit_DASHor] = ACTIONS(893), + [anon_sym_and] = ACTIONS(893), + [anon_sym_xor] = ACTIONS(893), + [anon_sym_or] = ACTIONS(893), + [anon_sym_DOT_DOT_LT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(893), + [sym_val_nothing] = ACTIONS(893), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [aux_sym_val_number_token1] = ACTIONS(893), + [aux_sym_val_number_token2] = ACTIONS(893), + [aux_sym_val_number_token3] = ACTIONS(893), + [aux_sym_val_number_token4] = ACTIONS(893), + [aux_sym_val_number_token5] = ACTIONS(893), + [anon_sym_inf] = ACTIONS(893), + [anon_sym_DASHinf] = ACTIONS(893), + [anon_sym_NaN] = ACTIONS(893), + [anon_sym_0b] = ACTIONS(893), + [anon_sym_0o] = ACTIONS(893), + [anon_sym_0x] = ACTIONS(893), + [sym_val_date] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(893), + [sym__str_single_quotes] = ACTIONS(893), + [sym__str_back_ticks] = ACTIONS(893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(893), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(893), + [anon_sym_err_GT] = ACTIONS(893), + [anon_sym_out_GT] = ACTIONS(893), + [anon_sym_e_GT] = ACTIONS(893), + [anon_sym_o_GT] = ACTIONS(893), + [anon_sym_err_PLUSout_GT] = ACTIONS(893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(893), + [anon_sym_o_PLUSe_GT] = ACTIONS(893), + [anon_sym_e_PLUSo_GT] = ACTIONS(893), + [sym_short_flag] = ACTIONS(893), + [aux_sym_unquoted_token1] = ACTIONS(893), + [anon_sym_POUND] = ACTIONS(3), + }, + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(891), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LF] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(889), + [anon_sym_PIPE] = ACTIONS(889), + [anon_sym_DOLLAR] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(889), + [anon_sym_DASH_DASH] = ACTIONS(889), + [anon_sym_DASH] = ACTIONS(889), + [anon_sym_in] = ACTIONS(889), + [anon_sym_LBRACE] = ACTIONS(889), + [anon_sym_STAR] = ACTIONS(889), + [anon_sym_STAR_STAR] = ACTIONS(889), + [anon_sym_PLUS_PLUS] = ACTIONS(889), + [anon_sym_SLASH] = ACTIONS(889), + [anon_sym_mod] = ACTIONS(889), + [anon_sym_SLASH_SLASH] = ACTIONS(889), + [anon_sym_PLUS] = ACTIONS(889), + [anon_sym_bit_DASHshl] = ACTIONS(889), + [anon_sym_bit_DASHshr] = ACTIONS(889), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_LT2] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_not_DASHin] = ACTIONS(889), + [anon_sym_starts_DASHwith] = ACTIONS(889), + [anon_sym_ends_DASHwith] = ACTIONS(889), + [anon_sym_EQ_TILDE] = ACTIONS(889), + [anon_sym_BANG_TILDE] = ACTIONS(889), + [anon_sym_bit_DASHand] = ACTIONS(889), + [anon_sym_bit_DASHxor] = ACTIONS(889), + [anon_sym_bit_DASHor] = ACTIONS(889), + [anon_sym_and] = ACTIONS(889), + [anon_sym_xor] = ACTIONS(889), + [anon_sym_or] = ACTIONS(889), + [anon_sym_DOT_DOT_LT] = ACTIONS(889), + [anon_sym_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [sym_val_nothing] = ACTIONS(889), + [anon_sym_true] = ACTIONS(889), + [anon_sym_false] = ACTIONS(889), + [aux_sym_val_number_token1] = ACTIONS(889), + [aux_sym_val_number_token2] = ACTIONS(889), + [aux_sym_val_number_token3] = ACTIONS(889), + [aux_sym_val_number_token4] = ACTIONS(889), + [aux_sym_val_number_token5] = ACTIONS(889), + [anon_sym_inf] = ACTIONS(889), + [anon_sym_DASHinf] = ACTIONS(889), + [anon_sym_NaN] = ACTIONS(889), + [anon_sym_0b] = ACTIONS(889), + [anon_sym_0o] = ACTIONS(889), + [anon_sym_0x] = ACTIONS(889), + [sym_val_date] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym__str_single_quotes] = ACTIONS(889), + [sym__str_back_ticks] = ACTIONS(889), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(889), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(889), + [anon_sym_err_GT] = ACTIONS(889), + [anon_sym_out_GT] = ACTIONS(889), + [anon_sym_e_GT] = ACTIONS(889), + [anon_sym_o_GT] = ACTIONS(889), + [anon_sym_err_PLUSout_GT] = ACTIONS(889), + [anon_sym_out_PLUSerr_GT] = ACTIONS(889), + [anon_sym_o_PLUSe_GT] = ACTIONS(889), + [anon_sym_e_PLUSo_GT] = ACTIONS(889), + [sym_short_flag] = ACTIONS(889), + [aux_sym_unquoted_token1] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(3), + }, + [446] = { + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(492), + [sym_comment] = STATE(446), + [aux_sym_overlay_use_repeat1] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(1129), + [anon_sym_export] = ACTIONS(1127), + [anon_sym_alias] = ACTIONS(1127), + [anon_sym_let] = ACTIONS(1127), + [anon_sym_let_DASHenv] = ACTIONS(1127), + [anon_sym_mut] = ACTIONS(1127), + [anon_sym_const] = ACTIONS(1127), + [anon_sym_SEMI] = ACTIONS(1127), + [sym_cmd_identifier] = ACTIONS(1127), + [anon_sym_LF] = ACTIONS(1129), + [anon_sym_def] = ACTIONS(1127), + [anon_sym_def_DASHenv] = ACTIONS(1127), + [anon_sym_export_DASHenv] = ACTIONS(1127), + [anon_sym_extern] = ACTIONS(1127), + [anon_sym_module] = ACTIONS(1127), + [anon_sym_use] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1127), + [anon_sym_LPAREN] = ACTIONS(1127), + [anon_sym_DOLLAR] = ACTIONS(1127), + [anon_sym_error] = ACTIONS(1127), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_for] = ACTIONS(1127), + [anon_sym_loop] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1127), + [anon_sym_do] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1127), + [anon_sym_match] = ACTIONS(1127), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_try] = ACTIONS(1127), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_source] = ACTIONS(1127), + [anon_sym_source_DASHenv] = ACTIONS(1127), + [anon_sym_register] = ACTIONS(1127), + [anon_sym_hide] = ACTIONS(1127), + [anon_sym_hide_DASHenv] = ACTIONS(1127), + [anon_sym_overlay] = ACTIONS(1127), + [anon_sym_as] = ACTIONS(1303), + [anon_sym_where] = ACTIONS(1127), + [anon_sym_not] = ACTIONS(1127), + [anon_sym_DOT_DOT_LT] = ACTIONS(1127), + [anon_sym_DOT_DOT] = ACTIONS(1127), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1127), + [sym_val_nothing] = ACTIONS(1127), + [anon_sym_true] = ACTIONS(1127), + [anon_sym_false] = ACTIONS(1127), + [aux_sym_val_number_token1] = ACTIONS(1127), + [aux_sym_val_number_token2] = ACTIONS(1127), + [aux_sym_val_number_token3] = ACTIONS(1127), + [aux_sym_val_number_token4] = ACTIONS(1127), + [aux_sym_val_number_token5] = ACTIONS(1127), + [anon_sym_inf] = ACTIONS(1127), + [anon_sym_DASHinf] = ACTIONS(1127), + [anon_sym_NaN] = ACTIONS(1127), + [anon_sym_0b] = ACTIONS(1127), + [anon_sym_0o] = ACTIONS(1127), + [anon_sym_0x] = ACTIONS(1127), + [sym_val_date] = ACTIONS(1127), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym__str_single_quotes] = ACTIONS(1127), + [sym__str_back_ticks] = ACTIONS(1127), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1127), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1127), + [anon_sym_CARET] = ACTIONS(1127), + [sym_short_flag] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(3), + }, + [447] = { + [sym_comment] = STATE(447), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [448] = { + [sym__flag] = STATE(496), + [sym_long_flag] = STATE(492), + [sym_comment] = STATE(448), + [aux_sym_overlay_use_repeat1] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(1147), + [anon_sym_export] = ACTIONS(1145), + [anon_sym_alias] = ACTIONS(1145), + [anon_sym_let] = ACTIONS(1145), + [anon_sym_let_DASHenv] = ACTIONS(1145), + [anon_sym_mut] = ACTIONS(1145), + [anon_sym_const] = ACTIONS(1145), + [anon_sym_SEMI] = ACTIONS(1145), + [sym_cmd_identifier] = ACTIONS(1145), + [anon_sym_LF] = ACTIONS(1147), + [anon_sym_def] = ACTIONS(1145), + [anon_sym_def_DASHenv] = ACTIONS(1145), + [anon_sym_export_DASHenv] = ACTIONS(1145), + [anon_sym_extern] = ACTIONS(1145), + [anon_sym_module] = ACTIONS(1145), + [anon_sym_use] = ACTIONS(1145), + [anon_sym_LBRACK] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1145), + [anon_sym_DOLLAR] = ACTIONS(1145), + [anon_sym_error] = ACTIONS(1145), + [anon_sym_DASH_DASH] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1145), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_for] = ACTIONS(1145), + [anon_sym_loop] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1145), + [anon_sym_do] = ACTIONS(1145), + [anon_sym_if] = ACTIONS(1145), + [anon_sym_match] = ACTIONS(1145), + [anon_sym_LBRACE] = ACTIONS(1145), + [anon_sym_try] = ACTIONS(1145), + [anon_sym_return] = ACTIONS(1145), + [anon_sym_source] = ACTIONS(1145), + [anon_sym_source_DASHenv] = ACTIONS(1145), + [anon_sym_register] = ACTIONS(1145), + [anon_sym_hide] = ACTIONS(1145), + [anon_sym_hide_DASHenv] = ACTIONS(1145), + [anon_sym_overlay] = ACTIONS(1145), + [anon_sym_as] = ACTIONS(1305), + [anon_sym_where] = ACTIONS(1145), + [anon_sym_not] = ACTIONS(1145), + [anon_sym_DOT_DOT_LT] = ACTIONS(1145), + [anon_sym_DOT_DOT] = ACTIONS(1145), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1145), + [sym_val_nothing] = ACTIONS(1145), + [anon_sym_true] = ACTIONS(1145), + [anon_sym_false] = ACTIONS(1145), + [aux_sym_val_number_token1] = ACTIONS(1145), + [aux_sym_val_number_token2] = ACTIONS(1145), + [aux_sym_val_number_token3] = ACTIONS(1145), + [aux_sym_val_number_token4] = ACTIONS(1145), + [aux_sym_val_number_token5] = ACTIONS(1145), + [anon_sym_inf] = ACTIONS(1145), + [anon_sym_DASHinf] = ACTIONS(1145), + [anon_sym_NaN] = ACTIONS(1145), + [anon_sym_0b] = ACTIONS(1145), + [anon_sym_0o] = ACTIONS(1145), + [anon_sym_0x] = ACTIONS(1145), + [sym_val_date] = ACTIONS(1145), + [anon_sym_DQUOTE] = ACTIONS(1145), + [sym__str_single_quotes] = ACTIONS(1145), + [sym__str_back_ticks] = ACTIONS(1145), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1145), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1145), + [anon_sym_CARET] = ACTIONS(1145), + [sym_short_flag] = ACTIONS(1293), + [anon_sym_POUND] = ACTIONS(3), + }, + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_SEMI] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_DASH_DASH] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_in] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_STAR_STAR] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_bit_DASHshl] = ACTIONS(913), + [anon_sym_bit_DASHshr] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(913), + [anon_sym_BANG_EQ] = ACTIONS(913), + [anon_sym_LT2] = ACTIONS(913), + [anon_sym_LT_EQ] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(913), + [anon_sym_not_DASHin] = ACTIONS(913), + [anon_sym_starts_DASHwith] = ACTIONS(913), + [anon_sym_ends_DASHwith] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(913), + [anon_sym_BANG_TILDE] = ACTIONS(913), + [anon_sym_bit_DASHand] = ACTIONS(913), + [anon_sym_bit_DASHxor] = ACTIONS(913), + [anon_sym_bit_DASHor] = ACTIONS(913), + [anon_sym_and] = ACTIONS(913), + [anon_sym_xor] = ACTIONS(913), + [anon_sym_or] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_err_GT] = ACTIONS(913), + [anon_sym_out_GT] = ACTIONS(913), + [anon_sym_e_GT] = ACTIONS(913), + [anon_sym_o_GT] = ACTIONS(913), + [anon_sym_err_PLUSout_GT] = ACTIONS(913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(913), + [anon_sym_o_PLUSe_GT] = ACTIONS(913), + [anon_sym_e_PLUSo_GT] = ACTIONS(913), + [sym_short_flag] = ACTIONS(913), + [aux_sym_unquoted_token1] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(3), + }, + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(879), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(879), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_DOLLAR] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(877), + [anon_sym_DASH_DASH] = ACTIONS(877), + [anon_sym_DASH] = ACTIONS(877), + [anon_sym_in] = ACTIONS(877), + [anon_sym_LBRACE] = ACTIONS(877), + [anon_sym_STAR] = ACTIONS(877), + [anon_sym_STAR_STAR] = ACTIONS(877), + [anon_sym_PLUS_PLUS] = ACTIONS(877), + [anon_sym_SLASH] = ACTIONS(877), + [anon_sym_mod] = ACTIONS(877), + [anon_sym_SLASH_SLASH] = ACTIONS(877), + [anon_sym_PLUS] = ACTIONS(877), + [anon_sym_bit_DASHshl] = ACTIONS(877), + [anon_sym_bit_DASHshr] = ACTIONS(877), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_LT2] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_not_DASHin] = ACTIONS(877), + [anon_sym_starts_DASHwith] = ACTIONS(877), + [anon_sym_ends_DASHwith] = ACTIONS(877), + [anon_sym_EQ_TILDE] = ACTIONS(877), + [anon_sym_BANG_TILDE] = ACTIONS(877), + [anon_sym_bit_DASHand] = ACTIONS(877), + [anon_sym_bit_DASHxor] = ACTIONS(877), + [anon_sym_bit_DASHor] = ACTIONS(877), + [anon_sym_and] = ACTIONS(877), + [anon_sym_xor] = ACTIONS(877), + [anon_sym_or] = ACTIONS(877), + [anon_sym_DOT_DOT_LT] = ACTIONS(877), + [anon_sym_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [sym_val_nothing] = ACTIONS(877), + [anon_sym_true] = ACTIONS(877), + [anon_sym_false] = ACTIONS(877), + [aux_sym_val_number_token1] = ACTIONS(877), + [aux_sym_val_number_token2] = ACTIONS(877), + [aux_sym_val_number_token3] = ACTIONS(877), + [aux_sym_val_number_token4] = ACTIONS(877), + [aux_sym_val_number_token5] = ACTIONS(877), + [anon_sym_inf] = ACTIONS(877), + [anon_sym_DASHinf] = ACTIONS(877), + [anon_sym_NaN] = ACTIONS(877), + [anon_sym_0b] = ACTIONS(877), + [anon_sym_0o] = ACTIONS(877), + [anon_sym_0x] = ACTIONS(877), + [sym_val_date] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(877), + [sym__str_single_quotes] = ACTIONS(877), + [sym__str_back_ticks] = ACTIONS(877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(877), + [anon_sym_err_GT] = ACTIONS(877), + [anon_sym_out_GT] = ACTIONS(877), + [anon_sym_e_GT] = ACTIONS(877), + [anon_sym_o_GT] = ACTIONS(877), + [anon_sym_err_PLUSout_GT] = ACTIONS(877), + [anon_sym_out_PLUSerr_GT] = ACTIONS(877), + [anon_sym_o_PLUSe_GT] = ACTIONS(877), + [anon_sym_e_PLUSo_GT] = ACTIONS(877), + [sym_short_flag] = ACTIONS(877), + [aux_sym_unquoted_token1] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(3), + }, + [451] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH_DASH] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_STAR_STAR] = ACTIONS(775), + [anon_sym_PLUS_PLUS] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(775), + [anon_sym_BANG_EQ] = ACTIONS(775), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(775), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(775), + [anon_sym_BANG_TILDE] = ACTIONS(775), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_err_GT] = ACTIONS(775), + [anon_sym_out_GT] = ACTIONS(775), + [anon_sym_e_GT] = ACTIONS(775), + [anon_sym_o_GT] = ACTIONS(775), + [anon_sym_err_PLUSout_GT] = ACTIONS(775), + [anon_sym_out_PLUSerr_GT] = ACTIONS(775), + [anon_sym_o_PLUSe_GT] = ACTIONS(775), + [anon_sym_e_PLUSo_GT] = ACTIONS(775), + [sym_short_flag] = ACTIONS(775), + [aux_sym_unquoted_token1] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [453] = { + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(875), + [anon_sym_LBRACK] = ACTIONS(873), + [anon_sym_LPAREN] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_DOLLAR] = ACTIONS(873), + [anon_sym_GT] = ACTIONS(873), + [anon_sym_DASH_DASH] = ACTIONS(873), + [anon_sym_DASH] = ACTIONS(873), + [anon_sym_in] = ACTIONS(873), + [anon_sym_LBRACE] = ACTIONS(873), + [anon_sym_STAR] = ACTIONS(873), + [anon_sym_STAR_STAR] = ACTIONS(873), + [anon_sym_PLUS_PLUS] = ACTIONS(873), + [anon_sym_SLASH] = ACTIONS(873), + [anon_sym_mod] = ACTIONS(873), + [anon_sym_SLASH_SLASH] = ACTIONS(873), + [anon_sym_PLUS] = ACTIONS(873), + [anon_sym_bit_DASHshl] = ACTIONS(873), + [anon_sym_bit_DASHshr] = ACTIONS(873), + [anon_sym_EQ_EQ] = ACTIONS(873), + [anon_sym_BANG_EQ] = ACTIONS(873), + [anon_sym_LT2] = ACTIONS(873), + [anon_sym_LT_EQ] = ACTIONS(873), + [anon_sym_GT_EQ] = ACTIONS(873), + [anon_sym_not_DASHin] = ACTIONS(873), + [anon_sym_starts_DASHwith] = ACTIONS(873), + [anon_sym_ends_DASHwith] = ACTIONS(873), + [anon_sym_EQ_TILDE] = ACTIONS(873), + [anon_sym_BANG_TILDE] = ACTIONS(873), + [anon_sym_bit_DASHand] = ACTIONS(873), + [anon_sym_bit_DASHxor] = ACTIONS(873), + [anon_sym_bit_DASHor] = ACTIONS(873), + [anon_sym_and] = ACTIONS(873), + [anon_sym_xor] = ACTIONS(873), + [anon_sym_or] = ACTIONS(873), + [anon_sym_DOT_DOT_LT] = ACTIONS(873), + [anon_sym_DOT_DOT] = ACTIONS(873), + [anon_sym_DOT_DOT_EQ] = ACTIONS(873), + [sym_val_nothing] = ACTIONS(873), + [anon_sym_true] = ACTIONS(873), + [anon_sym_false] = ACTIONS(873), + [aux_sym_val_number_token1] = ACTIONS(873), + [aux_sym_val_number_token2] = ACTIONS(873), + [aux_sym_val_number_token3] = ACTIONS(873), + [aux_sym_val_number_token4] = ACTIONS(873), + [aux_sym_val_number_token5] = ACTIONS(873), + [anon_sym_inf] = ACTIONS(873), + [anon_sym_DASHinf] = ACTIONS(873), + [anon_sym_NaN] = ACTIONS(873), + [anon_sym_0b] = ACTIONS(873), + [anon_sym_0o] = ACTIONS(873), + [anon_sym_0x] = ACTIONS(873), + [sym_val_date] = ACTIONS(873), + [anon_sym_DQUOTE] = ACTIONS(873), + [sym__str_single_quotes] = ACTIONS(873), + [sym__str_back_ticks] = ACTIONS(873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(873), + [anon_sym_err_GT] = ACTIONS(873), + [anon_sym_out_GT] = ACTIONS(873), + [anon_sym_e_GT] = ACTIONS(873), + [anon_sym_o_GT] = ACTIONS(873), + [anon_sym_err_PLUSout_GT] = ACTIONS(873), + [anon_sym_out_PLUSerr_GT] = ACTIONS(873), + [anon_sym_o_PLUSe_GT] = ACTIONS(873), + [anon_sym_e_PLUSo_GT] = ACTIONS(873), + [sym_short_flag] = ACTIONS(873), + [aux_sym_unquoted_token1] = ACTIONS(873), + [anon_sym_POUND] = ACTIONS(3), + }, + [454] = { + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), [anon_sym_GT] = ACTIONS(1263), - [anon_sym_DASH_DASH] = ACTIONS(793), + [anon_sym_DASH_DASH] = ACTIONS(801), [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_in] = ACTIONS(1267), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), [anon_sym_PLUS] = ACTIONS(1265), - [anon_sym_bit_DASHshl] = ACTIONS(1273), - [anon_sym_bit_DASHshr] = ACTIONS(1273), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), [anon_sym_EQ_EQ] = ACTIONS(1263), [anon_sym_BANG_EQ] = ACTIONS(1263), [anon_sym_LT2] = ACTIONS(1263), [anon_sym_LT_EQ] = ACTIONS(1263), [anon_sym_GT_EQ] = ACTIONS(1263), - [anon_sym_not_DASHin] = ACTIONS(1267), - [anon_sym_starts_DASHwith] = ACTIONS(1267), - [anon_sym_ends_DASHwith] = ACTIONS(1267), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [455] = { + [sym_comment] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(801), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_in] = ACTIONS(801), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(801), + [anon_sym_bit_DASHshl] = ACTIONS(801), + [anon_sym_bit_DASHshr] = ACTIONS(801), + [anon_sym_EQ_EQ] = ACTIONS(801), + [anon_sym_BANG_EQ] = ACTIONS(801), + [anon_sym_LT2] = ACTIONS(801), + [anon_sym_LT_EQ] = ACTIONS(801), + [anon_sym_GT_EQ] = ACTIONS(801), + [anon_sym_not_DASHin] = ACTIONS(801), + [anon_sym_starts_DASHwith] = ACTIONS(801), + [anon_sym_ends_DASHwith] = ACTIONS(801), + [anon_sym_EQ_TILDE] = ACTIONS(801), + [anon_sym_BANG_TILDE] = ACTIONS(801), + [anon_sym_bit_DASHand] = ACTIONS(801), + [anon_sym_bit_DASHxor] = ACTIONS(801), + [anon_sym_bit_DASHor] = ACTIONS(801), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), + [anon_sym_POUND] = ACTIONS(3), + }, + [456] = { + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(869), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_LPAREN] = ACTIONS(869), + [anon_sym_PIPE] = ACTIONS(869), + [anon_sym_DOLLAR] = ACTIONS(869), + [anon_sym_GT] = ACTIONS(869), + [anon_sym_DASH_DASH] = ACTIONS(869), + [anon_sym_DASH] = ACTIONS(869), + [anon_sym_in] = ACTIONS(869), + [anon_sym_LBRACE] = ACTIONS(869), + [anon_sym_STAR] = ACTIONS(869), + [anon_sym_STAR_STAR] = ACTIONS(869), + [anon_sym_PLUS_PLUS] = ACTIONS(869), + [anon_sym_SLASH] = ACTIONS(869), + [anon_sym_mod] = ACTIONS(869), + [anon_sym_SLASH_SLASH] = ACTIONS(869), + [anon_sym_PLUS] = ACTIONS(869), + [anon_sym_bit_DASHshl] = ACTIONS(869), + [anon_sym_bit_DASHshr] = ACTIONS(869), + [anon_sym_EQ_EQ] = ACTIONS(869), + [anon_sym_BANG_EQ] = ACTIONS(869), + [anon_sym_LT2] = ACTIONS(869), + [anon_sym_LT_EQ] = ACTIONS(869), + [anon_sym_GT_EQ] = ACTIONS(869), + [anon_sym_not_DASHin] = ACTIONS(869), + [anon_sym_starts_DASHwith] = ACTIONS(869), + [anon_sym_ends_DASHwith] = ACTIONS(869), + [anon_sym_EQ_TILDE] = ACTIONS(869), + [anon_sym_BANG_TILDE] = ACTIONS(869), + [anon_sym_bit_DASHand] = ACTIONS(869), + [anon_sym_bit_DASHxor] = ACTIONS(869), + [anon_sym_bit_DASHor] = ACTIONS(869), + [anon_sym_and] = ACTIONS(869), + [anon_sym_xor] = ACTIONS(869), + [anon_sym_or] = ACTIONS(869), + [anon_sym_DOT_DOT_LT] = ACTIONS(869), + [anon_sym_DOT_DOT] = ACTIONS(869), + [anon_sym_DOT_DOT_EQ] = ACTIONS(869), + [sym_val_nothing] = ACTIONS(869), + [anon_sym_true] = ACTIONS(869), + [anon_sym_false] = ACTIONS(869), + [aux_sym_val_number_token1] = ACTIONS(869), + [aux_sym_val_number_token2] = ACTIONS(869), + [aux_sym_val_number_token3] = ACTIONS(869), + [aux_sym_val_number_token4] = ACTIONS(869), + [aux_sym_val_number_token5] = ACTIONS(869), + [anon_sym_inf] = ACTIONS(869), + [anon_sym_DASHinf] = ACTIONS(869), + [anon_sym_NaN] = ACTIONS(869), + [anon_sym_0b] = ACTIONS(869), + [anon_sym_0o] = ACTIONS(869), + [anon_sym_0x] = ACTIONS(869), + [sym_val_date] = ACTIONS(869), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym__str_single_quotes] = ACTIONS(869), + [sym__str_back_ticks] = ACTIONS(869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(869), + [anon_sym_err_GT] = ACTIONS(869), + [anon_sym_out_GT] = ACTIONS(869), + [anon_sym_e_GT] = ACTIONS(869), + [anon_sym_o_GT] = ACTIONS(869), + [anon_sym_err_PLUSout_GT] = ACTIONS(869), + [anon_sym_out_PLUSerr_GT] = ACTIONS(869), + [anon_sym_o_PLUSe_GT] = ACTIONS(869), + [anon_sym_e_PLUSo_GT] = ACTIONS(869), + [sym_short_flag] = ACTIONS(869), + [aux_sym_unquoted_token1] = ACTIONS(869), [anon_sym_POUND] = ACTIONS(3), }, [457] = { @@ -84191,1311 +84268,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [458] = { [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(1269), - [anon_sym_mod] = ACTIONS(1269), - [anon_sym_SLASH_SLASH] = ACTIONS(1269), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [ts_builtin_sym_end] = ACTIONS(803), + [anon_sym_SEMI] = ACTIONS(801), + [anon_sym_LF] = ACTIONS(803), + [anon_sym_LBRACK] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(801), + [anon_sym_PIPE] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(801), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(801), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(801), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(801), + [anon_sym_xor] = ACTIONS(801), + [anon_sym_or] = ACTIONS(801), + [anon_sym_DOT_DOT_LT] = ACTIONS(801), + [anon_sym_DOT_DOT] = ACTIONS(801), + [anon_sym_DOT_DOT_EQ] = ACTIONS(801), + [sym_val_nothing] = ACTIONS(801), + [anon_sym_true] = ACTIONS(801), + [anon_sym_false] = ACTIONS(801), + [aux_sym_val_number_token1] = ACTIONS(801), + [aux_sym_val_number_token2] = ACTIONS(801), + [aux_sym_val_number_token3] = ACTIONS(801), + [aux_sym_val_number_token4] = ACTIONS(801), + [aux_sym_val_number_token5] = ACTIONS(801), + [anon_sym_inf] = ACTIONS(801), + [anon_sym_DASHinf] = ACTIONS(801), + [anon_sym_NaN] = ACTIONS(801), + [anon_sym_0b] = ACTIONS(801), + [anon_sym_0o] = ACTIONS(801), + [anon_sym_0x] = ACTIONS(801), + [sym_val_date] = ACTIONS(801), + [anon_sym_DQUOTE] = ACTIONS(801), + [sym__str_single_quotes] = ACTIONS(801), + [sym__str_back_ticks] = ACTIONS(801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(801), + [anon_sym_err_GT] = ACTIONS(801), + [anon_sym_out_GT] = ACTIONS(801), + [anon_sym_e_GT] = ACTIONS(801), + [anon_sym_o_GT] = ACTIONS(801), + [anon_sym_err_PLUSout_GT] = ACTIONS(801), + [anon_sym_out_PLUSerr_GT] = ACTIONS(801), + [anon_sym_o_PLUSe_GT] = ACTIONS(801), + [anon_sym_e_PLUSo_GT] = ACTIONS(801), + [sym_short_flag] = ACTIONS(801), + [aux_sym_unquoted_token1] = ACTIONS(801), [anon_sym_POUND] = ACTIONS(3), }, [459] = { [sym_comment] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LF] = ACTIONS(831), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_DASH_DASH] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_in] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_mod] = ACTIONS(829), - [anon_sym_SLASH_SLASH] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_bit_DASHshl] = ACTIONS(829), - [anon_sym_bit_DASHshr] = ACTIONS(829), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_LT2] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_not_DASHin] = ACTIONS(829), - [anon_sym_starts_DASHwith] = ACTIONS(829), - [anon_sym_ends_DASHwith] = ACTIONS(829), - [anon_sym_EQ_TILDE] = ACTIONS(829), - [anon_sym_BANG_TILDE] = ACTIONS(829), - [anon_sym_bit_DASHand] = ACTIONS(829), - [anon_sym_bit_DASHxor] = ACTIONS(829), - [anon_sym_bit_DASHor] = ACTIONS(829), - [anon_sym_and] = ACTIONS(829), - [anon_sym_xor] = ACTIONS(829), - [anon_sym_or] = ACTIONS(829), - [anon_sym_DOT_DOT_LT] = ACTIONS(829), - [anon_sym_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [sym_val_nothing] = ACTIONS(829), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [aux_sym_val_number_token1] = ACTIONS(829), - [aux_sym_val_number_token2] = ACTIONS(829), - [aux_sym_val_number_token3] = ACTIONS(829), - [aux_sym_val_number_token4] = ACTIONS(829), - [aux_sym_val_number_token5] = ACTIONS(829), - [anon_sym_inf] = ACTIONS(829), - [anon_sym_DASHinf] = ACTIONS(829), - [anon_sym_NaN] = ACTIONS(829), - [anon_sym_0b] = ACTIONS(829), - [anon_sym_0o] = ACTIONS(829), - [anon_sym_0x] = ACTIONS(829), - [sym_val_date] = ACTIONS(829), - [anon_sym_DQUOTE] = ACTIONS(829), - [sym__str_single_quotes] = ACTIONS(829), - [sym__str_back_ticks] = ACTIONS(829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(829), - [anon_sym_err_GT] = ACTIONS(829), - [anon_sym_out_GT] = ACTIONS(829), - [anon_sym_e_GT] = ACTIONS(829), - [anon_sym_o_GT] = ACTIONS(829), - [anon_sym_err_PLUSout_GT] = ACTIONS(829), - [anon_sym_out_PLUSerr_GT] = ACTIONS(829), - [anon_sym_o_PLUSe_GT] = ACTIONS(829), - [anon_sym_e_PLUSo_GT] = ACTIONS(829), - [sym_short_flag] = ACTIONS(829), - [aux_sym_unquoted_token1] = ACTIONS(829), + [ts_builtin_sym_end] = ACTIONS(933), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_DASH_DASH] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_in] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_STAR_STAR] = ACTIONS(931), + [anon_sym_PLUS_PLUS] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_mod] = ACTIONS(931), + [anon_sym_SLASH_SLASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_bit_DASHshl] = ACTIONS(931), + [anon_sym_bit_DASHshr] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_LT2] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_not_DASHin] = ACTIONS(931), + [anon_sym_starts_DASHwith] = ACTIONS(931), + [anon_sym_ends_DASHwith] = ACTIONS(931), + [anon_sym_EQ_TILDE] = ACTIONS(931), + [anon_sym_BANG_TILDE] = ACTIONS(931), + [anon_sym_bit_DASHand] = ACTIONS(931), + [anon_sym_bit_DASHxor] = ACTIONS(931), + [anon_sym_bit_DASHor] = ACTIONS(931), + [anon_sym_and] = ACTIONS(931), + [anon_sym_xor] = ACTIONS(931), + [anon_sym_or] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [sym_val_nothing] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym_val_number_token1] = ACTIONS(931), + [aux_sym_val_number_token2] = ACTIONS(931), + [aux_sym_val_number_token3] = ACTIONS(931), + [aux_sym_val_number_token4] = ACTIONS(931), + [aux_sym_val_number_token5] = ACTIONS(931), + [anon_sym_inf] = ACTIONS(931), + [anon_sym_DASHinf] = ACTIONS(931), + [anon_sym_NaN] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(931), + [anon_sym_0x] = ACTIONS(931), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_err_GT] = ACTIONS(931), + [anon_sym_out_GT] = ACTIONS(931), + [anon_sym_e_GT] = ACTIONS(931), + [anon_sym_o_GT] = ACTIONS(931), + [anon_sym_err_PLUSout_GT] = ACTIONS(931), + [anon_sym_out_PLUSerr_GT] = ACTIONS(931), + [anon_sym_o_PLUSe_GT] = ACTIONS(931), + [anon_sym_e_PLUSo_GT] = ACTIONS(931), + [sym_short_flag] = ACTIONS(931), + [aux_sym_unquoted_token1] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(3), }, [460] = { [sym_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(795), - [anon_sym_SEMI] = ACTIONS(793), - [anon_sym_LF] = ACTIONS(795), - [anon_sym_LBRACK] = ACTIONS(793), - [anon_sym_LPAREN] = ACTIONS(793), - [anon_sym_PIPE] = ACTIONS(793), - [anon_sym_DOLLAR] = ACTIONS(793), - [anon_sym_GT] = ACTIONS(793), - [anon_sym_DASH_DASH] = ACTIONS(793), - [anon_sym_DASH] = ACTIONS(793), - [anon_sym_in] = ACTIONS(793), - [anon_sym_LBRACE] = ACTIONS(793), - [anon_sym_STAR] = ACTIONS(793), - [anon_sym_STAR_STAR] = ACTIONS(1271), - [anon_sym_PLUS_PLUS] = ACTIONS(1271), - [anon_sym_SLASH] = ACTIONS(793), - [anon_sym_mod] = ACTIONS(793), - [anon_sym_SLASH_SLASH] = ACTIONS(793), - [anon_sym_PLUS] = ACTIONS(793), - [anon_sym_bit_DASHshl] = ACTIONS(793), - [anon_sym_bit_DASHshr] = ACTIONS(793), - [anon_sym_EQ_EQ] = ACTIONS(793), - [anon_sym_BANG_EQ] = ACTIONS(793), - [anon_sym_LT2] = ACTIONS(793), - [anon_sym_LT_EQ] = ACTIONS(793), - [anon_sym_GT_EQ] = ACTIONS(793), - [anon_sym_not_DASHin] = ACTIONS(793), - [anon_sym_starts_DASHwith] = ACTIONS(793), - [anon_sym_ends_DASHwith] = ACTIONS(793), - [anon_sym_EQ_TILDE] = ACTIONS(793), - [anon_sym_BANG_TILDE] = ACTIONS(793), - [anon_sym_bit_DASHand] = ACTIONS(793), - [anon_sym_bit_DASHxor] = ACTIONS(793), - [anon_sym_bit_DASHor] = ACTIONS(793), - [anon_sym_and] = ACTIONS(793), - [anon_sym_xor] = ACTIONS(793), - [anon_sym_or] = ACTIONS(793), - [anon_sym_DOT_DOT_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(793), - [sym_val_nothing] = ACTIONS(793), - [anon_sym_true] = ACTIONS(793), - [anon_sym_false] = ACTIONS(793), - [aux_sym_val_number_token1] = ACTIONS(793), - [aux_sym_val_number_token2] = ACTIONS(793), - [aux_sym_val_number_token3] = ACTIONS(793), - [aux_sym_val_number_token4] = ACTIONS(793), - [aux_sym_val_number_token5] = ACTIONS(793), - [anon_sym_inf] = ACTIONS(793), - [anon_sym_DASHinf] = ACTIONS(793), - [anon_sym_NaN] = ACTIONS(793), - [anon_sym_0b] = ACTIONS(793), - [anon_sym_0o] = ACTIONS(793), - [anon_sym_0x] = ACTIONS(793), - [sym_val_date] = ACTIONS(793), - [anon_sym_DQUOTE] = ACTIONS(793), - [sym__str_single_quotes] = ACTIONS(793), - [sym__str_back_ticks] = ACTIONS(793), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), - [anon_sym_err_GT] = ACTIONS(793), - [anon_sym_out_GT] = ACTIONS(793), - [anon_sym_e_GT] = ACTIONS(793), - [anon_sym_o_GT] = ACTIONS(793), - [anon_sym_err_PLUSout_GT] = ACTIONS(793), - [anon_sym_out_PLUSerr_GT] = ACTIONS(793), - [anon_sym_o_PLUSe_GT] = ACTIONS(793), - [anon_sym_e_PLUSo_GT] = ACTIONS(793), - [sym_short_flag] = ACTIONS(793), - [aux_sym_unquoted_token1] = ACTIONS(793), + [ts_builtin_sym_end] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LF] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_DOLLAR] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_DASH_DASH] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_in] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1265), + [anon_sym_bit_DASHshl] = ACTIONS(1271), + [anon_sym_bit_DASHshr] = ACTIONS(1271), + [anon_sym_EQ_EQ] = ACTIONS(1263), + [anon_sym_BANG_EQ] = ACTIONS(1263), + [anon_sym_LT2] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1263), + [anon_sym_GT_EQ] = ACTIONS(1263), + [anon_sym_not_DASHin] = ACTIONS(1273), + [anon_sym_starts_DASHwith] = ACTIONS(1273), + [anon_sym_ends_DASHwith] = ACTIONS(1273), + [anon_sym_EQ_TILDE] = ACTIONS(1275), + [anon_sym_BANG_TILDE] = ACTIONS(1275), + [anon_sym_bit_DASHand] = ACTIONS(1277), + [anon_sym_bit_DASHxor] = ACTIONS(1279), + [anon_sym_bit_DASHor] = ACTIONS(1281), + [anon_sym_and] = ACTIONS(1283), + [anon_sym_xor] = ACTIONS(1285), + [anon_sym_or] = ACTIONS(1287), + [anon_sym_DOT_DOT_LT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1259), + [sym_val_nothing] = ACTIONS(1259), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [aux_sym_val_number_token1] = ACTIONS(1259), + [aux_sym_val_number_token2] = ACTIONS(1259), + [aux_sym_val_number_token3] = ACTIONS(1259), + [aux_sym_val_number_token4] = ACTIONS(1259), + [aux_sym_val_number_token5] = ACTIONS(1259), + [anon_sym_inf] = ACTIONS(1259), + [anon_sym_DASHinf] = ACTIONS(1259), + [anon_sym_NaN] = ACTIONS(1259), + [anon_sym_0b] = ACTIONS(1259), + [anon_sym_0o] = ACTIONS(1259), + [anon_sym_0x] = ACTIONS(1259), + [sym_val_date] = ACTIONS(1259), + [anon_sym_DQUOTE] = ACTIONS(1259), + [sym__str_single_quotes] = ACTIONS(1259), + [sym__str_back_ticks] = ACTIONS(1259), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1259), + [anon_sym_err_GT] = ACTIONS(1259), + [anon_sym_out_GT] = ACTIONS(1259), + [anon_sym_e_GT] = ACTIONS(1259), + [anon_sym_o_GT] = ACTIONS(1259), + [anon_sym_err_PLUSout_GT] = ACTIONS(1259), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1259), + [anon_sym_o_PLUSe_GT] = ACTIONS(1259), + [anon_sym_e_PLUSo_GT] = ACTIONS(1259), + [sym_short_flag] = ACTIONS(1259), + [aux_sym_unquoted_token1] = ACTIONS(1259), [anon_sym_POUND] = ACTIONS(3), }, [461] = { [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1299), - [anon_sym_alias] = ACTIONS(1299), - [anon_sym_let] = ACTIONS(1299), - [anon_sym_let_DASHenv] = ACTIONS(1299), - [anon_sym_mut] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [sym_cmd_identifier] = ACTIONS(1299), - [sym__long_flag_identifier] = ACTIONS(1301), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1299), - [anon_sym_def_DASHenv] = ACTIONS(1299), - [anon_sym_export_DASHenv] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym_module] = ACTIONS(1299), - [anon_sym_use] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_RPAREN] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1299), - [anon_sym_error] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_loop] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_match] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_RBRACE] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_source] = ACTIONS(1299), - [anon_sym_source_DASHenv] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_hide] = ACTIONS(1299), - [anon_sym_hide_DASHenv] = ACTIONS(1299), - [anon_sym_overlay] = ACTIONS(1299), - [anon_sym_as] = ACTIONS(1299), - [anon_sym_where] = ACTIONS(1299), - [anon_sym_not] = ACTIONS(1299), - [anon_sym_DOT_DOT_LT] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), - [sym_val_nothing] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1299), - [anon_sym_false] = ACTIONS(1299), - [aux_sym_val_number_token1] = ACTIONS(1299), - [aux_sym_val_number_token2] = ACTIONS(1299), - [aux_sym_val_number_token3] = ACTIONS(1299), - [aux_sym_val_number_token4] = ACTIONS(1299), - [aux_sym_val_number_token5] = ACTIONS(1299), - [anon_sym_inf] = ACTIONS(1299), - [anon_sym_DASHinf] = ACTIONS(1299), - [anon_sym_NaN] = ACTIONS(1299), - [anon_sym_0b] = ACTIONS(1299), - [anon_sym_0o] = ACTIONS(1299), - [anon_sym_0x] = ACTIONS(1299), - [sym_val_date] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym__str_single_quotes] = ACTIONS(1299), - [sym__str_back_ticks] = ACTIONS(1299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [sym_short_flag] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [sym__long_flag_identifier] = ACTIONS(1309), + [anon_sym_LF] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_def_DASHenv] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [sym_val_nothing] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym_val_number_token1] = ACTIONS(1307), + [aux_sym_val_number_token2] = ACTIONS(1307), + [aux_sym_val_number_token3] = ACTIONS(1307), + [aux_sym_val_number_token4] = ACTIONS(1307), + [aux_sym_val_number_token5] = ACTIONS(1307), + [anon_sym_inf] = ACTIONS(1307), + [anon_sym_DASHinf] = ACTIONS(1307), + [anon_sym_NaN] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [sym_short_flag] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(3), }, [462] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1437), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), + [aux_sym_command_repeat1] = STATE(466), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, [463] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1434), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), + [sym_path] = STATE(512), [sym_comment] = STATE(463), - [aux_sym_command_repeat1] = STATE(479), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [aux_sym_cell_path_repeat1] = STATE(465), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), [anon_sym_POUND] = ACTIONS(3), }, [464] = { + [sym_path] = STATE(512), [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_RPAREN] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_RBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), + [aux_sym_cell_path_repeat1] = STATE(464), + [anon_sym_export] = ACTIONS(729), + [anon_sym_alias] = ACTIONS(729), + [anon_sym_let] = ACTIONS(729), + [anon_sym_let_DASHenv] = ACTIONS(729), + [anon_sym_mut] = ACTIONS(729), + [anon_sym_const] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [sym_cmd_identifier] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_def] = ACTIONS(729), + [anon_sym_def_DASHenv] = ACTIONS(729), + [anon_sym_export_DASHenv] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_module] = ACTIONS(729), + [anon_sym_use] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_error] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_loop] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_match] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(1353), + [anon_sym_try] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_source] = ACTIONS(729), + [anon_sym_source_DASHenv] = ACTIONS(729), + [anon_sym_register] = ACTIONS(729), + [anon_sym_hide] = ACTIONS(729), + [anon_sym_hide_DASHenv] = ACTIONS(729), + [anon_sym_overlay] = ACTIONS(729), + [anon_sym_where] = ACTIONS(729), + [anon_sym_not] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), [anon_sym_POUND] = ACTIONS(3), }, [465] = { - [sym_path] = STATE(510), + [sym_path] = STATE(512), [sym_comment] = STATE(465), - [aux_sym_cell_path_repeat1] = STATE(465), - [anon_sym_export] = ACTIONS(699), - [anon_sym_alias] = ACTIONS(699), - [anon_sym_let] = ACTIONS(699), - [anon_sym_let_DASHenv] = ACTIONS(699), - [anon_sym_mut] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [sym_cmd_identifier] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_def] = ACTIONS(699), - [anon_sym_def_DASHenv] = ACTIONS(699), - [anon_sym_export_DASHenv] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_module] = ACTIONS(699), - [anon_sym_use] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_error] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_loop] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_match] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(1343), - [anon_sym_try] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_source] = ACTIONS(699), - [anon_sym_source_DASHenv] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_hide] = ACTIONS(699), - [anon_sym_hide_DASHenv] = ACTIONS(699), - [anon_sym_overlay] = ACTIONS(699), - [anon_sym_where] = ACTIONS(699), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), - [anon_sym_POUND] = ACTIONS(3), - }, - [466] = { - [sym_path] = STATE(510), - [sym_comment] = STATE(466), - [aux_sym_cell_path_repeat1] = STATE(465), - [anon_sym_export] = ACTIONS(732), - [anon_sym_alias] = ACTIONS(732), - [anon_sym_let] = ACTIONS(732), - [anon_sym_let_DASHenv] = ACTIONS(732), - [anon_sym_mut] = ACTIONS(732), - [anon_sym_const] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [sym_cmd_identifier] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_def] = ACTIONS(732), - [anon_sym_def_DASHenv] = ACTIONS(732), - [anon_sym_export_DASHenv] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(732), - [anon_sym_module] = ACTIONS(732), - [anon_sym_use] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_error] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_loop] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_match] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_source] = ACTIONS(732), - [anon_sym_source_DASHenv] = ACTIONS(732), - [anon_sym_register] = ACTIONS(732), - [anon_sym_hide] = ACTIONS(732), - [anon_sym_hide_DASHenv] = ACTIONS(732), - [anon_sym_overlay] = ACTIONS(732), - [anon_sym_where] = ACTIONS(732), - [anon_sym_not] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(3), - }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1348), - [anon_sym_alias] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_let_DASHenv] = ACTIONS(1348), - [anon_sym_mut] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [sym_cmd_identifier] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_def_DASHenv] = ACTIONS(1348), - [anon_sym_export_DASHenv] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_module] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_RPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_error] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_source] = ACTIONS(1348), - [anon_sym_source_DASHenv] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_hide] = ACTIONS(1348), - [anon_sym_hide_DASHenv] = ACTIONS(1348), - [anon_sym_overlay] = ACTIONS(1348), - [anon_sym_as] = ACTIONS(1348), - [anon_sym_where] = ACTIONS(1348), - [anon_sym_not] = ACTIONS(1348), - [anon_sym_DOT_DOT_LT] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), - [sym_val_nothing] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [aux_sym_val_number_token1] = ACTIONS(1348), - [aux_sym_val_number_token2] = ACTIONS(1348), - [aux_sym_val_number_token3] = ACTIONS(1348), - [aux_sym_val_number_token4] = ACTIONS(1348), - [aux_sym_val_number_token5] = ACTIONS(1348), - [anon_sym_inf] = ACTIONS(1348), - [anon_sym_DASHinf] = ACTIONS(1348), - [anon_sym_NaN] = ACTIONS(1348), - [anon_sym_0b] = ACTIONS(1348), - [anon_sym_0o] = ACTIONS(1348), - [anon_sym_0x] = ACTIONS(1348), - [sym_val_date] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1348), - [anon_sym_CARET] = ACTIONS(1348), - [sym_short_flag] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(3), - }, - [468] = { - [sym_path] = STATE(510), - [sym_comment] = STATE(468), - [aux_sym_cell_path_repeat1] = STATE(466), - [anon_sym_export] = ACTIONS(728), - [anon_sym_alias] = ACTIONS(728), - [anon_sym_let] = ACTIONS(728), - [anon_sym_let_DASHenv] = ACTIONS(728), - [anon_sym_mut] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [sym_cmd_identifier] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_def] = ACTIONS(728), - [anon_sym_def_DASHenv] = ACTIONS(728), - [anon_sym_export_DASHenv] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(728), - [anon_sym_module] = ACTIONS(728), - [anon_sym_use] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_error] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_loop] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_do] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_match] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_RBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_source] = ACTIONS(728), - [anon_sym_source_DASHenv] = ACTIONS(728), - [anon_sym_register] = ACTIONS(728), - [anon_sym_hide] = ACTIONS(728), - [anon_sym_hide_DASHenv] = ACTIONS(728), - [anon_sym_overlay] = ACTIONS(728), - [anon_sym_where] = ACTIONS(728), - [anon_sym_not] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(3), - }, - [469] = { - [sym_comment] = STATE(469), - [ts_builtin_sym_end] = ACTIONS(1303), - [anon_sym_export] = ACTIONS(1299), - [anon_sym_alias] = ACTIONS(1299), - [anon_sym_let] = ACTIONS(1299), - [anon_sym_let_DASHenv] = ACTIONS(1299), - [anon_sym_mut] = ACTIONS(1299), - [anon_sym_const] = ACTIONS(1299), - [anon_sym_SEMI] = ACTIONS(1299), - [sym_cmd_identifier] = ACTIONS(1299), - [sym__long_flag_identifier] = ACTIONS(1352), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_def] = ACTIONS(1299), - [anon_sym_def_DASHenv] = ACTIONS(1299), - [anon_sym_export_DASHenv] = ACTIONS(1299), - [anon_sym_extern] = ACTIONS(1299), - [anon_sym_module] = ACTIONS(1299), - [anon_sym_use] = ACTIONS(1299), - [anon_sym_LBRACK] = ACTIONS(1299), - [anon_sym_LPAREN] = ACTIONS(1299), - [anon_sym_DOLLAR] = ACTIONS(1299), - [anon_sym_error] = ACTIONS(1299), - [anon_sym_DASH_DASH] = ACTIONS(1299), - [anon_sym_DASH] = ACTIONS(1299), - [anon_sym_break] = ACTIONS(1299), - [anon_sym_continue] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1299), - [anon_sym_loop] = ACTIONS(1299), - [anon_sym_while] = ACTIONS(1299), - [anon_sym_do] = ACTIONS(1299), - [anon_sym_if] = ACTIONS(1299), - [anon_sym_match] = ACTIONS(1299), - [anon_sym_LBRACE] = ACTIONS(1299), - [anon_sym_try] = ACTIONS(1299), - [anon_sym_return] = ACTIONS(1299), - [anon_sym_source] = ACTIONS(1299), - [anon_sym_source_DASHenv] = ACTIONS(1299), - [anon_sym_register] = ACTIONS(1299), - [anon_sym_hide] = ACTIONS(1299), - [anon_sym_hide_DASHenv] = ACTIONS(1299), - [anon_sym_overlay] = ACTIONS(1299), - [anon_sym_as] = ACTIONS(1299), - [anon_sym_where] = ACTIONS(1299), - [anon_sym_not] = ACTIONS(1299), - [anon_sym_DOT_DOT_LT] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1299), - [sym_val_nothing] = ACTIONS(1299), - [anon_sym_true] = ACTIONS(1299), - [anon_sym_false] = ACTIONS(1299), - [aux_sym_val_number_token1] = ACTIONS(1299), - [aux_sym_val_number_token2] = ACTIONS(1299), - [aux_sym_val_number_token3] = ACTIONS(1299), - [aux_sym_val_number_token4] = ACTIONS(1299), - [aux_sym_val_number_token5] = ACTIONS(1299), - [anon_sym_inf] = ACTIONS(1299), - [anon_sym_DASHinf] = ACTIONS(1299), - [anon_sym_NaN] = ACTIONS(1299), - [anon_sym_0b] = ACTIONS(1299), - [anon_sym_0o] = ACTIONS(1299), - [anon_sym_0x] = ACTIONS(1299), - [sym_val_date] = ACTIONS(1299), - [anon_sym_DQUOTE] = ACTIONS(1299), - [sym__str_single_quotes] = ACTIONS(1299), - [sym__str_back_ticks] = ACTIONS(1299), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1299), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1299), - [anon_sym_CARET] = ACTIONS(1299), - [sym_short_flag] = ACTIONS(1299), - [anon_sym_POUND] = ACTIONS(3), - }, - [470] = { - [sym_cell_path] = STATE(615), - [sym_path] = STATE(468), - [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(706), - [anon_sym_alias] = ACTIONS(706), - [anon_sym_let] = ACTIONS(706), - [anon_sym_let_DASHenv] = ACTIONS(706), - [anon_sym_mut] = ACTIONS(706), - [anon_sym_const] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [sym_cmd_identifier] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_def] = ACTIONS(706), - [anon_sym_def_DASHenv] = ACTIONS(706), - [anon_sym_export_DASHenv] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(706), - [anon_sym_module] = ACTIONS(706), - [anon_sym_use] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_error] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_loop] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_match] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_source] = ACTIONS(706), - [anon_sym_source_DASHenv] = ACTIONS(706), - [anon_sym_register] = ACTIONS(706), - [anon_sym_hide] = ACTIONS(706), - [anon_sym_hide_DASHenv] = ACTIONS(706), - [anon_sym_overlay] = ACTIONS(706), - [anon_sym_where] = ACTIONS(706), - [anon_sym_not] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), - [anon_sym_POUND] = ACTIONS(3), - }, - [471] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1434), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(471), - [aux_sym_command_repeat1] = STATE(475), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(3), - }, - [472] = { - [sym_cell_path] = STATE(547), - [sym_path] = STATE(468), - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(744), - [anon_sym_alias] = ACTIONS(744), - [anon_sym_let] = ACTIONS(744), - [anon_sym_let_DASHenv] = ACTIONS(744), - [anon_sym_mut] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [sym_cmd_identifier] = ACTIONS(744), - [anon_sym_LF] = ACTIONS(746), - [anon_sym_def] = ACTIONS(744), - [anon_sym_def_DASHenv] = ACTIONS(744), - [anon_sym_export_DASHenv] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_module] = ACTIONS(744), - [anon_sym_use] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_error] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_loop] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_match] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_source] = ACTIONS(744), - [anon_sym_source_DASHenv] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_hide] = ACTIONS(744), - [anon_sym_hide_DASHenv] = ACTIONS(744), - [anon_sym_overlay] = ACTIONS(744), - [anon_sym_where] = ACTIONS(744), - [anon_sym_not] = ACTIONS(744), - [anon_sym_DOT_DOT_LT] = ACTIONS(744), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(744), - [sym_val_nothing] = ACTIONS(744), - [anon_sym_true] = ACTIONS(744), - [anon_sym_false] = ACTIONS(744), - [aux_sym_val_number_token1] = ACTIONS(744), - [aux_sym_val_number_token2] = ACTIONS(744), - [aux_sym_val_number_token3] = ACTIONS(744), - [aux_sym_val_number_token4] = ACTIONS(744), - [aux_sym_val_number_token5] = ACTIONS(744), - [anon_sym_inf] = ACTIONS(744), - [anon_sym_DASHinf] = ACTIONS(744), - [anon_sym_NaN] = ACTIONS(744), - [anon_sym_0b] = ACTIONS(744), - [anon_sym_0o] = ACTIONS(744), - [anon_sym_0x] = ACTIONS(744), - [sym_val_date] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [sym__str_single_quotes] = ACTIONS(744), - [sym__str_back_ticks] = ACTIONS(744), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(3), - }, - [473] = { - [sym__expression] = STATE(336), - [sym_expr_unary] = STATE(396), - [sym_expr_binary] = STATE(396), - [sym_expr_parenthesized] = STATE(395), - [sym_val_range] = STATE(396), - [sym__value] = STATE(396), - [sym_val_bool] = STATE(361), - [sym_val_variable] = STATE(361), - [sym__var] = STATE(266), - [sym_val_number] = STATE(6), - [sym_val_duration] = STATE(361), - [sym_val_filesize] = STATE(361), - [sym_val_binary] = STATE(361), - [sym_val_string] = STATE(361), - [sym__str_double_quotes] = STATE(341), - [sym_val_interpolated] = STATE(361), - [sym__inter_single_quotes] = STATE(359), - [sym__inter_double_quotes] = STATE(358), - [sym_val_list] = STATE(361), - [sym_val_record] = STATE(361), - [sym_val_table] = STATE(361), - [sym_val_closure] = STATE(361), - [sym_unquoted] = STATE(1425), - [sym_comment] = STATE(473), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1362), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1364), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_not] = ACTIONS(1370), - [anon_sym_DOT_DOT_LT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1372), - [sym_val_nothing] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), - [aux_sym_val_number_token1] = ACTIONS(1378), - [aux_sym_val_number_token2] = ACTIONS(1378), - [aux_sym_val_number_token3] = ACTIONS(1378), - [aux_sym_val_number_token4] = ACTIONS(1378), - [aux_sym_val_number_token5] = ACTIONS(1378), - [anon_sym_inf] = ACTIONS(1378), - [anon_sym_DASHinf] = ACTIONS(1378), - [anon_sym_NaN] = ACTIONS(1378), - [anon_sym_0b] = ACTIONS(1380), - [anon_sym_0o] = ACTIONS(1380), - [anon_sym_0x] = ACTIONS(1380), - [sym_val_date] = ACTIONS(1374), - [anon_sym_DQUOTE] = ACTIONS(1382), - [sym__str_single_quotes] = ACTIONS(1384), - [sym__str_back_ticks] = ACTIONS(1384), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1386), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1388), - [anon_sym_err_GT] = ACTIONS(1358), - [anon_sym_out_GT] = ACTIONS(1358), - [anon_sym_e_GT] = ACTIONS(1358), - [anon_sym_o_GT] = ACTIONS(1358), - [anon_sym_err_PLUSout_GT] = ACTIONS(1358), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1358), - [anon_sym_o_PLUSe_GT] = ACTIONS(1358), - [anon_sym_e_PLUSo_GT] = ACTIONS(1358), - [sym_short_flag] = ACTIONS(1358), - [aux_sym_unquoted_token1] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(3), - }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1390), - [anon_sym_alias] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_let_DASHenv] = ACTIONS(1390), - [anon_sym_mut] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [sym_cmd_identifier] = ACTIONS(1390), - [anon_sym_LF] = ACTIONS(1392), - [anon_sym_def] = ACTIONS(1390), - [anon_sym_def_DASHenv] = ACTIONS(1390), - [anon_sym_export_DASHenv] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_module] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_RPAREN] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_error] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_RBRACE] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_source] = ACTIONS(1390), - [anon_sym_source_DASHenv] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_hide] = ACTIONS(1390), - [anon_sym_hide_DASHenv] = ACTIONS(1390), - [anon_sym_overlay] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1390), - [anon_sym_where] = ACTIONS(1390), - [anon_sym_not] = ACTIONS(1390), - [anon_sym_DOT_DOT_LT] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [sym_val_nothing] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [aux_sym_val_number_token1] = ACTIONS(1390), - [aux_sym_val_number_token2] = ACTIONS(1390), - [aux_sym_val_number_token3] = ACTIONS(1390), - [aux_sym_val_number_token4] = ACTIONS(1390), - [aux_sym_val_number_token5] = ACTIONS(1390), - [anon_sym_inf] = ACTIONS(1390), - [anon_sym_DASHinf] = ACTIONS(1390), - [anon_sym_NaN] = ACTIONS(1390), - [anon_sym_0b] = ACTIONS(1390), - [anon_sym_0o] = ACTIONS(1390), - [anon_sym_0x] = ACTIONS(1390), - [sym_val_date] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym__str_single_quotes] = ACTIONS(1390), - [sym__str_back_ticks] = ACTIONS(1390), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [sym_short_flag] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(3), - }, - [475] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1434), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(475), - [aux_sym_command_repeat1] = STATE(479), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LF] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(3), - }, - [476] = { - [sym_cell_path] = STATE(585), - [sym_path] = STATE(468), - [sym_comment] = STATE(476), + [aux_sym_cell_path_repeat1] = STATE(464), [anon_sym_export] = ACTIONS(740), [anon_sym_alias] = ACTIONS(740), [anon_sym_let] = ACTIONS(740), @@ -85527,7 +84812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(740), [anon_sym_RBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1351), [anon_sym_try] = ACTIONS(740), [anon_sym_return] = ACTIONS(740), [anon_sym_source] = ACTIONS(740), @@ -85564,439 +84849,1657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, + [466] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1437), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(466), + [aux_sym_command_repeat1] = STATE(466), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1363), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_DOT_DOT_LT] = ACTIONS(1375), + [anon_sym_DOT_DOT] = ACTIONS(1375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1375), + [sym_val_nothing] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1381), + [anon_sym_false] = ACTIONS(1381), + [aux_sym_val_number_token1] = ACTIONS(1384), + [aux_sym_val_number_token2] = ACTIONS(1384), + [aux_sym_val_number_token3] = ACTIONS(1384), + [aux_sym_val_number_token4] = ACTIONS(1384), + [aux_sym_val_number_token5] = ACTIONS(1384), + [anon_sym_inf] = ACTIONS(1384), + [anon_sym_DASHinf] = ACTIONS(1384), + [anon_sym_NaN] = ACTIONS(1384), + [anon_sym_0b] = ACTIONS(1387), + [anon_sym_0o] = ACTIONS(1387), + [anon_sym_0x] = ACTIONS(1387), + [sym_val_date] = ACTIONS(1378), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym__str_single_quotes] = ACTIONS(1393), + [sym__str_back_ticks] = ACTIONS(1393), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1396), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1399), + [anon_sym_err_GT] = ACTIONS(1402), + [anon_sym_out_GT] = ACTIONS(1402), + [anon_sym_e_GT] = ACTIONS(1402), + [anon_sym_o_GT] = ACTIONS(1402), + [anon_sym_err_PLUSout_GT] = ACTIONS(1402), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1402), + [anon_sym_o_PLUSe_GT] = ACTIONS(1402), + [anon_sym_e_PLUSo_GT] = ACTIONS(1402), + [sym_short_flag] = ACTIONS(1405), + [aux_sym_unquoted_token1] = ACTIONS(1408), + [anon_sym_POUND] = ACTIONS(3), + }, + [467] = { + [sym_cell_path] = STATE(590), + [sym_path] = STATE(463), + [sym_comment] = STATE(467), + [anon_sym_export] = ACTIONS(707), + [anon_sym_alias] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_let_DASHenv] = ACTIONS(707), + [anon_sym_mut] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [sym_cmd_identifier] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_def] = ACTIONS(707), + [anon_sym_def_DASHenv] = ACTIONS(707), + [anon_sym_export_DASHenv] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_error] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_source] = ACTIONS(707), + [anon_sym_source_DASHenv] = ACTIONS(707), + [anon_sym_register] = ACTIONS(707), + [anon_sym_hide] = ACTIONS(707), + [anon_sym_hide_DASHenv] = ACTIONS(707), + [anon_sym_overlay] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_not] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), + [anon_sym_POUND] = ACTIONS(3), + }, + [468] = { + [sym_comment] = STATE(468), + [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_def_DASHenv] = 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_DASH] = 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_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_as] = ACTIONS(1411), + [anon_sym_where] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_DOT_DOT_LT] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), + [sym_val_nothing] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1411), + [anon_sym_DASHinf] = ACTIONS(1411), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(3), + }, + [469] = { + [sym__expression] = STATE(391), + [sym_expr_unary] = STATE(365), + [sym_expr_binary] = STATE(365), + [sym_expr_parenthesized] = STATE(364), + [sym_val_range] = STATE(365), + [sym__value] = STATE(365), + [sym_val_bool] = STATE(393), + [sym_val_variable] = STATE(393), + [sym__var] = STATE(264), + [sym_val_number] = STATE(7), + [sym_val_duration] = STATE(393), + [sym_val_filesize] = STATE(393), + [sym_val_binary] = STATE(393), + [sym_val_string] = STATE(393), + [sym__str_double_quotes] = STATE(381), + [sym_val_interpolated] = STATE(393), + [sym__inter_single_quotes] = STATE(369), + [sym__inter_double_quotes] = STATE(357), + [sym_val_list] = STATE(393), + [sym_val_record] = STATE(393), + [sym_val_table] = STATE(393), + [sym_val_closure] = STATE(393), + [sym_unquoted] = STATE(1415), + [sym_comment] = STATE(469), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_LF] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_LPAREN] = ACTIONS(985), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1421), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_not] = ACTIONS(1427), + [anon_sym_DOT_DOT_LT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), + [sym_val_nothing] = ACTIONS(1431), + [anon_sym_true] = ACTIONS(1433), + [anon_sym_false] = ACTIONS(1433), + [aux_sym_val_number_token1] = ACTIONS(1435), + [aux_sym_val_number_token2] = ACTIONS(1435), + [aux_sym_val_number_token3] = ACTIONS(1435), + [aux_sym_val_number_token4] = ACTIONS(1435), + [aux_sym_val_number_token5] = ACTIONS(1435), + [anon_sym_inf] = ACTIONS(1435), + [anon_sym_DASHinf] = ACTIONS(1435), + [anon_sym_NaN] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1437), + [anon_sym_0o] = ACTIONS(1437), + [anon_sym_0x] = ACTIONS(1437), + [sym_val_date] = ACTIONS(1431), + [anon_sym_DQUOTE] = ACTIONS(1439), + [sym__str_single_quotes] = ACTIONS(1441), + [sym__str_back_ticks] = ACTIONS(1441), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1443), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1445), + [anon_sym_err_GT] = ACTIONS(1415), + [anon_sym_out_GT] = ACTIONS(1415), + [anon_sym_e_GT] = ACTIONS(1415), + [anon_sym_o_GT] = ACTIONS(1415), + [anon_sym_err_PLUSout_GT] = ACTIONS(1415), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1415), + [anon_sym_o_PLUSe_GT] = ACTIONS(1415), + [anon_sym_e_PLUSo_GT] = ACTIONS(1415), + [sym_short_flag] = ACTIONS(1415), + [aux_sym_unquoted_token1] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [470] = { + [sym_comment] = STATE(470), + [anon_sym_export] = ACTIONS(775), + [anon_sym_alias] = ACTIONS(775), + [anon_sym_let] = ACTIONS(775), + [anon_sym_let_DASHenv] = ACTIONS(775), + [anon_sym_mut] = ACTIONS(775), + [anon_sym_const] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [sym_cmd_identifier] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_def] = ACTIONS(775), + [anon_sym_def_DASHenv] = ACTIONS(775), + [anon_sym_export_DASHenv] = ACTIONS(775), + [anon_sym_extern] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_use] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_RPAREN] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_error] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_try] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_source] = ACTIONS(775), + [anon_sym_source_DASHenv] = ACTIONS(775), + [anon_sym_register] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_hide_DASHenv] = ACTIONS(775), + [anon_sym_overlay] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_where] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_not] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [anon_sym_POUND] = ACTIONS(3), + }, + [471] = { + [sym_comment] = STATE(471), + [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_def_DASHenv] = 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_DASH_DASH] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_for] = 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_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_as] = ACTIONS(1447), + [anon_sym_where] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_DOT_DOT_LT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [sym_val_nothing] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1447), + [anon_sym_DASHinf] = ACTIONS(1447), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(3), + }, + [472] = { + [sym_cell_path] = STATE(565), + [sym_path] = STATE(463), + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(717), + [anon_sym_alias] = ACTIONS(717), + [anon_sym_let] = ACTIONS(717), + [anon_sym_let_DASHenv] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(717), + [sym_cmd_identifier] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_def] = ACTIONS(717), + [anon_sym_def_DASHenv] = ACTIONS(717), + [anon_sym_export_DASHenv] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_use] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_error] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_loop] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_match] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_source] = ACTIONS(717), + [anon_sym_source_DASHenv] = ACTIONS(717), + [anon_sym_register] = ACTIONS(717), + [anon_sym_hide] = ACTIONS(717), + [anon_sym_hide_DASHenv] = ACTIONS(717), + [anon_sym_overlay] = ACTIONS(717), + [anon_sym_where] = ACTIONS(717), + [anon_sym_not] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(3), + }, + [473] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1437), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(473), + [aux_sym_command_repeat1] = STATE(462), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_LF] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [474] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1437), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(474), + [aux_sym_command_repeat1] = STATE(479), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [475] = { + [sym_comment] = STATE(475), + [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_def_DASHenv] = 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_DASH_DASH] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_for] = 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_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_as] = ACTIONS(1459), + [anon_sym_where] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_DOT_DOT_LT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [sym_val_nothing] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1459), + [anon_sym_DASHinf] = ACTIONS(1459), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1459), + [anon_sym_POUND] = ACTIONS(3), + }, + [476] = { + [sym_cell_path] = STATE(585), + [sym_path] = STATE(463), + [sym_comment] = STATE(476), + [anon_sym_export] = ACTIONS(725), + [anon_sym_alias] = ACTIONS(725), + [anon_sym_let] = ACTIONS(725), + [anon_sym_let_DASHenv] = ACTIONS(725), + [anon_sym_mut] = ACTIONS(725), + [anon_sym_const] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [sym_cmd_identifier] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_def] = ACTIONS(725), + [anon_sym_def_DASHenv] = ACTIONS(725), + [anon_sym_export_DASHenv] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(725), + [anon_sym_module] = ACTIONS(725), + [anon_sym_use] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_error] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_loop] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(1351), + [anon_sym_try] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_source] = ACTIONS(725), + [anon_sym_source_DASHenv] = ACTIONS(725), + [anon_sym_register] = ACTIONS(725), + [anon_sym_hide] = ACTIONS(725), + [anon_sym_hide_DASHenv] = ACTIONS(725), + [anon_sym_overlay] = ACTIONS(725), + [anon_sym_where] = ACTIONS(725), + [anon_sym_not] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(3), + }, [477] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1434), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), [sym_comment] = STATE(477), - [aux_sym_command_repeat1] = STATE(463), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_LF] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [anon_sym_export] = ACTIONS(779), + [anon_sym_alias] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_let_DASHenv] = ACTIONS(779), + [anon_sym_mut] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_cmd_identifier] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_def] = ACTIONS(779), + [anon_sym_def_DASHenv] = ACTIONS(779), + [anon_sym_export_DASHenv] = ACTIONS(779), + [anon_sym_extern] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_use] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_RPAREN] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_error] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_loop] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_RBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_try] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_source] = ACTIONS(779), + [anon_sym_source_DASHenv] = ACTIONS(779), + [anon_sym_register] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_hide_DASHenv] = ACTIONS(779), + [anon_sym_overlay] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_not] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), [anon_sym_POUND] = ACTIONS(3), }, [478] = { [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(1402), - [anon_sym_alias] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_let_DASHenv] = ACTIONS(1402), - [anon_sym_mut] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [sym_cmd_identifier] = ACTIONS(1402), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_def] = ACTIONS(1402), - [anon_sym_def_DASHenv] = ACTIONS(1402), - [anon_sym_export_DASHenv] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_RPAREN] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [anon_sym_error] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_source] = ACTIONS(1402), - [anon_sym_source_DASHenv] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_hide] = ACTIONS(1402), - [anon_sym_hide_DASHenv] = ACTIONS(1402), - [anon_sym_overlay] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_where] = ACTIONS(1402), - [anon_sym_not] = ACTIONS(1402), - [anon_sym_DOT_DOT_LT] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [sym_val_nothing] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [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(1402), - [aux_sym_val_number_token5] = ACTIONS(1402), - [anon_sym_inf] = ACTIONS(1402), - [anon_sym_DASHinf] = ACTIONS(1402), - [anon_sym_NaN] = ACTIONS(1402), - [anon_sym_0b] = ACTIONS(1402), - [anon_sym_0o] = ACTIONS(1402), - [anon_sym_0x] = ACTIONS(1402), - [sym_val_date] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym__str_single_quotes] = ACTIONS(1402), - [sym__str_back_ticks] = ACTIONS(1402), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1402), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [sym_short_flag] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(1311), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [sym_cmd_identifier] = ACTIONS(1307), + [sym__long_flag_identifier] = ACTIONS(1463), + [anon_sym_LF] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1307), + [anon_sym_def_DASHenv] = ACTIONS(1307), + [anon_sym_export_DASHenv] = ACTIONS(1307), + [anon_sym_extern] = ACTIONS(1307), + [anon_sym_module] = ACTIONS(1307), + [anon_sym_use] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [anon_sym_error] = ACTIONS(1307), + [anon_sym_DASH_DASH] = ACTIONS(1307), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1307), + [anon_sym_continue] = ACTIONS(1307), + [anon_sym_for] = ACTIONS(1307), + [anon_sym_loop] = ACTIONS(1307), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1307), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_match] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_try] = ACTIONS(1307), + [anon_sym_return] = ACTIONS(1307), + [anon_sym_source] = ACTIONS(1307), + [anon_sym_source_DASHenv] = ACTIONS(1307), + [anon_sym_register] = ACTIONS(1307), + [anon_sym_hide] = ACTIONS(1307), + [anon_sym_hide_DASHenv] = ACTIONS(1307), + [anon_sym_overlay] = ACTIONS(1307), + [anon_sym_as] = ACTIONS(1307), + [anon_sym_where] = ACTIONS(1307), + [anon_sym_not] = ACTIONS(1307), + [anon_sym_DOT_DOT_LT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), + [sym_val_nothing] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1307), + [anon_sym_false] = ACTIONS(1307), + [aux_sym_val_number_token1] = ACTIONS(1307), + [aux_sym_val_number_token2] = ACTIONS(1307), + [aux_sym_val_number_token3] = ACTIONS(1307), + [aux_sym_val_number_token4] = ACTIONS(1307), + [aux_sym_val_number_token5] = ACTIONS(1307), + [anon_sym_inf] = ACTIONS(1307), + [anon_sym_DASHinf] = ACTIONS(1307), + [anon_sym_NaN] = ACTIONS(1307), + [anon_sym_0b] = ACTIONS(1307), + [anon_sym_0o] = ACTIONS(1307), + [anon_sym_0x] = ACTIONS(1307), + [sym_val_date] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [sym__str_single_quotes] = ACTIONS(1307), + [sym__str_back_ticks] = ACTIONS(1307), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), + [anon_sym_CARET] = ACTIONS(1307), + [sym_short_flag] = ACTIONS(1307), [anon_sym_POUND] = ACTIONS(3), }, [479] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1434), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1437), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(479), - [aux_sym_command_repeat1] = STATE(479), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1419), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_DOT_DOT_LT] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [sym_val_nothing] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [aux_sym_val_number_token1] = ACTIONS(1434), - [aux_sym_val_number_token2] = ACTIONS(1434), - [aux_sym_val_number_token3] = ACTIONS(1434), - [aux_sym_val_number_token4] = ACTIONS(1434), - [aux_sym_val_number_token5] = ACTIONS(1434), - [anon_sym_inf] = ACTIONS(1434), - [anon_sym_DASHinf] = ACTIONS(1434), - [anon_sym_NaN] = ACTIONS(1434), - [anon_sym_0b] = ACTIONS(1437), - [anon_sym_0o] = ACTIONS(1437), - [anon_sym_0x] = ACTIONS(1437), - [sym_val_date] = ACTIONS(1428), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1443), - [sym__str_back_ticks] = ACTIONS(1443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1446), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1449), - [anon_sym_err_GT] = ACTIONS(1452), - [anon_sym_out_GT] = ACTIONS(1452), - [anon_sym_e_GT] = ACTIONS(1452), - [anon_sym_o_GT] = ACTIONS(1452), - [anon_sym_err_PLUSout_GT] = ACTIONS(1452), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1452), - [anon_sym_o_PLUSe_GT] = ACTIONS(1452), - [anon_sym_e_PLUSo_GT] = ACTIONS(1452), - [sym_short_flag] = ACTIONS(1455), - [aux_sym_unquoted_token1] = ACTIONS(1458), + [aux_sym_command_repeat1] = STATE(466), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LF] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1465), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, [480] = { - [sym_path] = STATE(588), + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1496), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(734), - [anon_sym_export] = ACTIONS(732), - [anon_sym_alias] = ACTIONS(732), - [anon_sym_let] = ACTIONS(732), - [anon_sym_let_DASHenv] = ACTIONS(732), - [anon_sym_mut] = ACTIONS(732), - [anon_sym_const] = ACTIONS(732), - [anon_sym_SEMI] = ACTIONS(732), - [sym_cmd_identifier] = ACTIONS(732), - [anon_sym_LF] = ACTIONS(734), - [anon_sym_def] = ACTIONS(732), - [anon_sym_def_DASHenv] = ACTIONS(732), - [anon_sym_export_DASHenv] = ACTIONS(732), - [anon_sym_extern] = ACTIONS(732), - [anon_sym_module] = ACTIONS(732), - [anon_sym_use] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(732), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_error] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_break] = ACTIONS(732), - [anon_sym_continue] = ACTIONS(732), - [anon_sym_for] = ACTIONS(732), - [anon_sym_loop] = ACTIONS(732), - [anon_sym_while] = ACTIONS(732), - [anon_sym_do] = ACTIONS(732), - [anon_sym_if] = ACTIONS(732), - [anon_sym_match] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(732), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(732), - [anon_sym_return] = ACTIONS(732), - [anon_sym_source] = ACTIONS(732), - [anon_sym_source_DASHenv] = ACTIONS(732), - [anon_sym_register] = ACTIONS(732), - [anon_sym_hide] = ACTIONS(732), - [anon_sym_hide_DASHenv] = ACTIONS(732), - [anon_sym_overlay] = ACTIONS(732), - [anon_sym_where] = ACTIONS(732), - [anon_sym_not] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(732), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(732), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(732), - [aux_sym_val_number_token4] = ACTIONS(732), - [aux_sym_val_number_token5] = ACTIONS(732), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(732), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(732), - [sym__str_single_quotes] = ACTIONS(732), - [sym__str_back_ticks] = ACTIONS(732), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(732), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(732), - [anon_sym_CARET] = ACTIONS(732), + [aux_sym__command_parenthesized_body_repeat1] = STATE(480), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LF] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1489), + [anon_sym_DOT_DOT] = ACTIONS(1489), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [sym_val_nothing] = ACTIONS(1492), + [anon_sym_true] = ACTIONS(1495), + [anon_sym_false] = ACTIONS(1495), + [aux_sym_val_number_token1] = ACTIONS(1498), + [aux_sym_val_number_token2] = ACTIONS(1498), + [aux_sym_val_number_token3] = ACTIONS(1498), + [aux_sym_val_number_token4] = ACTIONS(1498), + [aux_sym_val_number_token5] = ACTIONS(1498), + [anon_sym_inf] = ACTIONS(1498), + [anon_sym_DASHinf] = ACTIONS(1498), + [anon_sym_NaN] = ACTIONS(1498), + [anon_sym_0b] = ACTIONS(1501), + [anon_sym_0o] = ACTIONS(1501), + [anon_sym_0x] = ACTIONS(1501), + [sym_val_date] = ACTIONS(1492), + [anon_sym_DQUOTE] = ACTIONS(1504), + [sym__str_single_quotes] = ACTIONS(1507), + [sym__str_back_ticks] = ACTIONS(1507), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1510), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1513), + [anon_sym_err_GT] = ACTIONS(1516), + [anon_sym_out_GT] = ACTIONS(1516), + [anon_sym_e_GT] = ACTIONS(1516), + [anon_sym_o_GT] = ACTIONS(1516), + [anon_sym_err_PLUSout_GT] = ACTIONS(1516), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1516), + [anon_sym_o_PLUSe_GT] = ACTIONS(1516), + [anon_sym_e_PLUSo_GT] = ACTIONS(1516), + [sym_short_flag] = ACTIONS(1519), + [aux_sym_unquoted_token1] = ACTIONS(1522), [anon_sym_POUND] = ACTIONS(3), }, [481] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1492), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), + [sym__terminator] = STATE(541), [sym_comment] = STATE(481), - [aux_sym__command_parenthesized_body_repeat1] = STATE(481), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_LF] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1471), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_DOT_DOT_LT] = ACTIONS(1483), - [anon_sym_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [sym_val_nothing] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1489), - [anon_sym_false] = ACTIONS(1489), - [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), - [anon_sym_inf] = ACTIONS(1492), - [anon_sym_DASHinf] = ACTIONS(1492), - [anon_sym_NaN] = ACTIONS(1492), - [anon_sym_0b] = ACTIONS(1495), - [anon_sym_0o] = ACTIONS(1495), - [anon_sym_0x] = ACTIONS(1495), - [sym_val_date] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym__str_single_quotes] = ACTIONS(1501), - [sym__str_back_ticks] = ACTIONS(1501), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1504), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1507), - [anon_sym_err_GT] = ACTIONS(1510), - [anon_sym_out_GT] = ACTIONS(1510), - [anon_sym_e_GT] = ACTIONS(1510), - [anon_sym_o_GT] = ACTIONS(1510), - [anon_sym_err_PLUSout_GT] = ACTIONS(1510), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), - [anon_sym_o_PLUSe_GT] = ACTIONS(1510), - [anon_sym_e_PLUSo_GT] = ACTIONS(1510), - [sym_short_flag] = ACTIONS(1513), - [aux_sym_unquoted_token1] = ACTIONS(1516), + [aux_sym__block_body_repeat1] = STATE(481), + [anon_sym_export] = ACTIONS(1525), + [anon_sym_alias] = ACTIONS(1525), + [anon_sym_let] = ACTIONS(1525), + [anon_sym_let_DASHenv] = ACTIONS(1525), + [anon_sym_mut] = ACTIONS(1525), + [anon_sym_const] = ACTIONS(1525), + [anon_sym_SEMI] = ACTIONS(1527), + [sym_cmd_identifier] = ACTIONS(1525), + [anon_sym_LF] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1525), + [anon_sym_def_DASHenv] = ACTIONS(1525), + [anon_sym_export_DASHenv] = ACTIONS(1525), + [anon_sym_extern] = ACTIONS(1525), + [anon_sym_module] = ACTIONS(1525), + [anon_sym_use] = ACTIONS(1525), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1525), + [anon_sym_error] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_break] = ACTIONS(1525), + [anon_sym_continue] = ACTIONS(1525), + [anon_sym_for] = ACTIONS(1525), + [anon_sym_loop] = ACTIONS(1525), + [anon_sym_while] = ACTIONS(1525), + [anon_sym_do] = ACTIONS(1525), + [anon_sym_if] = ACTIONS(1525), + [anon_sym_match] = ACTIONS(1525), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_RBRACE] = ACTIONS(1525), + [anon_sym_try] = ACTIONS(1525), + [anon_sym_return] = ACTIONS(1525), + [anon_sym_source] = ACTIONS(1525), + [anon_sym_source_DASHenv] = ACTIONS(1525), + [anon_sym_register] = ACTIONS(1525), + [anon_sym_hide] = ACTIONS(1525), + [anon_sym_hide_DASHenv] = ACTIONS(1525), + [anon_sym_overlay] = ACTIONS(1525), + [anon_sym_where] = ACTIONS(1525), + [anon_sym_not] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [sym_val_nothing] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1525), + [anon_sym_false] = ACTIONS(1525), + [aux_sym_val_number_token1] = ACTIONS(1525), + [aux_sym_val_number_token2] = ACTIONS(1525), + [aux_sym_val_number_token3] = ACTIONS(1525), + [aux_sym_val_number_token4] = ACTIONS(1525), + [aux_sym_val_number_token5] = ACTIONS(1525), + [anon_sym_inf] = ACTIONS(1525), + [anon_sym_DASHinf] = ACTIONS(1525), + [anon_sym_NaN] = ACTIONS(1525), + [anon_sym_0b] = ACTIONS(1525), + [anon_sym_0o] = ACTIONS(1525), + [anon_sym_0x] = ACTIONS(1525), + [sym_val_date] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1525), + [anon_sym_CARET] = ACTIONS(1525), [anon_sym_POUND] = ACTIONS(3), }, [482] = { - [sym_expr_parenthesized] = STATE(1459), - [sym_val_range] = STATE(1462), - [sym__value] = STATE(1462), - [sym_val_bool] = STATE(1465), - [sym_val_variable] = STATE(1465), - [sym__var] = STATE(1376), - [sym_val_number] = STATE(88), - [sym_val_duration] = STATE(1465), - [sym_val_filesize] = STATE(1465), - [sym_val_binary] = STATE(1465), - [sym_val_string] = STATE(1465), - [sym__str_double_quotes] = STATE(1461), - [sym_val_interpolated] = STATE(1465), - [sym__inter_single_quotes] = STATE(1479), - [sym__inter_double_quotes] = STATE(1480), - [sym_val_list] = STATE(1465), - [sym_val_record] = STATE(1465), - [sym_val_table] = STATE(1465), - [sym_val_closure] = STATE(1465), - [sym__cmd_arg] = STATE(1463), - [sym_redirection] = STATE(1478), - [sym__flag] = STATE(1484), - [sym_long_flag] = STATE(1454), - [sym_unquoted] = STATE(1486), + [sym_expr_parenthesized] = STATE(1467), + [sym_val_range] = STATE(1464), + [sym__value] = STATE(1464), + [sym_val_bool] = STATE(1447), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1373), + [sym_val_number] = STATE(89), + [sym_val_duration] = STATE(1447), + [sym_val_filesize] = STATE(1447), + [sym_val_binary] = STATE(1447), + [sym_val_string] = STATE(1447), + [sym__str_double_quotes] = STATE(1462), + [sym_val_interpolated] = STATE(1447), + [sym__inter_single_quotes] = STATE(1456), + [sym__inter_double_quotes] = STATE(1459), + [sym_val_list] = STATE(1447), + [sym_val_record] = STATE(1447), + [sym_val_table] = STATE(1447), + [sym_val_closure] = STATE(1447), + [sym__cmd_arg] = STATE(1461), + [sym_redirection] = STATE(1460), + [sym__flag] = STATE(1451), + [sym_long_flag] = STATE(1469), + [sym_unquoted] = STATE(1449), [sym_comment] = STATE(482), - [aux_sym_command_repeat1] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_LF] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_DOLLAR] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [sym_val_nothing] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [aux_sym_val_number_token1] = ACTIONS(1535), - [aux_sym_val_number_token2] = ACTIONS(1535), - [aux_sym_val_number_token3] = ACTIONS(1535), - [aux_sym_val_number_token4] = ACTIONS(1535), - [aux_sym_val_number_token5] = ACTIONS(1535), - [anon_sym_inf] = ACTIONS(1535), - [anon_sym_DASHinf] = ACTIONS(1535), - [anon_sym_NaN] = ACTIONS(1535), - [anon_sym_0b] = ACTIONS(1537), - [anon_sym_0o] = ACTIONS(1537), - [anon_sym_0x] = ACTIONS(1537), - [sym_val_date] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1541), - [sym__str_back_ticks] = ACTIONS(1541), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [sym_short_flag] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1551), + [aux_sym_command_repeat1] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1313), + [anon_sym_LF] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [sym_val_nothing] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [aux_sym_val_number_token1] = ACTIONS(1549), + [aux_sym_val_number_token2] = ACTIONS(1549), + [aux_sym_val_number_token3] = ACTIONS(1549), + [aux_sym_val_number_token4] = ACTIONS(1549), + [aux_sym_val_number_token5] = ACTIONS(1549), + [anon_sym_inf] = ACTIONS(1549), + [anon_sym_DASHinf] = ACTIONS(1549), + [anon_sym_NaN] = ACTIONS(1549), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1555), + [sym__str_back_ticks] = ACTIONS(1555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [sym_short_flag] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(3), }, [483] = { - [sym_cell_path] = STATE(677), - [sym_path] = STATE(484), + [sym_path] = STATE(605), [sym_comment] = STATE(483), + [aux_sym_cell_path_repeat1] = STATE(489), + [ts_builtin_sym_end] = ACTIONS(754), + [anon_sym_export] = ACTIONS(752), + [anon_sym_alias] = ACTIONS(752), + [anon_sym_let] = ACTIONS(752), + [anon_sym_let_DASHenv] = ACTIONS(752), + [anon_sym_mut] = ACTIONS(752), + [anon_sym_const] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_def] = ACTIONS(752), + [anon_sym_def_DASHenv] = ACTIONS(752), + [anon_sym_export_DASHenv] = ACTIONS(752), + [anon_sym_extern] = ACTIONS(752), + [anon_sym_module] = ACTIONS(752), + [anon_sym_use] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_error] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_break] = ACTIONS(752), + [anon_sym_continue] = ACTIONS(752), + [anon_sym_for] = ACTIONS(752), + [anon_sym_loop] = ACTIONS(752), + [anon_sym_while] = ACTIONS(752), + [anon_sym_do] = ACTIONS(752), + [anon_sym_if] = ACTIONS(752), + [anon_sym_match] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(752), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(752), + [anon_sym_return] = ACTIONS(752), + [anon_sym_source] = ACTIONS(752), + [anon_sym_source_DASHenv] = ACTIONS(752), + [anon_sym_register] = ACTIONS(752), + [anon_sym_hide] = ACTIONS(752), + [anon_sym_hide_DASHenv] = ACTIONS(752), + [anon_sym_overlay] = ACTIONS(752), + [anon_sym_where] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(752), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(752), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(752), + [aux_sym_val_number_token4] = ACTIONS(752), + [aux_sym_val_number_token5] = ACTIONS(752), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(752), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [sym__str_single_quotes] = ACTIONS(752), + [sym__str_back_ticks] = ACTIONS(752), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(752), + [anon_sym_CARET] = ACTIONS(752), + [anon_sym_POUND] = ACTIONS(3), + }, + [484] = { + [sym_expr_parenthesized] = STATE(1467), + [sym_val_range] = STATE(1464), + [sym__value] = STATE(1464), + [sym_val_bool] = STATE(1447), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1373), + [sym_val_number] = STATE(89), + [sym_val_duration] = STATE(1447), + [sym_val_filesize] = STATE(1447), + [sym_val_binary] = STATE(1447), + [sym_val_string] = STATE(1447), + [sym__str_double_quotes] = STATE(1462), + [sym_val_interpolated] = STATE(1447), + [sym__inter_single_quotes] = STATE(1456), + [sym__inter_double_quotes] = STATE(1459), + [sym_val_list] = STATE(1447), + [sym_val_record] = STATE(1447), + [sym_val_table] = STATE(1447), + [sym_val_closure] = STATE(1447), + [sym__cmd_arg] = STATE(1461), + [sym_redirection] = STATE(1460), + [sym__flag] = STATE(1451), + [sym_long_flag] = STATE(1469), + [sym_unquoted] = STATE(1449), + [sym_comment] = STATE(484), + [aux_sym_command_repeat1] = STATE(502), + [ts_builtin_sym_end] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_LF] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [sym_val_nothing] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [aux_sym_val_number_token1] = ACTIONS(1549), + [aux_sym_val_number_token2] = ACTIONS(1549), + [aux_sym_val_number_token3] = ACTIONS(1549), + [aux_sym_val_number_token4] = ACTIONS(1549), + [aux_sym_val_number_token5] = ACTIONS(1549), + [anon_sym_inf] = ACTIONS(1549), + [anon_sym_DASHinf] = ACTIONS(1549), + [anon_sym_NaN] = ACTIONS(1549), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1555), + [sym__str_back_ticks] = ACTIONS(1555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [sym_short_flag] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(3), + }, + [485] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1496), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(485), + [aux_sym__command_parenthesized_body_repeat1] = STATE(480), + [anon_sym_SEMI] = ACTIONS(1569), + [anon_sym_LF] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [486] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1496), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(486), + [aux_sym__command_parenthesized_body_repeat1] = STATE(480), + [anon_sym_SEMI] = ACTIONS(1573), + [anon_sym_LF] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(3), + }, + [487] = { + [sym_cell_path] = STATE(689), + [sym_path] = STATE(483), + [sym_comment] = STATE(487), + [ts_builtin_sym_end] = ACTIONS(727), + [anon_sym_export] = ACTIONS(725), + [anon_sym_alias] = ACTIONS(725), + [anon_sym_let] = ACTIONS(725), + [anon_sym_let_DASHenv] = ACTIONS(725), + [anon_sym_mut] = ACTIONS(725), + [anon_sym_const] = ACTIONS(725), + [anon_sym_SEMI] = ACTIONS(725), + [sym_cmd_identifier] = ACTIONS(725), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_def] = ACTIONS(725), + [anon_sym_def_DASHenv] = ACTIONS(725), + [anon_sym_export_DASHenv] = ACTIONS(725), + [anon_sym_extern] = ACTIONS(725), + [anon_sym_module] = ACTIONS(725), + [anon_sym_use] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(725), + [anon_sym_DOLLAR] = ACTIONS(725), + [anon_sym_error] = ACTIONS(725), + [anon_sym_DASH] = ACTIONS(725), + [anon_sym_break] = ACTIONS(725), + [anon_sym_continue] = ACTIONS(725), + [anon_sym_for] = ACTIONS(725), + [anon_sym_loop] = ACTIONS(725), + [anon_sym_while] = ACTIONS(725), + [anon_sym_do] = ACTIONS(725), + [anon_sym_if] = ACTIONS(725), + [anon_sym_match] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(725), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(725), + [anon_sym_return] = ACTIONS(725), + [anon_sym_source] = ACTIONS(725), + [anon_sym_source_DASHenv] = ACTIONS(725), + [anon_sym_register] = ACTIONS(725), + [anon_sym_hide] = ACTIONS(725), + [anon_sym_hide_DASHenv] = ACTIONS(725), + [anon_sym_overlay] = ACTIONS(725), + [anon_sym_where] = ACTIONS(725), + [anon_sym_not] = ACTIONS(725), + [anon_sym_DOT_DOT_LT] = ACTIONS(725), + [anon_sym_DOT_DOT] = ACTIONS(725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(725), + [sym_val_nothing] = ACTIONS(725), + [anon_sym_true] = ACTIONS(725), + [anon_sym_false] = ACTIONS(725), + [aux_sym_val_number_token1] = ACTIONS(725), + [aux_sym_val_number_token2] = ACTIONS(725), + [aux_sym_val_number_token3] = ACTIONS(725), + [aux_sym_val_number_token4] = ACTIONS(725), + [aux_sym_val_number_token5] = ACTIONS(725), + [anon_sym_inf] = ACTIONS(725), + [anon_sym_DASHinf] = ACTIONS(725), + [anon_sym_NaN] = ACTIONS(725), + [anon_sym_0b] = ACTIONS(725), + [anon_sym_0o] = ACTIONS(725), + [anon_sym_0x] = ACTIONS(725), + [sym_val_date] = ACTIONS(725), + [anon_sym_DQUOTE] = ACTIONS(725), + [sym__str_single_quotes] = ACTIONS(725), + [sym__str_back_ticks] = ACTIONS(725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(725), + [anon_sym_CARET] = ACTIONS(725), + [anon_sym_POUND] = ACTIONS(3), + }, + [488] = { + [sym_expr_parenthesized] = STATE(1467), + [sym_val_range] = STATE(1464), + [sym__value] = STATE(1464), + [sym_val_bool] = STATE(1447), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1373), + [sym_val_number] = STATE(89), + [sym_val_duration] = STATE(1447), + [sym_val_filesize] = STATE(1447), + [sym_val_binary] = STATE(1447), + [sym_val_string] = STATE(1447), + [sym__str_double_quotes] = STATE(1462), + [sym_val_interpolated] = STATE(1447), + [sym__inter_single_quotes] = STATE(1456), + [sym__inter_double_quotes] = STATE(1459), + [sym_val_list] = STATE(1447), + [sym_val_record] = STATE(1447), + [sym_val_table] = STATE(1447), + [sym_val_closure] = STATE(1447), + [sym__cmd_arg] = STATE(1461), + [sym_redirection] = STATE(1460), + [sym__flag] = STATE(1451), + [sym_long_flag] = STATE(1469), + [sym_unquoted] = STATE(1449), + [sym_comment] = STATE(488), + [aux_sym_command_repeat1] = STATE(482), + [ts_builtin_sym_end] = ACTIONS(1453), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_LF] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [sym_val_nothing] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [aux_sym_val_number_token1] = ACTIONS(1549), + [aux_sym_val_number_token2] = ACTIONS(1549), + [aux_sym_val_number_token3] = ACTIONS(1549), + [aux_sym_val_number_token4] = ACTIONS(1549), + [aux_sym_val_number_token5] = ACTIONS(1549), + [anon_sym_inf] = ACTIONS(1549), + [anon_sym_DASHinf] = ACTIONS(1549), + [anon_sym_NaN] = ACTIONS(1549), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1555), + [sym__str_back_ticks] = ACTIONS(1555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [sym_short_flag] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(3), + }, + [489] = { + [sym_path] = STATE(605), + [sym_comment] = STATE(489), + [aux_sym_cell_path_repeat1] = STATE(503), [ts_builtin_sym_end] = ACTIONS(742), [anon_sym_export] = ACTIONS(740), [anon_sym_alias] = ACTIONS(740), @@ -86027,7 +86530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(740), [anon_sym_match] = ACTIONS(740), [anon_sym_LBRACE] = ACTIONS(740), - [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_DOT] = ACTIONS(1567), [anon_sym_try] = ACTIONS(740), [anon_sym_return] = ACTIONS(740), [anon_sym_source] = ACTIONS(740), @@ -86064,687 +86567,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(740), [anon_sym_POUND] = ACTIONS(3), }, - [484] = { - [sym_path] = STATE(588), - [sym_comment] = STATE(484), - [aux_sym_cell_path_repeat1] = STATE(480), - [ts_builtin_sym_end] = ACTIONS(730), - [anon_sym_export] = ACTIONS(728), - [anon_sym_alias] = ACTIONS(728), - [anon_sym_let] = ACTIONS(728), - [anon_sym_let_DASHenv] = ACTIONS(728), - [anon_sym_mut] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(728), - [sym_cmd_identifier] = ACTIONS(728), - [anon_sym_LF] = ACTIONS(730), - [anon_sym_def] = ACTIONS(728), - [anon_sym_def_DASHenv] = ACTIONS(728), - [anon_sym_export_DASHenv] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(728), - [anon_sym_module] = ACTIONS(728), - [anon_sym_use] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_error] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_loop] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_do] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_match] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_source] = ACTIONS(728), - [anon_sym_source_DASHenv] = ACTIONS(728), - [anon_sym_register] = ACTIONS(728), - [anon_sym_hide] = ACTIONS(728), - [anon_sym_hide_DASHenv] = ACTIONS(728), - [anon_sym_overlay] = ACTIONS(728), - [anon_sym_where] = ACTIONS(728), - [anon_sym_not] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(728), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(728), - [aux_sym_val_number_token4] = ACTIONS(728), - [aux_sym_val_number_token5] = ACTIONS(728), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(728), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(728), - [sym__str_single_quotes] = ACTIONS(728), - [sym__str_back_ticks] = ACTIONS(728), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(3), - }, - [485] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1492), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(485), - [aux_sym__command_parenthesized_body_repeat1] = STATE(498), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(3), - }, - [486] = { - [sym_comment] = STATE(486), - [ts_builtin_sym_end] = ACTIONS(1350), - [anon_sym_export] = ACTIONS(1348), - [anon_sym_alias] = ACTIONS(1348), - [anon_sym_let] = ACTIONS(1348), - [anon_sym_let_DASHenv] = ACTIONS(1348), - [anon_sym_mut] = ACTIONS(1348), - [anon_sym_const] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [sym_cmd_identifier] = ACTIONS(1348), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_def] = ACTIONS(1348), - [anon_sym_def_DASHenv] = ACTIONS(1348), - [anon_sym_export_DASHenv] = ACTIONS(1348), - [anon_sym_extern] = ACTIONS(1348), - [anon_sym_module] = ACTIONS(1348), - [anon_sym_use] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(1348), - [anon_sym_LPAREN] = ACTIONS(1348), - [anon_sym_DOLLAR] = ACTIONS(1348), - [anon_sym_error] = ACTIONS(1348), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1348), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_for] = ACTIONS(1348), - [anon_sym_loop] = ACTIONS(1348), - [anon_sym_while] = ACTIONS(1348), - [anon_sym_do] = ACTIONS(1348), - [anon_sym_if] = ACTIONS(1348), - [anon_sym_match] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(1348), - [anon_sym_return] = ACTIONS(1348), - [anon_sym_source] = ACTIONS(1348), - [anon_sym_source_DASHenv] = ACTIONS(1348), - [anon_sym_register] = ACTIONS(1348), - [anon_sym_hide] = ACTIONS(1348), - [anon_sym_hide_DASHenv] = ACTIONS(1348), - [anon_sym_overlay] = ACTIONS(1348), - [anon_sym_as] = ACTIONS(1348), - [anon_sym_where] = ACTIONS(1348), - [anon_sym_not] = ACTIONS(1348), - [anon_sym_DOT_DOT_LT] = ACTIONS(1348), - [anon_sym_DOT_DOT] = ACTIONS(1348), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1348), - [sym_val_nothing] = ACTIONS(1348), - [anon_sym_true] = ACTIONS(1348), - [anon_sym_false] = ACTIONS(1348), - [aux_sym_val_number_token1] = ACTIONS(1348), - [aux_sym_val_number_token2] = ACTIONS(1348), - [aux_sym_val_number_token3] = ACTIONS(1348), - [aux_sym_val_number_token4] = ACTIONS(1348), - [aux_sym_val_number_token5] = ACTIONS(1348), - [anon_sym_inf] = ACTIONS(1348), - [anon_sym_DASHinf] = ACTIONS(1348), - [anon_sym_NaN] = ACTIONS(1348), - [anon_sym_0b] = ACTIONS(1348), - [anon_sym_0o] = ACTIONS(1348), - [anon_sym_0x] = ACTIONS(1348), - [sym_val_date] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym__str_single_quotes] = ACTIONS(1348), - [sym__str_back_ticks] = ACTIONS(1348), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1348), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1348), - [anon_sym_CARET] = ACTIONS(1348), - [sym_short_flag] = ACTIONS(1348), - [anon_sym_POUND] = ACTIONS(3), - }, - [487] = { - [sym_expr_parenthesized] = STATE(1459), - [sym_val_range] = STATE(1462), - [sym__value] = STATE(1462), - [sym_val_bool] = STATE(1465), - [sym_val_variable] = STATE(1465), - [sym__var] = STATE(1376), - [sym_val_number] = STATE(88), - [sym_val_duration] = STATE(1465), - [sym_val_filesize] = STATE(1465), - [sym_val_binary] = STATE(1465), - [sym_val_string] = STATE(1465), - [sym__str_double_quotes] = STATE(1461), - [sym_val_interpolated] = STATE(1465), - [sym__inter_single_quotes] = STATE(1479), - [sym__inter_double_quotes] = STATE(1480), - [sym_val_list] = STATE(1465), - [sym_val_record] = STATE(1465), - [sym_val_table] = STATE(1465), - [sym_val_closure] = STATE(1465), - [sym__cmd_arg] = STATE(1463), - [sym_redirection] = STATE(1478), - [sym__flag] = STATE(1484), - [sym_long_flag] = STATE(1454), - [sym_unquoted] = STATE(1486), - [sym_comment] = STATE(487), - [aux_sym_command_repeat1] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [sym_val_nothing] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [aux_sym_val_number_token1] = ACTIONS(1535), - [aux_sym_val_number_token2] = ACTIONS(1535), - [aux_sym_val_number_token3] = ACTIONS(1535), - [aux_sym_val_number_token4] = ACTIONS(1535), - [aux_sym_val_number_token5] = ACTIONS(1535), - [anon_sym_inf] = ACTIONS(1535), - [anon_sym_DASHinf] = ACTIONS(1535), - [anon_sym_NaN] = ACTIONS(1535), - [anon_sym_0b] = ACTIONS(1537), - [anon_sym_0o] = ACTIONS(1537), - [anon_sym_0x] = ACTIONS(1537), - [sym_val_date] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1541), - [sym__str_back_ticks] = ACTIONS(1541), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [sym_short_flag] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(3), - }, - [488] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1492), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(488), - [aux_sym__command_parenthesized_body_repeat1] = STATE(481), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_LF] = ACTIONS(1559), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), - [anon_sym_POUND] = ACTIONS(3), - }, - [489] = { - [sym_cell_path] = STATE(698), - [sym_path] = STATE(484), - [sym_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(746), - [anon_sym_export] = ACTIONS(744), - [anon_sym_alias] = ACTIONS(744), - [anon_sym_let] = ACTIONS(744), - [anon_sym_let_DASHenv] = ACTIONS(744), - [anon_sym_mut] = ACTIONS(744), - [anon_sym_const] = ACTIONS(744), - [anon_sym_SEMI] = ACTIONS(744), - [sym_cmd_identifier] = ACTIONS(744), - [anon_sym_LF] = ACTIONS(746), - [anon_sym_def] = ACTIONS(744), - [anon_sym_def_DASHenv] = ACTIONS(744), - [anon_sym_export_DASHenv] = ACTIONS(744), - [anon_sym_extern] = ACTIONS(744), - [anon_sym_module] = ACTIONS(744), - [anon_sym_use] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_error] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(744), - [anon_sym_break] = ACTIONS(744), - [anon_sym_continue] = ACTIONS(744), - [anon_sym_for] = ACTIONS(744), - [anon_sym_loop] = ACTIONS(744), - [anon_sym_while] = ACTIONS(744), - [anon_sym_do] = ACTIONS(744), - [anon_sym_if] = ACTIONS(744), - [anon_sym_match] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(744), - [anon_sym_return] = ACTIONS(744), - [anon_sym_source] = ACTIONS(744), - [anon_sym_source_DASHenv] = ACTIONS(744), - [anon_sym_register] = ACTIONS(744), - [anon_sym_hide] = ACTIONS(744), - [anon_sym_hide_DASHenv] = ACTIONS(744), - [anon_sym_overlay] = ACTIONS(744), - [anon_sym_where] = ACTIONS(744), - [anon_sym_not] = ACTIONS(744), - [anon_sym_DOT_DOT_LT] = ACTIONS(744), - [anon_sym_DOT_DOT] = ACTIONS(744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(744), - [sym_val_nothing] = ACTIONS(744), - [anon_sym_true] = ACTIONS(744), - [anon_sym_false] = ACTIONS(744), - [aux_sym_val_number_token1] = ACTIONS(744), - [aux_sym_val_number_token2] = ACTIONS(744), - [aux_sym_val_number_token3] = ACTIONS(744), - [aux_sym_val_number_token4] = ACTIONS(744), - [aux_sym_val_number_token5] = ACTIONS(744), - [anon_sym_inf] = ACTIONS(744), - [anon_sym_DASHinf] = ACTIONS(744), - [anon_sym_NaN] = ACTIONS(744), - [anon_sym_0b] = ACTIONS(744), - [anon_sym_0o] = ACTIONS(744), - [anon_sym_0x] = ACTIONS(744), - [sym_val_date] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(744), - [sym__str_single_quotes] = ACTIONS(744), - [sym__str_back_ticks] = ACTIONS(744), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(744), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(744), - [anon_sym_CARET] = ACTIONS(744), - [anon_sym_POUND] = ACTIONS(3), - }, [490] = { - [sym__terminator] = STATE(553), [sym_comment] = STATE(490), - [aux_sym__block_body_repeat1] = STATE(490), - [anon_sym_export] = ACTIONS(1561), - [anon_sym_alias] = ACTIONS(1561), - [anon_sym_let] = ACTIONS(1561), - [anon_sym_let_DASHenv] = ACTIONS(1561), - [anon_sym_mut] = ACTIONS(1561), - [anon_sym_const] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1563), - [sym_cmd_identifier] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1566), - [anon_sym_def] = ACTIONS(1561), - [anon_sym_def_DASHenv] = ACTIONS(1561), - [anon_sym_export_DASHenv] = ACTIONS(1561), - [anon_sym_extern] = ACTIONS(1561), - [anon_sym_module] = ACTIONS(1561), - [anon_sym_use] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [anon_sym_error] = ACTIONS(1561), - [anon_sym_DASH] = ACTIONS(1561), - [anon_sym_break] = ACTIONS(1561), - [anon_sym_continue] = ACTIONS(1561), - [anon_sym_for] = ACTIONS(1561), - [anon_sym_loop] = ACTIONS(1561), - [anon_sym_while] = ACTIONS(1561), - [anon_sym_do] = ACTIONS(1561), - [anon_sym_if] = ACTIONS(1561), - [anon_sym_match] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_try] = ACTIONS(1561), - [anon_sym_return] = ACTIONS(1561), - [anon_sym_source] = ACTIONS(1561), - [anon_sym_source_DASHenv] = ACTIONS(1561), - [anon_sym_register] = ACTIONS(1561), - [anon_sym_hide] = ACTIONS(1561), - [anon_sym_hide_DASHenv] = ACTIONS(1561), - [anon_sym_overlay] = ACTIONS(1561), - [anon_sym_where] = ACTIONS(1561), - [anon_sym_not] = ACTIONS(1561), - [anon_sym_DOT_DOT_LT] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1561), - [sym_val_nothing] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(1561), - [anon_sym_false] = ACTIONS(1561), - [aux_sym_val_number_token1] = ACTIONS(1561), - [aux_sym_val_number_token2] = ACTIONS(1561), - [aux_sym_val_number_token3] = ACTIONS(1561), - [aux_sym_val_number_token4] = ACTIONS(1561), - [aux_sym_val_number_token5] = ACTIONS(1561), - [anon_sym_inf] = ACTIONS(1561), - [anon_sym_DASHinf] = ACTIONS(1561), - [anon_sym_NaN] = ACTIONS(1561), - [anon_sym_0b] = ACTIONS(1561), - [anon_sym_0o] = ACTIONS(1561), - [anon_sym_0x] = ACTIONS(1561), - [sym_val_date] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [sym__str_single_quotes] = ACTIONS(1561), - [sym__str_back_ticks] = ACTIONS(1561), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1561), - [anon_sym_CARET] = ACTIONS(1561), + [ts_builtin_sym_end] = ACTIONS(777), + [anon_sym_export] = ACTIONS(775), + [anon_sym_alias] = ACTIONS(775), + [anon_sym_let] = ACTIONS(775), + [anon_sym_let_DASHenv] = ACTIONS(775), + [anon_sym_mut] = ACTIONS(775), + [anon_sym_const] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(775), + [sym_cmd_identifier] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(777), + [anon_sym_def] = ACTIONS(775), + [anon_sym_def_DASHenv] = ACTIONS(775), + [anon_sym_export_DASHenv] = ACTIONS(775), + [anon_sym_extern] = ACTIONS(775), + [anon_sym_module] = ACTIONS(775), + [anon_sym_use] = ACTIONS(775), + [anon_sym_LBRACK] = ACTIONS(775), + [anon_sym_LPAREN] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_error] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [anon_sym_do] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_try] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_source] = ACTIONS(775), + [anon_sym_source_DASHenv] = ACTIONS(775), + [anon_sym_register] = ACTIONS(775), + [anon_sym_hide] = ACTIONS(775), + [anon_sym_hide_DASHenv] = ACTIONS(775), + [anon_sym_overlay] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_where] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(775), + [anon_sym_not] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(775), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(775), + [aux_sym_val_number_token4] = ACTIONS(775), + [aux_sym_val_number_token5] = ACTIONS(775), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(775), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(775), + [sym__str_single_quotes] = ACTIONS(775), + [sym__str_back_ticks] = ACTIONS(775), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(775), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), [anon_sym_POUND] = ACTIONS(3), }, [491] = { [sym_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(770), - [anon_sym_export] = ACTIONS(768), - [anon_sym_alias] = ACTIONS(768), - [anon_sym_let] = ACTIONS(768), - [anon_sym_let_DASHenv] = ACTIONS(768), - [anon_sym_mut] = ACTIONS(768), - [anon_sym_const] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(768), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_LF] = ACTIONS(770), - [anon_sym_def] = ACTIONS(768), - [anon_sym_def_DASHenv] = ACTIONS(768), - [anon_sym_export_DASHenv] = ACTIONS(768), - [anon_sym_extern] = ACTIONS(768), - [anon_sym_module] = ACTIONS(768), - [anon_sym_use] = ACTIONS(768), - [anon_sym_LBRACK] = ACTIONS(768), - [anon_sym_LPAREN] = ACTIONS(768), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_error] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_break] = ACTIONS(768), - [anon_sym_continue] = ACTIONS(768), - [anon_sym_for] = ACTIONS(768), - [anon_sym_loop] = ACTIONS(768), - [anon_sym_while] = ACTIONS(768), - [anon_sym_do] = ACTIONS(768), - [anon_sym_if] = ACTIONS(768), - [anon_sym_match] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(768), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(768), - [anon_sym_source] = ACTIONS(768), - [anon_sym_source_DASHenv] = ACTIONS(768), - [anon_sym_register] = ACTIONS(768), - [anon_sym_hide] = ACTIONS(768), - [anon_sym_hide_DASHenv] = ACTIONS(768), - [anon_sym_overlay] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_where] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(768), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(768), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(768), - [aux_sym_val_number_token4] = ACTIONS(768), - [aux_sym_val_number_token5] = ACTIONS(768), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(768), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(768), - [anon_sym_DQUOTE] = ACTIONS(768), - [sym__str_single_quotes] = ACTIONS(768), - [sym__str_back_ticks] = ACTIONS(768), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(768), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(768), - [anon_sym_CARET] = ACTIONS(768), + [ts_builtin_sym_end] = ACTIONS(781), + [anon_sym_export] = ACTIONS(779), + [anon_sym_alias] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_let_DASHenv] = ACTIONS(779), + [anon_sym_mut] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(779), + [sym_cmd_identifier] = ACTIONS(779), + [anon_sym_LF] = ACTIONS(781), + [anon_sym_def] = ACTIONS(779), + [anon_sym_def_DASHenv] = ACTIONS(779), + [anon_sym_export_DASHenv] = ACTIONS(779), + [anon_sym_extern] = ACTIONS(779), + [anon_sym_module] = ACTIONS(779), + [anon_sym_use] = ACTIONS(779), + [anon_sym_LBRACK] = ACTIONS(779), + [anon_sym_LPAREN] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_error] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_loop] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [anon_sym_do] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_try] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_source] = ACTIONS(779), + [anon_sym_source_DASHenv] = ACTIONS(779), + [anon_sym_register] = ACTIONS(779), + [anon_sym_hide] = ACTIONS(779), + [anon_sym_hide_DASHenv] = ACTIONS(779), + [anon_sym_overlay] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(779), + [anon_sym_not] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(779), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(779), + [aux_sym_val_number_token4] = ACTIONS(779), + [aux_sym_val_number_token5] = ACTIONS(779), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(779), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(779), + [anon_sym_DQUOTE] = ACTIONS(779), + [sym__str_single_quotes] = ACTIONS(779), + [sym__str_back_ticks] = ACTIONS(779), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(779), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), [anon_sym_POUND] = ACTIONS(3), }, [492] = { - [sym_cell_path] = STATE(633), - [sym_path] = STATE(484), [sym_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(708), - [anon_sym_export] = ACTIONS(706), - [anon_sym_alias] = ACTIONS(706), - [anon_sym_let] = ACTIONS(706), - [anon_sym_let_DASHenv] = ACTIONS(706), - [anon_sym_mut] = ACTIONS(706), - [anon_sym_const] = ACTIONS(706), - [anon_sym_SEMI] = ACTIONS(706), - [sym_cmd_identifier] = ACTIONS(706), - [anon_sym_LF] = ACTIONS(708), - [anon_sym_def] = ACTIONS(706), - [anon_sym_def_DASHenv] = ACTIONS(706), - [anon_sym_export_DASHenv] = ACTIONS(706), - [anon_sym_extern] = ACTIONS(706), - [anon_sym_module] = ACTIONS(706), - [anon_sym_use] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(706), - [anon_sym_LPAREN] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_error] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [anon_sym_break] = ACTIONS(706), - [anon_sym_continue] = ACTIONS(706), - [anon_sym_for] = ACTIONS(706), - [anon_sym_loop] = ACTIONS(706), - [anon_sym_while] = ACTIONS(706), - [anon_sym_do] = ACTIONS(706), - [anon_sym_if] = ACTIONS(706), - [anon_sym_match] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(706), - [anon_sym_return] = ACTIONS(706), - [anon_sym_source] = ACTIONS(706), - [anon_sym_source_DASHenv] = ACTIONS(706), - [anon_sym_register] = ACTIONS(706), - [anon_sym_hide] = ACTIONS(706), - [anon_sym_hide_DASHenv] = ACTIONS(706), - [anon_sym_overlay] = ACTIONS(706), - [anon_sym_where] = ACTIONS(706), - [anon_sym_not] = ACTIONS(706), - [anon_sym_DOT_DOT_LT] = ACTIONS(706), - [anon_sym_DOT_DOT] = ACTIONS(706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(706), - [sym_val_nothing] = ACTIONS(706), - [anon_sym_true] = ACTIONS(706), - [anon_sym_false] = ACTIONS(706), - [aux_sym_val_number_token1] = ACTIONS(706), - [aux_sym_val_number_token2] = ACTIONS(706), - [aux_sym_val_number_token3] = ACTIONS(706), - [aux_sym_val_number_token4] = ACTIONS(706), - [aux_sym_val_number_token5] = ACTIONS(706), - [anon_sym_inf] = ACTIONS(706), - [anon_sym_DASHinf] = ACTIONS(706), - [anon_sym_NaN] = ACTIONS(706), - [anon_sym_0b] = ACTIONS(706), - [anon_sym_0o] = ACTIONS(706), - [anon_sym_0x] = ACTIONS(706), - [sym_val_date] = ACTIONS(706), - [anon_sym_DQUOTE] = ACTIONS(706), - [sym__str_single_quotes] = ACTIONS(706), - [sym__str_back_ticks] = ACTIONS(706), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(706), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(706), - [anon_sym_CARET] = ACTIONS(706), + [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_def_DASHenv] = 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_DASH_DASH] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_for] = 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_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_as] = ACTIONS(1447), + [anon_sym_where] = ACTIONS(1447), + [anon_sym_not] = ACTIONS(1447), + [anon_sym_DOT_DOT_LT] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [sym_val_nothing] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1447), + [anon_sym_DASHinf] = ACTIONS(1447), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1447), [anon_sym_POUND] = ACTIONS(3), }, [493] = { - [sym_expr_parenthesized] = STATE(1459), - [sym_val_range] = STATE(1462), - [sym__value] = STATE(1462), - [sym_val_bool] = STATE(1465), - [sym_val_variable] = STATE(1465), - [sym__var] = STATE(1376), - [sym_val_number] = STATE(88), - [sym_val_duration] = STATE(1465), - [sym_val_filesize] = STATE(1465), - [sym_val_binary] = STATE(1465), - [sym_val_string] = STATE(1465), - [sym__str_double_quotes] = STATE(1461), - [sym_val_interpolated] = STATE(1465), - [sym__inter_single_quotes] = STATE(1479), - [sym__inter_double_quotes] = STATE(1480), - [sym_val_list] = STATE(1465), - [sym_val_record] = STATE(1465), - [sym_val_table] = STATE(1465), - [sym_val_closure] = STATE(1465), - [sym__cmd_arg] = STATE(1463), - [sym_redirection] = STATE(1478), - [sym__flag] = STATE(1484), - [sym_long_flag] = STATE(1454), - [sym_unquoted] = STATE(1486), + [sym__expression] = STATE(460), + [sym_expr_unary] = STATE(406), + [sym_expr_binary] = STATE(406), + [sym_expr_parenthesized] = STATE(404), + [sym_val_range] = STATE(406), + [sym__value] = STATE(406), + [sym_val_bool] = STATE(439), + [sym_val_variable] = STATE(439), + [sym__var] = STATE(290), + [sym_val_number] = STATE(8), + [sym_val_duration] = STATE(439), + [sym_val_filesize] = STATE(439), + [sym_val_binary] = STATE(439), + [sym_val_string] = STATE(439), + [sym__str_double_quotes] = STATE(449), + [sym_val_interpolated] = STATE(439), + [sym__inter_single_quotes] = STATE(422), + [sym__inter_double_quotes] = STATE(399), + [sym_val_list] = STATE(439), + [sym_val_record] = STATE(439), + [sym_val_table] = STATE(439), + [sym_val_closure] = STATE(439), + [sym_unquoted] = STATE(1472), [sym_comment] = STATE(493), - [aux_sym_command_repeat1] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1408), - [anon_sym_SEMI] = ACTIONS(1406), - [anon_sym_LF] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_DOT_DOT_LT] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1584), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1584), - [sym_val_nothing] = ACTIONS(1587), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_LF] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_LPAREN] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1579), + [anon_sym_DASH_DASH] = ACTIONS(1415), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_LBRACE] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1585), + [anon_sym_DOT_DOT_LT] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), + [sym_val_nothing] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1591), + [anon_sym_false] = ACTIONS(1591), [aux_sym_val_number_token1] = ACTIONS(1593), [aux_sym_val_number_token2] = ACTIONS(1593), [aux_sym_val_number_token3] = ACTIONS(1593), @@ -86753,1300 +86830,1090 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_inf] = ACTIONS(1593), [anon_sym_DASHinf] = ACTIONS(1593), [anon_sym_NaN] = ACTIONS(1593), - [anon_sym_0b] = ACTIONS(1596), - [anon_sym_0o] = ACTIONS(1596), - [anon_sym_0x] = ACTIONS(1596), - [sym_val_date] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1599), - [sym__str_single_quotes] = ACTIONS(1602), - [sym__str_back_ticks] = ACTIONS(1602), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1605), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1608), - [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), - [sym_short_flag] = ACTIONS(1614), - [aux_sym_unquoted_token1] = ACTIONS(1617), + [anon_sym_0b] = ACTIONS(1595), + [anon_sym_0o] = ACTIONS(1595), + [anon_sym_0x] = ACTIONS(1595), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1601), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1603), + [anon_sym_err_GT] = ACTIONS(1415), + [anon_sym_out_GT] = ACTIONS(1415), + [anon_sym_e_GT] = ACTIONS(1415), + [anon_sym_o_GT] = ACTIONS(1415), + [anon_sym_err_PLUSout_GT] = ACTIONS(1415), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1415), + [anon_sym_o_PLUSe_GT] = ACTIONS(1415), + [anon_sym_e_PLUSo_GT] = ACTIONS(1415), + [sym_short_flag] = ACTIONS(1415), + [aux_sym_unquoted_token1] = ACTIONS(1565), [anon_sym_POUND] = ACTIONS(3), }, [494] = { - [sym_expr_parenthesized] = STATE(1459), - [sym_val_range] = STATE(1462), - [sym__value] = STATE(1462), - [sym_val_bool] = STATE(1465), - [sym_val_variable] = STATE(1465), - [sym__var] = STATE(1376), - [sym_val_number] = STATE(88), - [sym_val_duration] = STATE(1465), - [sym_val_filesize] = STATE(1465), - [sym_val_binary] = STATE(1465), - [sym_val_string] = STATE(1465), - [sym__str_double_quotes] = STATE(1461), - [sym_val_interpolated] = STATE(1465), - [sym__inter_single_quotes] = STATE(1479), - [sym__inter_double_quotes] = STATE(1480), - [sym_val_list] = STATE(1465), - [sym_val_record] = STATE(1465), - [sym_val_table] = STATE(1465), - [sym_val_closure] = STATE(1465), - [sym__cmd_arg] = STATE(1463), - [sym_redirection] = STATE(1478), - [sym__flag] = STATE(1484), - [sym_long_flag] = STATE(1454), - [sym_unquoted] = STATE(1486), + [sym_expr_parenthesized] = STATE(1467), + [sym_val_range] = STATE(1464), + [sym__value] = STATE(1464), + [sym_val_bool] = STATE(1447), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1373), + [sym_val_number] = STATE(89), + [sym_val_duration] = STATE(1447), + [sym_val_filesize] = STATE(1447), + [sym_val_binary] = STATE(1447), + [sym_val_string] = STATE(1447), + [sym__str_double_quotes] = STATE(1462), + [sym_val_interpolated] = STATE(1447), + [sym__inter_single_quotes] = STATE(1456), + [sym__inter_double_quotes] = STATE(1459), + [sym_val_list] = STATE(1447), + [sym_val_record] = STATE(1447), + [sym_val_table] = STATE(1447), + [sym_val_closure] = STATE(1447), + [sym__cmd_arg] = STATE(1461), + [sym_redirection] = STATE(1460), + [sym__flag] = STATE(1451), + [sym_long_flag] = STATE(1469), + [sym_unquoted] = STATE(1449), [sym_comment] = STATE(494), - [aux_sym_command_repeat1] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1354), - [anon_sym_LF] = ACTIONS(1356), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [sym_val_nothing] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [aux_sym_val_number_token1] = ACTIONS(1535), - [aux_sym_val_number_token2] = ACTIONS(1535), - [aux_sym_val_number_token3] = ACTIONS(1535), - [aux_sym_val_number_token4] = ACTIONS(1535), - [aux_sym_val_number_token5] = ACTIONS(1535), - [anon_sym_inf] = ACTIONS(1535), - [anon_sym_DASHinf] = ACTIONS(1535), - [anon_sym_NaN] = ACTIONS(1535), - [anon_sym_0b] = ACTIONS(1537), - [anon_sym_0o] = ACTIONS(1537), - [anon_sym_0x] = ACTIONS(1537), - [sym_val_date] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1541), - [sym__str_back_ticks] = ACTIONS(1541), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [sym_short_flag] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1551), + [aux_sym_command_repeat1] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(1611), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_LBRACE] = ACTIONS(1617), + [anon_sym_DOT_DOT_LT] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1620), + [sym_val_nothing] = ACTIONS(1623), + [anon_sym_true] = ACTIONS(1626), + [anon_sym_false] = ACTIONS(1626), + [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), + [anon_sym_inf] = ACTIONS(1629), + [anon_sym_DASHinf] = ACTIONS(1629), + [anon_sym_NaN] = ACTIONS(1629), + [anon_sym_0b] = ACTIONS(1632), + [anon_sym_0o] = ACTIONS(1632), + [anon_sym_0x] = ACTIONS(1632), + [sym_val_date] = ACTIONS(1623), + [anon_sym_DQUOTE] = ACTIONS(1635), + [sym__str_single_quotes] = ACTIONS(1638), + [sym__str_back_ticks] = ACTIONS(1638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1641), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1644), + [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), + [sym_short_flag] = ACTIONS(1650), + [aux_sym_unquoted_token1] = ACTIONS(1653), [anon_sym_POUND] = ACTIONS(3), }, [495] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1492), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), [sym_comment] = STATE(495), - [aux_sym__command_parenthesized_body_repeat1] = STATE(488), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_LF] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1620), - [anon_sym_PIPE] = ACTIONS(1620), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [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_def_DASHenv] = 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_DASH_DASH] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_for] = 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_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_as] = ACTIONS(1459), + [anon_sym_where] = ACTIONS(1459), + [anon_sym_not] = ACTIONS(1459), + [anon_sym_DOT_DOT_LT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), + [sym_val_nothing] = ACTIONS(1459), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1459), + [anon_sym_DASHinf] = ACTIONS(1459), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1459), [anon_sym_POUND] = ACTIONS(3), }, [496] = { - [sym_path] = STATE(588), [sym_comment] = STATE(496), - [aux_sym_cell_path_repeat1] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(701), - [anon_sym_export] = ACTIONS(699), - [anon_sym_alias] = ACTIONS(699), - [anon_sym_let] = ACTIONS(699), - [anon_sym_let_DASHenv] = ACTIONS(699), - [anon_sym_mut] = ACTIONS(699), - [anon_sym_const] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [sym_cmd_identifier] = ACTIONS(699), - [anon_sym_LF] = ACTIONS(701), - [anon_sym_def] = ACTIONS(699), - [anon_sym_def_DASHenv] = ACTIONS(699), - [anon_sym_export_DASHenv] = ACTIONS(699), - [anon_sym_extern] = ACTIONS(699), - [anon_sym_module] = ACTIONS(699), - [anon_sym_use] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(699), - [anon_sym_LPAREN] = ACTIONS(699), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_error] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_break] = ACTIONS(699), - [anon_sym_continue] = ACTIONS(699), - [anon_sym_for] = ACTIONS(699), - [anon_sym_loop] = ACTIONS(699), - [anon_sym_while] = ACTIONS(699), - [anon_sym_do] = ACTIONS(699), - [anon_sym_if] = ACTIONS(699), - [anon_sym_match] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(699), - [anon_sym_DOT] = ACTIONS(1624), - [anon_sym_try] = ACTIONS(699), - [anon_sym_return] = ACTIONS(699), - [anon_sym_source] = ACTIONS(699), - [anon_sym_source_DASHenv] = ACTIONS(699), - [anon_sym_register] = ACTIONS(699), - [anon_sym_hide] = ACTIONS(699), - [anon_sym_hide_DASHenv] = ACTIONS(699), - [anon_sym_overlay] = ACTIONS(699), - [anon_sym_where] = ACTIONS(699), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(699), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(699), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(699), - [aux_sym_val_number_token4] = ACTIONS(699), - [aux_sym_val_number_token5] = ACTIONS(699), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(699), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(699), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__str_single_quotes] = ACTIONS(699), - [sym__str_back_ticks] = ACTIONS(699), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(699), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(699), - [anon_sym_CARET] = ACTIONS(699), + [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_def_DASHenv] = 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_DASH] = 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_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_as] = ACTIONS(1411), + [anon_sym_where] = ACTIONS(1411), + [anon_sym_not] = ACTIONS(1411), + [anon_sym_DOT_DOT_LT] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), + [sym_val_nothing] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1411), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1411), + [anon_sym_DASHinf] = ACTIONS(1411), + [anon_sym_NaN] = 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), + [sym_short_flag] = ACTIONS(1411), [anon_sym_POUND] = ACTIONS(3), }, [497] = { - [sym_expr_parenthesized] = STATE(1459), - [sym_val_range] = STATE(1462), - [sym__value] = STATE(1462), - [sym_val_bool] = STATE(1465), - [sym_val_variable] = STATE(1465), - [sym__var] = STATE(1376), - [sym_val_number] = STATE(88), - [sym_val_duration] = STATE(1465), - [sym_val_filesize] = STATE(1465), - [sym_val_binary] = STATE(1465), - [sym_val_string] = STATE(1465), - [sym__str_double_quotes] = STATE(1461), - [sym_val_interpolated] = STATE(1465), - [sym__inter_single_quotes] = STATE(1479), - [sym__inter_double_quotes] = STATE(1480), - [sym_val_list] = STATE(1465), - [sym_val_record] = STATE(1465), - [sym_val_table] = STATE(1465), - [sym_val_closure] = STATE(1465), - [sym__cmd_arg] = STATE(1463), - [sym_redirection] = STATE(1478), - [sym__flag] = STATE(1484), - [sym_long_flag] = STATE(1454), - [sym_unquoted] = STATE(1486), [sym_comment] = STATE(497), - [aux_sym_command_repeat1] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_LF] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1519), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1523), - [anon_sym_DASH_DASH] = ACTIONS(1525), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_DOT_DOT_LT] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(1529), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1529), - [sym_val_nothing] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(1533), - [anon_sym_false] = ACTIONS(1533), - [aux_sym_val_number_token1] = ACTIONS(1535), - [aux_sym_val_number_token2] = ACTIONS(1535), - [aux_sym_val_number_token3] = ACTIONS(1535), - [aux_sym_val_number_token4] = ACTIONS(1535), - [aux_sym_val_number_token5] = ACTIONS(1535), - [anon_sym_inf] = ACTIONS(1535), - [anon_sym_DASHinf] = ACTIONS(1535), - [anon_sym_NaN] = ACTIONS(1535), - [anon_sym_0b] = ACTIONS(1537), - [anon_sym_0o] = ACTIONS(1537), - [anon_sym_0x] = ACTIONS(1537), - [sym_val_date] = ACTIONS(1531), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1541), - [sym__str_back_ticks] = ACTIONS(1541), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1545), - [anon_sym_err_GT] = ACTIONS(1547), - [anon_sym_out_GT] = ACTIONS(1547), - [anon_sym_e_GT] = ACTIONS(1547), - [anon_sym_o_GT] = ACTIONS(1547), - [anon_sym_err_PLUSout_GT] = ACTIONS(1547), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1547), - [anon_sym_o_PLUSe_GT] = ACTIONS(1547), - [anon_sym_e_PLUSo_GT] = ACTIONS(1547), - [sym_short_flag] = ACTIONS(1549), - [aux_sym_unquoted_token1] = ACTIONS(1551), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(1656), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, [498] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1492), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), [sym_comment] = STATE(498), - [aux_sym__command_parenthesized_body_repeat1] = STATE(481), - [anon_sym_SEMI] = ACTIONS(1627), - [anon_sym_LF] = ACTIONS(1629), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1627), - [anon_sym_PIPE] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(1656), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, [499] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1496), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(766), - [anon_sym_export] = ACTIONS(764), - [anon_sym_alias] = ACTIONS(764), - [anon_sym_let] = ACTIONS(764), - [anon_sym_let_DASHenv] = ACTIONS(764), - [anon_sym_mut] = ACTIONS(764), - [anon_sym_const] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(764), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_def] = ACTIONS(764), - [anon_sym_def_DASHenv] = ACTIONS(764), - [anon_sym_export_DASHenv] = ACTIONS(764), - [anon_sym_extern] = ACTIONS(764), - [anon_sym_module] = ACTIONS(764), - [anon_sym_use] = ACTIONS(764), - [anon_sym_LBRACK] = ACTIONS(764), - [anon_sym_LPAREN] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_error] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_break] = ACTIONS(764), - [anon_sym_continue] = ACTIONS(764), - [anon_sym_for] = ACTIONS(764), - [anon_sym_loop] = ACTIONS(764), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(764), - [anon_sym_if] = ACTIONS(764), - [anon_sym_match] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_try] = ACTIONS(764), - [anon_sym_return] = ACTIONS(764), - [anon_sym_source] = ACTIONS(764), - [anon_sym_source_DASHenv] = ACTIONS(764), - [anon_sym_register] = ACTIONS(764), - [anon_sym_hide] = ACTIONS(764), - [anon_sym_hide_DASHenv] = ACTIONS(764), - [anon_sym_overlay] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_where] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(764), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(764), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(764), - [aux_sym_val_number_token4] = ACTIONS(764), - [aux_sym_val_number_token5] = ACTIONS(764), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(764), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(764), - [sym__str_single_quotes] = ACTIONS(764), - [sym__str_back_ticks] = ACTIONS(764), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(764), - [anon_sym_CARET] = ACTIONS(764), + [aux_sym__command_parenthesized_body_repeat1] = STATE(486), + [anon_sym_SEMI] = ACTIONS(1658), + [anon_sym_LF] = ACTIONS(1660), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1658), + [anon_sym_PIPE] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, [500] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(483), [sym_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1404), - [anon_sym_export] = ACTIONS(1402), - [anon_sym_alias] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_let_DASHenv] = ACTIONS(1402), - [anon_sym_mut] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1402), - [sym_cmd_identifier] = ACTIONS(1402), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_def] = ACTIONS(1402), - [anon_sym_def_DASHenv] = ACTIONS(1402), - [anon_sym_export_DASHenv] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1402), - [anon_sym_DOLLAR] = ACTIONS(1402), - [anon_sym_error] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_source] = ACTIONS(1402), - [anon_sym_source_DASHenv] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_hide] = ACTIONS(1402), - [anon_sym_hide_DASHenv] = ACTIONS(1402), - [anon_sym_overlay] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_where] = ACTIONS(1402), - [anon_sym_not] = ACTIONS(1402), - [anon_sym_DOT_DOT_LT] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), - [sym_val_nothing] = ACTIONS(1402), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [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(1402), - [aux_sym_val_number_token5] = ACTIONS(1402), - [anon_sym_inf] = ACTIONS(1402), - [anon_sym_DASHinf] = ACTIONS(1402), - [anon_sym_NaN] = ACTIONS(1402), - [anon_sym_0b] = ACTIONS(1402), - [anon_sym_0o] = ACTIONS(1402), - [anon_sym_0x] = ACTIONS(1402), - [sym_val_date] = ACTIONS(1402), - [anon_sym_DQUOTE] = ACTIONS(1402), - [sym__str_single_quotes] = ACTIONS(1402), - [sym__str_back_ticks] = ACTIONS(1402), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1402), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [sym_short_flag] = ACTIONS(1402), + [ts_builtin_sym_end] = ACTIONS(709), + [anon_sym_export] = ACTIONS(707), + [anon_sym_alias] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_let_DASHenv] = ACTIONS(707), + [anon_sym_mut] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(707), + [sym_cmd_identifier] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(709), + [anon_sym_def] = ACTIONS(707), + [anon_sym_def_DASHenv] = ACTIONS(707), + [anon_sym_export_DASHenv] = ACTIONS(707), + [anon_sym_extern] = ACTIONS(707), + [anon_sym_module] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(707), + [anon_sym_LPAREN] = ACTIONS(707), + [anon_sym_DOLLAR] = ACTIONS(707), + [anon_sym_error] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [anon_sym_do] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(707), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_source] = ACTIONS(707), + [anon_sym_source_DASHenv] = ACTIONS(707), + [anon_sym_register] = ACTIONS(707), + [anon_sym_hide] = ACTIONS(707), + [anon_sym_hide_DASHenv] = ACTIONS(707), + [anon_sym_overlay] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_not] = ACTIONS(707), + [anon_sym_DOT_DOT_LT] = ACTIONS(707), + [anon_sym_DOT_DOT] = ACTIONS(707), + [anon_sym_DOT_DOT_EQ] = ACTIONS(707), + [sym_val_nothing] = ACTIONS(707), + [anon_sym_true] = ACTIONS(707), + [anon_sym_false] = ACTIONS(707), + [aux_sym_val_number_token1] = ACTIONS(707), + [aux_sym_val_number_token2] = ACTIONS(707), + [aux_sym_val_number_token3] = ACTIONS(707), + [aux_sym_val_number_token4] = ACTIONS(707), + [aux_sym_val_number_token5] = ACTIONS(707), + [anon_sym_inf] = ACTIONS(707), + [anon_sym_DASHinf] = ACTIONS(707), + [anon_sym_NaN] = ACTIONS(707), + [anon_sym_0b] = ACTIONS(707), + [anon_sym_0o] = ACTIONS(707), + [anon_sym_0x] = ACTIONS(707), + [sym_val_date] = ACTIONS(707), + [anon_sym_DQUOTE] = ACTIONS(707), + [sym__str_single_quotes] = ACTIONS(707), + [sym__str_back_ticks] = ACTIONS(707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(707), + [anon_sym_CARET] = ACTIONS(707), [anon_sym_POUND] = ACTIONS(3), }, [501] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1496), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(1631), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_RPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_RBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(1631), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - }, - [503] = { - [sym_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1392), - [anon_sym_export] = ACTIONS(1390), - [anon_sym_alias] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_let_DASHenv] = ACTIONS(1390), - [anon_sym_mut] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1390), - [sym_cmd_identifier] = ACTIONS(1390), - [anon_sym_LF] = ACTIONS(1392), - [anon_sym_def] = ACTIONS(1390), - [anon_sym_def_DASHenv] = ACTIONS(1390), - [anon_sym_export_DASHenv] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_module] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(1390), - [anon_sym_error] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_source] = ACTIONS(1390), - [anon_sym_source_DASHenv] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_hide] = ACTIONS(1390), - [anon_sym_hide_DASHenv] = ACTIONS(1390), - [anon_sym_overlay] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1390), - [anon_sym_where] = ACTIONS(1390), - [anon_sym_not] = ACTIONS(1390), - [anon_sym_DOT_DOT_LT] = ACTIONS(1390), - [anon_sym_DOT_DOT] = ACTIONS(1390), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), - [sym_val_nothing] = ACTIONS(1390), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [aux_sym_val_number_token1] = ACTIONS(1390), - [aux_sym_val_number_token2] = ACTIONS(1390), - [aux_sym_val_number_token3] = ACTIONS(1390), - [aux_sym_val_number_token4] = ACTIONS(1390), - [aux_sym_val_number_token5] = ACTIONS(1390), - [anon_sym_inf] = ACTIONS(1390), - [anon_sym_DASHinf] = ACTIONS(1390), - [anon_sym_NaN] = ACTIONS(1390), - [anon_sym_0b] = ACTIONS(1390), - [anon_sym_0o] = ACTIONS(1390), - [anon_sym_0x] = ACTIONS(1390), - [sym_val_date] = ACTIONS(1390), - [anon_sym_DQUOTE] = ACTIONS(1390), - [sym__str_single_quotes] = ACTIONS(1390), - [sym__str_back_ticks] = ACTIONS(1390), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1390), - [anon_sym_CARET] = ACTIONS(1390), - [sym_short_flag] = ACTIONS(1390), - [anon_sym_POUND] = ACTIONS(3), - }, - [504] = { - [sym__expression] = STATE(406), - [sym_expr_unary] = STATE(446), - [sym_expr_binary] = STATE(446), - [sym_expr_parenthesized] = STATE(447), - [sym_val_range] = STATE(446), - [sym__value] = STATE(446), - [sym_val_bool] = STATE(404), - [sym_val_variable] = STATE(404), - [sym__var] = STATE(298), - [sym_val_number] = STATE(9), - [sym_val_duration] = STATE(404), - [sym_val_filesize] = STATE(404), - [sym_val_binary] = STATE(404), - [sym_val_string] = STATE(404), - [sym__str_double_quotes] = STATE(401), - [sym_val_interpolated] = STATE(404), - [sym__inter_single_quotes] = STATE(449), - [sym__inter_double_quotes] = STATE(448), - [sym_val_list] = STATE(404), - [sym_val_record] = STATE(404), - [sym_val_table] = STATE(404), - [sym_val_closure] = STATE(404), - [sym_unquoted] = STATE(1489), - [sym_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LF] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1635), - [anon_sym_DASH_DASH] = ACTIONS(1358), - [anon_sym_DASH] = ACTIONS(1637), - [anon_sym_LBRACE] = ACTIONS(1639), - [anon_sym_not] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [sym_val_nothing] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1647), - [anon_sym_false] = 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(1649), - [aux_sym_val_number_token5] = ACTIONS(1649), - [anon_sym_inf] = ACTIONS(1649), - [anon_sym_DASHinf] = ACTIONS(1649), - [anon_sym_NaN] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1651), - [anon_sym_0o] = ACTIONS(1651), - [anon_sym_0x] = ACTIONS(1651), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1657), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1659), - [anon_sym_err_GT] = ACTIONS(1358), - [anon_sym_out_GT] = ACTIONS(1358), - [anon_sym_e_GT] = ACTIONS(1358), - [anon_sym_o_GT] = ACTIONS(1358), - [anon_sym_err_PLUSout_GT] = ACTIONS(1358), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1358), - [anon_sym_o_PLUSe_GT] = ACTIONS(1358), - [anon_sym_e_PLUSo_GT] = ACTIONS(1358), - [sym_short_flag] = ACTIONS(1358), - [aux_sym_unquoted_token1] = ACTIONS(1551), - [anon_sym_POUND] = ACTIONS(3), - }, - [505] = { - [sym_val_record] = STATE(577), - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [sym_cmd_identifier] = ACTIONS(1661), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_def_DASHenv] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_where] = ACTIONS(1661), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [sym_val_nothing] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [aux_sym_val_number_token1] = ACTIONS(1661), - [aux_sym_val_number_token2] = ACTIONS(1661), - [aux_sym_val_number_token3] = ACTIONS(1661), - [aux_sym_val_number_token4] = ACTIONS(1661), - [aux_sym_val_number_token5] = ACTIONS(1661), - [anon_sym_inf] = ACTIONS(1661), - [anon_sym_DASHinf] = ACTIONS(1661), - [anon_sym_NaN] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1661), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), - }, - [506] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1485), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(506), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_LF] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [aux_sym__command_parenthesized_body_repeat1] = STATE(485), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LF] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), + [anon_sym_RPAREN] = ACTIONS(1662), + [anon_sym_PIPE] = ACTIONS(1662), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, - [507] = { - [sym_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(750), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), + [502] = { + [sym_expr_parenthesized] = STATE(1467), + [sym_val_range] = STATE(1464), + [sym__value] = STATE(1464), + [sym_val_bool] = STATE(1447), + [sym_val_variable] = STATE(1447), + [sym__var] = STATE(1373), + [sym_val_number] = STATE(89), + [sym_val_duration] = STATE(1447), + [sym_val_filesize] = STATE(1447), + [sym_val_binary] = STATE(1447), + [sym_val_string] = STATE(1447), + [sym__str_double_quotes] = STATE(1462), + [sym_val_interpolated] = STATE(1447), + [sym__inter_single_quotes] = STATE(1456), + [sym__inter_double_quotes] = STATE(1459), + [sym_val_list] = STATE(1447), + [sym_val_record] = STATE(1447), + [sym_val_table] = STATE(1447), + [sym_val_closure] = STATE(1447), + [sym__cmd_arg] = STATE(1461), + [sym_redirection] = STATE(1460), + [sym__flag] = STATE(1451), + [sym_long_flag] = STATE(1469), + [sym_unquoted] = STATE(1449), + [sym_comment] = STATE(502), + [aux_sym_command_repeat1] = STATE(494), + [ts_builtin_sym_end] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_LF] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1533), + [anon_sym_LPAREN] = ACTIONS(1535), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_DOLLAR] = ACTIONS(1537), + [anon_sym_DASH_DASH] = ACTIONS(1539), + [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1543), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [sym_val_nothing] = ACTIONS(1545), + [anon_sym_true] = ACTIONS(1547), + [anon_sym_false] = ACTIONS(1547), + [aux_sym_val_number_token1] = ACTIONS(1549), + [aux_sym_val_number_token2] = ACTIONS(1549), + [aux_sym_val_number_token3] = ACTIONS(1549), + [aux_sym_val_number_token4] = ACTIONS(1549), + [aux_sym_val_number_token5] = ACTIONS(1549), + [anon_sym_inf] = ACTIONS(1549), + [anon_sym_DASHinf] = ACTIONS(1549), + [anon_sym_NaN] = ACTIONS(1549), + [anon_sym_0b] = ACTIONS(1551), + [anon_sym_0o] = ACTIONS(1551), + [anon_sym_0x] = ACTIONS(1551), + [sym_val_date] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1553), + [sym__str_single_quotes] = ACTIONS(1555), + [sym__str_back_ticks] = ACTIONS(1555), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1559), + [anon_sym_err_GT] = ACTIONS(1561), + [anon_sym_out_GT] = ACTIONS(1561), + [anon_sym_e_GT] = ACTIONS(1561), + [anon_sym_o_GT] = ACTIONS(1561), + [anon_sym_err_PLUSout_GT] = ACTIONS(1561), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1561), + [anon_sym_o_PLUSe_GT] = ACTIONS(1561), + [anon_sym_e_PLUSo_GT] = ACTIONS(1561), + [sym_short_flag] = ACTIONS(1563), + [aux_sym_unquoted_token1] = ACTIONS(1565), + [anon_sym_POUND] = ACTIONS(3), + }, + [503] = { + [sym_path] = STATE(605), + [sym_comment] = STATE(503), + [aux_sym_cell_path_repeat1] = STATE(503), + [ts_builtin_sym_end] = ACTIONS(731), + [anon_sym_export] = ACTIONS(729), + [anon_sym_alias] = ACTIONS(729), + [anon_sym_let] = ACTIONS(729), + [anon_sym_let_DASHenv] = ACTIONS(729), + [anon_sym_mut] = ACTIONS(729), + [anon_sym_const] = ACTIONS(729), + [anon_sym_SEMI] = ACTIONS(729), + [sym_cmd_identifier] = ACTIONS(729), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_def] = ACTIONS(729), + [anon_sym_def_DASHenv] = ACTIONS(729), + [anon_sym_export_DASHenv] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_module] = ACTIONS(729), + [anon_sym_use] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(729), + [anon_sym_LPAREN] = ACTIONS(729), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_error] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_break] = ACTIONS(729), + [anon_sym_continue] = ACTIONS(729), + [anon_sym_for] = ACTIONS(729), + [anon_sym_loop] = ACTIONS(729), + [anon_sym_while] = ACTIONS(729), + [anon_sym_do] = ACTIONS(729), + [anon_sym_if] = ACTIONS(729), + [anon_sym_match] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(729), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_try] = ACTIONS(729), + [anon_sym_return] = ACTIONS(729), + [anon_sym_source] = ACTIONS(729), + [anon_sym_source_DASHenv] = ACTIONS(729), + [anon_sym_register] = ACTIONS(729), + [anon_sym_hide] = ACTIONS(729), + [anon_sym_hide_DASHenv] = ACTIONS(729), + [anon_sym_overlay] = ACTIONS(729), + [anon_sym_where] = ACTIONS(729), + [anon_sym_not] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(729), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(729), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(729), + [aux_sym_val_number_token4] = ACTIONS(729), + [aux_sym_val_number_token5] = ACTIONS(729), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(729), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(729), + [anon_sym_DQUOTE] = ACTIONS(729), + [sym__str_single_quotes] = ACTIONS(729), + [sym__str_back_ticks] = ACTIONS(729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(729), + [anon_sym_CARET] = ACTIONS(729), + [anon_sym_POUND] = ACTIONS(3), + }, + [504] = { + [sym_cell_path] = STATE(655), + [sym_path] = STATE(483), + [sym_comment] = STATE(504), + [ts_builtin_sym_end] = ACTIONS(719), + [anon_sym_export] = ACTIONS(717), + [anon_sym_alias] = ACTIONS(717), + [anon_sym_let] = ACTIONS(717), + [anon_sym_let_DASHenv] = ACTIONS(717), + [anon_sym_mut] = ACTIONS(717), + [anon_sym_const] = ACTIONS(717), + [anon_sym_SEMI] = ACTIONS(717), + [sym_cmd_identifier] = ACTIONS(717), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_def] = ACTIONS(717), + [anon_sym_def_DASHenv] = ACTIONS(717), + [anon_sym_export_DASHenv] = ACTIONS(717), + [anon_sym_extern] = ACTIONS(717), + [anon_sym_module] = ACTIONS(717), + [anon_sym_use] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(717), + [anon_sym_LPAREN] = ACTIONS(717), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_error] = ACTIONS(717), + [anon_sym_DASH] = ACTIONS(717), + [anon_sym_break] = ACTIONS(717), + [anon_sym_continue] = ACTIONS(717), + [anon_sym_for] = ACTIONS(717), + [anon_sym_loop] = ACTIONS(717), + [anon_sym_while] = ACTIONS(717), + [anon_sym_do] = ACTIONS(717), + [anon_sym_if] = ACTIONS(717), + [anon_sym_match] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(717), + [anon_sym_DOT] = ACTIONS(1567), + [anon_sym_try] = ACTIONS(717), + [anon_sym_return] = ACTIONS(717), + [anon_sym_source] = ACTIONS(717), + [anon_sym_source_DASHenv] = ACTIONS(717), + [anon_sym_register] = ACTIONS(717), + [anon_sym_hide] = ACTIONS(717), + [anon_sym_hide_DASHenv] = ACTIONS(717), + [anon_sym_overlay] = ACTIONS(717), + [anon_sym_where] = ACTIONS(717), + [anon_sym_not] = ACTIONS(717), + [anon_sym_DOT_DOT_LT] = ACTIONS(717), + [anon_sym_DOT_DOT] = ACTIONS(717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(717), + [sym_val_nothing] = ACTIONS(717), + [anon_sym_true] = ACTIONS(717), + [anon_sym_false] = ACTIONS(717), + [aux_sym_val_number_token1] = ACTIONS(717), + [aux_sym_val_number_token2] = ACTIONS(717), + [aux_sym_val_number_token3] = ACTIONS(717), + [aux_sym_val_number_token4] = ACTIONS(717), + [aux_sym_val_number_token5] = ACTIONS(717), + [anon_sym_inf] = ACTIONS(717), + [anon_sym_DASHinf] = ACTIONS(717), + [anon_sym_NaN] = ACTIONS(717), + [anon_sym_0b] = ACTIONS(717), + [anon_sym_0o] = ACTIONS(717), + [anon_sym_0x] = ACTIONS(717), + [sym_val_date] = ACTIONS(717), + [anon_sym_DQUOTE] = ACTIONS(717), + [sym__str_single_quotes] = ACTIONS(717), + [sym__str_back_ticks] = ACTIONS(717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(717), + [anon_sym_CARET] = ACTIONS(717), + [anon_sym_POUND] = ACTIONS(3), + }, + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_def_DASHenv] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_RPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_RBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_POUND] = ACTIONS(3), + }, + [506] = { + [sym_comment] = STATE(506), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), [anon_sym_QMARK2] = ACTIONS(1669), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, - [508] = { - [sym_comment] = STATE(508), - [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), + [507] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1458), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(507), [anon_sym_SEMI] = ACTIONS(1671), - [sym_cmd_identifier] = ACTIONS(1671), [anon_sym_LF] = ACTIONS(1673), - [anon_sym_def] = ACTIONS(1671), - [anon_sym_def_DASHenv] = 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_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), [anon_sym_RPAREN] = ACTIONS(1671), [anon_sym_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_error] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_for] = 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_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_where] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [sym_val_nothing] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1671), - [anon_sym_DASHinf] = ACTIONS(1671), - [anon_sym_NaN] = 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(3), - }, - [509] = { - [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(865), - [anon_sym_alias] = ACTIONS(865), - [anon_sym_let] = ACTIONS(865), - [anon_sym_let_DASHenv] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [sym_cmd_identifier] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_def] = ACTIONS(865), - [anon_sym_def_DASHenv] = ACTIONS(865), - [anon_sym_export_DASHenv] = ACTIONS(865), - [anon_sym_extern] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_use] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_error] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_loop] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_match] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_source] = ACTIONS(865), - [anon_sym_source_DASHenv] = ACTIONS(865), - [anon_sym_register] = ACTIONS(865), - [anon_sym_hide] = ACTIONS(865), - [anon_sym_hide_DASHenv] = ACTIONS(865), - [anon_sym_overlay] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_where] = ACTIONS(865), - [anon_sym_not] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_CARET] = ACTIONS(865), - [anon_sym_POUND] = ACTIONS(3), - }, - [510] = { - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(781), - [anon_sym_alias] = ACTIONS(781), - [anon_sym_let] = ACTIONS(781), - [anon_sym_let_DASHenv] = ACTIONS(781), - [anon_sym_mut] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [sym_cmd_identifier] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_def] = ACTIONS(781), - [anon_sym_def_DASHenv] = ACTIONS(781), - [anon_sym_export_DASHenv] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_use] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_error] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_loop] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_match] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_source] = ACTIONS(781), - [anon_sym_source_DASHenv] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_hide] = ACTIONS(781), - [anon_sym_hide_DASHenv] = ACTIONS(781), - [anon_sym_overlay] = ACTIONS(781), - [anon_sym_where] = ACTIONS(781), - [anon_sym_not] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, - [511] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1485), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), - [sym_comment] = STATE(511), + [508] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1458), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(508), [anon_sym_SEMI] = ACTIONS(1675), [anon_sym_LF] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), [anon_sym_RPAREN] = ACTIONS(1675), [anon_sym_PIPE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, - [512] = { - [sym_comment] = STATE(512), + [509] = { + [sym_comment] = STATE(509), [anon_sym_export] = ACTIONS(1679), [anon_sym_alias] = ACTIONS(1679), [anon_sym_let] = ACTIONS(1679), @@ -88065,7 +87932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_error] = ACTIONS(1679), [anon_sym_DASH] = ACTIONS(1679), @@ -88087,6 +87953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(1679), [anon_sym_DOT_DOT_LT] = ACTIONS(1679), @@ -88115,79 +87982,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1679), [anon_sym_POUND] = ACTIONS(3), }, - [513] = { - [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(777), - [anon_sym_alias] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_let_DASHenv] = ACTIONS(777), - [anon_sym_mut] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [sym_cmd_identifier] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_def] = ACTIONS(777), - [anon_sym_def_DASHenv] = ACTIONS(777), - [anon_sym_export_DASHenv] = ACTIONS(777), - [anon_sym_extern] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_RPAREN] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_error] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_source] = ACTIONS(777), - [anon_sym_source_DASHenv] = ACTIONS(777), - [anon_sym_register] = ACTIONS(777), - [anon_sym_hide] = ACTIONS(777), - [anon_sym_hide_DASHenv] = ACTIONS(777), - [anon_sym_overlay] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_not] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_POUND] = ACTIONS(3), - }, - [514] = { - [sym_val_record] = STATE(580), - [sym_comment] = STATE(514), + [510] = { + [sym_block] = STATE(551), + [sym_comment] = STATE(510), [anon_sym_export] = ACTIONS(1683), [anon_sym_alias] = ACTIONS(1683), [anon_sym_let] = ACTIONS(1683), @@ -88217,7 +88014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(1683), [anon_sym_if] = ACTIONS(1683), [anon_sym_match] = ACTIONS(1683), - [anon_sym_LBRACE] = ACTIONS(1683), + [anon_sym_LBRACE] = ACTIONS(1687), [anon_sym_RBRACE] = ACTIONS(1683), [anon_sym_try] = ACTIONS(1683), [anon_sym_return] = ACTIONS(1683), @@ -88255,429 +88052,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1683), [anon_sym_POUND] = ACTIONS(3), }, + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(797), + [anon_sym_alias] = ACTIONS(797), + [anon_sym_let] = ACTIONS(797), + [anon_sym_let_DASHenv] = ACTIONS(797), + [anon_sym_mut] = ACTIONS(797), + [anon_sym_const] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [sym_cmd_identifier] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_def] = ACTIONS(797), + [anon_sym_def_DASHenv] = ACTIONS(797), + [anon_sym_export_DASHenv] = ACTIONS(797), + [anon_sym_extern] = ACTIONS(797), + [anon_sym_module] = ACTIONS(797), + [anon_sym_use] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_error] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_break] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(797), + [anon_sym_for] = ACTIONS(797), + [anon_sym_loop] = ACTIONS(797), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(797), + [anon_sym_if] = ACTIONS(797), + [anon_sym_match] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_try] = ACTIONS(797), + [anon_sym_return] = ACTIONS(797), + [anon_sym_source] = ACTIONS(797), + [anon_sym_source_DASHenv] = ACTIONS(797), + [anon_sym_register] = ACTIONS(797), + [anon_sym_hide] = ACTIONS(797), + [anon_sym_hide_DASHenv] = ACTIONS(797), + [anon_sym_overlay] = ACTIONS(797), + [anon_sym_where] = ACTIONS(797), + [anon_sym_not] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(3), + }, + [512] = { + [sym_comment] = STATE(512), + [anon_sym_export] = ACTIONS(793), + [anon_sym_alias] = ACTIONS(793), + [anon_sym_let] = ACTIONS(793), + [anon_sym_let_DASHenv] = ACTIONS(793), + [anon_sym_mut] = ACTIONS(793), + [anon_sym_const] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [sym_cmd_identifier] = ACTIONS(793), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_def] = ACTIONS(793), + [anon_sym_def_DASHenv] = ACTIONS(793), + [anon_sym_export_DASHenv] = ACTIONS(793), + [anon_sym_extern] = ACTIONS(793), + [anon_sym_module] = ACTIONS(793), + [anon_sym_use] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_error] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_break] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(793), + [anon_sym_for] = ACTIONS(793), + [anon_sym_loop] = ACTIONS(793), + [anon_sym_while] = ACTIONS(793), + [anon_sym_do] = ACTIONS(793), + [anon_sym_if] = ACTIONS(793), + [anon_sym_match] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_RBRACE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_try] = ACTIONS(793), + [anon_sym_return] = ACTIONS(793), + [anon_sym_source] = ACTIONS(793), + [anon_sym_source_DASHenv] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_hide] = ACTIONS(793), + [anon_sym_hide_DASHenv] = ACTIONS(793), + [anon_sym_overlay] = ACTIONS(793), + [anon_sym_where] = ACTIONS(793), + [anon_sym_not] = ACTIONS(793), + [anon_sym_DOT_DOT_LT] = ACTIONS(793), + [anon_sym_DOT_DOT] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(793), + [sym_val_nothing] = ACTIONS(793), + [anon_sym_true] = ACTIONS(793), + [anon_sym_false] = ACTIONS(793), + [aux_sym_val_number_token1] = ACTIONS(793), + [aux_sym_val_number_token2] = ACTIONS(793), + [aux_sym_val_number_token3] = ACTIONS(793), + [aux_sym_val_number_token4] = ACTIONS(793), + [aux_sym_val_number_token5] = ACTIONS(793), + [anon_sym_inf] = ACTIONS(793), + [anon_sym_DASHinf] = ACTIONS(793), + [anon_sym_NaN] = ACTIONS(793), + [anon_sym_0b] = ACTIONS(793), + [anon_sym_0o] = ACTIONS(793), + [anon_sym_0x] = ACTIONS(793), + [sym_val_date] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [sym__str_single_quotes] = ACTIONS(793), + [sym__str_back_ticks] = ACTIONS(793), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), + [anon_sym_POUND] = ACTIONS(3), + }, + [513] = { + [sym_block] = STATE(608), + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [sym_cmd_identifier] = ACTIONS(1689), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_def_DASHenv] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_where] = ACTIONS(1689), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [sym_val_nothing] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [aux_sym_val_number_token1] = ACTIONS(1689), + [aux_sym_val_number_token2] = ACTIONS(1689), + [aux_sym_val_number_token3] = ACTIONS(1689), + [aux_sym_val_number_token4] = ACTIONS(1689), + [aux_sym_val_number_token5] = ACTIONS(1689), + [anon_sym_inf] = ACTIONS(1689), + [anon_sym_DASHinf] = ACTIONS(1689), + [anon_sym_NaN] = ACTIONS(1689), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + }, + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(787), + [anon_sym_alias] = ACTIONS(787), + [anon_sym_let] = ACTIONS(787), + [anon_sym_let_DASHenv] = ACTIONS(787), + [anon_sym_mut] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_cmd_identifier] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_def] = ACTIONS(787), + [anon_sym_def_DASHenv] = ACTIONS(787), + [anon_sym_export_DASHenv] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_use] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_error] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_loop] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_source] = ACTIONS(787), + [anon_sym_source_DASHenv] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_hide_DASHenv] = ACTIONS(787), + [anon_sym_overlay] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_not] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [aux_sym_val_number_token1] = ACTIONS(787), + [aux_sym_val_number_token2] = ACTIONS(787), + [aux_sym_val_number_token3] = ACTIONS(787), + [aux_sym_val_number_token4] = ACTIONS(787), + [aux_sym_val_number_token5] = ACTIONS(787), + [anon_sym_inf] = ACTIONS(787), + [anon_sym_DASHinf] = ACTIONS(787), + [anon_sym_NaN] = ACTIONS(787), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(3), + }, [515] = { + [sym_block] = STATE(607), [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(789), - [anon_sym_alias] = ACTIONS(789), - [anon_sym_let] = ACTIONS(789), - [anon_sym_let_DASHenv] = ACTIONS(789), - [anon_sym_mut] = ACTIONS(789), - [anon_sym_const] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [sym_cmd_identifier] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_def] = ACTIONS(789), - [anon_sym_def_DASHenv] = ACTIONS(789), - [anon_sym_export_DASHenv] = ACTIONS(789), - [anon_sym_extern] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_use] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_RPAREN] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_error] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_loop] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_match] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_source] = ACTIONS(789), - [anon_sym_source_DASHenv] = ACTIONS(789), - [anon_sym_register] = ACTIONS(789), - [anon_sym_hide] = ACTIONS(789), - [anon_sym_hide_DASHenv] = ACTIONS(789), - [anon_sym_overlay] = ACTIONS(789), - [anon_sym_where] = ACTIONS(789), - [anon_sym_not] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [sym_cmd_identifier] = ACTIONS(1689), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_def_DASHenv] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1689), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_where] = ACTIONS(1689), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [sym_val_nothing] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [aux_sym_val_number_token1] = ACTIONS(1689), + [aux_sym_val_number_token2] = ACTIONS(1689), + [aux_sym_val_number_token3] = ACTIONS(1689), + [aux_sym_val_number_token4] = ACTIONS(1689), + [aux_sym_val_number_token5] = ACTIONS(1689), + [anon_sym_inf] = ACTIONS(1689), + [anon_sym_DASHinf] = ACTIONS(1689), + [anon_sym_NaN] = ACTIONS(1689), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, [516] = { [sym_comment] = STATE(516), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = 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_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_not] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [sym_val_nothing] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1687), - [anon_sym_DASHinf] = ACTIONS(1687), - [anon_sym_NaN] = 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_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [sym_cmd_identifier] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_def_DASHenv] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_RPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_where] = ACTIONS(1693), + [anon_sym_not] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [sym_val_nothing] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [aux_sym_val_number_token1] = ACTIONS(1693), + [aux_sym_val_number_token2] = ACTIONS(1693), + [aux_sym_val_number_token3] = ACTIONS(1693), + [aux_sym_val_number_token4] = ACTIONS(1693), + [aux_sym_val_number_token5] = ACTIONS(1693), + [anon_sym_inf] = ACTIONS(1693), + [anon_sym_DASHinf] = ACTIONS(1693), + [anon_sym_NaN] = ACTIONS(1693), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_CARET] = ACTIONS(1693), [anon_sym_POUND] = ACTIONS(3), }, [517] = { - [sym_block] = STATE(540), [sym_comment] = STATE(517), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = 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(1695), - [anon_sym_RBRACE] = 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_where] = ACTIONS(1691), - [anon_sym_not] = ACTIONS(1691), - [anon_sym_DOT_DOT_LT] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [sym_val_nothing] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1691), - [anon_sym_DASHinf] = ACTIONS(1691), - [anon_sym_NaN] = 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_export] = ACTIONS(939), + [anon_sym_alias] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_let_DASHenv] = ACTIONS(939), + [anon_sym_mut] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [sym_cmd_identifier] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_def] = ACTIONS(939), + [anon_sym_def_DASHenv] = ACTIONS(939), + [anon_sym_export_DASHenv] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_RPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_error] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_RBRACE] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_source] = ACTIONS(939), + [anon_sym_source_DASHenv] = ACTIONS(939), + [anon_sym_register] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_hide_DASHenv] = ACTIONS(939), + [anon_sym_overlay] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_not] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), [anon_sym_POUND] = ACTIONS(3), }, [518] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1485), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1697), + [anon_sym_alias] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1697), + [anon_sym_let_DASHenv] = ACTIONS(1697), + [anon_sym_mut] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), [anon_sym_SEMI] = ACTIONS(1697), + [sym_cmd_identifier] = ACTIONS(1697), [anon_sym_LF] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_def_DASHenv] = ACTIONS(1697), + [anon_sym_export_DASHenv] = ACTIONS(1697), + [anon_sym_extern] = ACTIONS(1697), + [anon_sym_module] = ACTIONS(1697), + [anon_sym_use] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), [anon_sym_RPAREN] = ACTIONS(1697), [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_loop] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_source] = ACTIONS(1697), + [anon_sym_source_DASHenv] = ACTIONS(1697), + [anon_sym_register] = ACTIONS(1697), + [anon_sym_hide] = ACTIONS(1697), + [anon_sym_hide_DASHenv] = ACTIONS(1697), + [anon_sym_overlay] = ACTIONS(1697), + [anon_sym_where] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_DOT_DOT_LT] = ACTIONS(1697), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1697), + [sym_val_nothing] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [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(1697), + [aux_sym_val_number_token5] = ACTIONS(1697), + [anon_sym_inf] = ACTIONS(1697), + [anon_sym_DASHinf] = ACTIONS(1697), + [anon_sym_NaN] = ACTIONS(1697), + [anon_sym_0b] = ACTIONS(1697), + [anon_sym_0o] = ACTIONS(1697), + [anon_sym_0x] = ACTIONS(1697), + [sym_val_date] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [sym__str_single_quotes] = ACTIONS(1697), + [sym__str_back_ticks] = ACTIONS(1697), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), + [anon_sym_CARET] = ACTIONS(1697), [anon_sym_POUND] = ACTIONS(3), }, [519] = { - [sym_block] = STATE(539), [sym_comment] = STATE(519), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = 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(1695), - [anon_sym_RBRACE] = 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_where] = ACTIONS(1691), - [anon_sym_not] = ACTIONS(1691), - [anon_sym_DOT_DOT_LT] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [sym_val_nothing] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1691), - [anon_sym_DASHinf] = ACTIONS(1691), - [anon_sym_NaN] = 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), + [ts_builtin_sym_end] = ACTIONS(771), + [anon_sym_export] = ACTIONS(769), + [anon_sym_alias] = ACTIONS(769), + [anon_sym_let] = ACTIONS(769), + [anon_sym_let_DASHenv] = ACTIONS(769), + [anon_sym_mut] = ACTIONS(769), + [anon_sym_const] = ACTIONS(769), + [anon_sym_SEMI] = ACTIONS(769), + [sym_cmd_identifier] = ACTIONS(769), + [anon_sym_LF] = ACTIONS(771), + [anon_sym_def] = ACTIONS(769), + [anon_sym_def_DASHenv] = ACTIONS(769), + [anon_sym_export_DASHenv] = ACTIONS(769), + [anon_sym_extern] = ACTIONS(769), + [anon_sym_module] = ACTIONS(769), + [anon_sym_use] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_error] = ACTIONS(769), + [anon_sym_DASH] = ACTIONS(769), + [anon_sym_break] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(769), + [anon_sym_for] = ACTIONS(769), + [anon_sym_loop] = ACTIONS(769), + [anon_sym_while] = ACTIONS(769), + [anon_sym_do] = ACTIONS(769), + [anon_sym_if] = ACTIONS(769), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_DOT] = ACTIONS(769), + [anon_sym_try] = ACTIONS(769), + [anon_sym_return] = ACTIONS(769), + [anon_sym_source] = ACTIONS(769), + [anon_sym_source_DASHenv] = ACTIONS(769), + [anon_sym_register] = ACTIONS(769), + [anon_sym_hide] = ACTIONS(769), + [anon_sym_hide_DASHenv] = ACTIONS(769), + [anon_sym_overlay] = ACTIONS(769), + [anon_sym_where] = ACTIONS(769), + [anon_sym_QMARK2] = ACTIONS(1669), + [anon_sym_not] = ACTIONS(769), + [anon_sym_DOT_DOT_LT] = ACTIONS(769), + [anon_sym_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [sym_val_nothing] = ACTIONS(769), + [anon_sym_true] = ACTIONS(769), + [anon_sym_false] = ACTIONS(769), + [aux_sym_val_number_token1] = ACTIONS(769), + [aux_sym_val_number_token2] = ACTIONS(769), + [aux_sym_val_number_token3] = ACTIONS(769), + [aux_sym_val_number_token4] = ACTIONS(769), + [aux_sym_val_number_token5] = ACTIONS(769), + [anon_sym_inf] = ACTIONS(769), + [anon_sym_DASHinf] = ACTIONS(769), + [anon_sym_NaN] = ACTIONS(769), + [anon_sym_0b] = ACTIONS(769), + [anon_sym_0o] = ACTIONS(769), + [anon_sym_0x] = ACTIONS(769), + [sym_val_date] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(769), + [sym__str_single_quotes] = ACTIONS(769), + [sym__str_back_ticks] = ACTIONS(769), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(769), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(769), + [anon_sym_CARET] = ACTIONS(769), [anon_sym_POUND] = ACTIONS(3), }, [520] = { [sym_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(750), - [anon_sym_export] = ACTIONS(748), - [anon_sym_alias] = ACTIONS(748), - [anon_sym_let] = ACTIONS(748), - [anon_sym_let_DASHenv] = ACTIONS(748), - [anon_sym_mut] = ACTIONS(748), - [anon_sym_const] = ACTIONS(748), - [anon_sym_SEMI] = ACTIONS(748), - [sym_cmd_identifier] = ACTIONS(748), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_def] = ACTIONS(748), - [anon_sym_def_DASHenv] = ACTIONS(748), - [anon_sym_export_DASHenv] = ACTIONS(748), - [anon_sym_extern] = ACTIONS(748), - [anon_sym_module] = ACTIONS(748), - [anon_sym_use] = ACTIONS(748), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LPAREN] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_error] = ACTIONS(748), - [anon_sym_DASH] = ACTIONS(748), - [anon_sym_break] = ACTIONS(748), - [anon_sym_continue] = ACTIONS(748), - [anon_sym_for] = ACTIONS(748), - [anon_sym_loop] = ACTIONS(748), - [anon_sym_while] = ACTIONS(748), - [anon_sym_do] = ACTIONS(748), - [anon_sym_if] = ACTIONS(748), - [anon_sym_match] = ACTIONS(748), - [anon_sym_LBRACE] = ACTIONS(748), - [anon_sym_DOT] = ACTIONS(748), - [anon_sym_try] = ACTIONS(748), - [anon_sym_return] = ACTIONS(748), - [anon_sym_source] = ACTIONS(748), - [anon_sym_source_DASHenv] = ACTIONS(748), - [anon_sym_register] = ACTIONS(748), - [anon_sym_hide] = ACTIONS(748), - [anon_sym_hide_DASHenv] = ACTIONS(748), - [anon_sym_overlay] = ACTIONS(748), - [anon_sym_where] = ACTIONS(748), - [anon_sym_QMARK2] = ACTIONS(1669), - [anon_sym_not] = ACTIONS(748), - [anon_sym_DOT_DOT_LT] = ACTIONS(748), - [anon_sym_DOT_DOT] = ACTIONS(748), - [anon_sym_DOT_DOT_EQ] = ACTIONS(748), - [sym_val_nothing] = ACTIONS(748), - [anon_sym_true] = ACTIONS(748), - [anon_sym_false] = ACTIONS(748), - [aux_sym_val_number_token1] = ACTIONS(748), - [aux_sym_val_number_token2] = ACTIONS(748), - [aux_sym_val_number_token3] = ACTIONS(748), - [aux_sym_val_number_token4] = ACTIONS(748), - [aux_sym_val_number_token5] = ACTIONS(748), - [anon_sym_inf] = ACTIONS(748), - [anon_sym_DASHinf] = ACTIONS(748), - [anon_sym_NaN] = ACTIONS(748), - [anon_sym_0b] = ACTIONS(748), - [anon_sym_0o] = ACTIONS(748), - [anon_sym_0x] = ACTIONS(748), - [sym_val_date] = ACTIONS(748), - [anon_sym_DQUOTE] = ACTIONS(748), - [sym__str_single_quotes] = ACTIONS(748), - [sym__str_back_ticks] = ACTIONS(748), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(748), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(748), - [anon_sym_CARET] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(3), - }, - [521] = { - [sym_block] = STATE(532), - [sym_comment] = STATE(521), [anon_sym_export] = ACTIONS(1701), [anon_sym_alias] = ACTIONS(1701), [anon_sym_let] = ACTIONS(1701), @@ -88696,6 +88702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1701), [anon_sym_LPAREN] = ACTIONS(1701), [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), [anon_sym_DOLLAR] = ACTIONS(1701), [anon_sym_error] = ACTIONS(1701), [anon_sym_DASH] = ACTIONS(1701), @@ -88707,7 +88714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(1701), [anon_sym_if] = ACTIONS(1701), [anon_sym_match] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1695), + [anon_sym_LBRACE] = ACTIONS(1701), [anon_sym_RBRACE] = ACTIONS(1701), [anon_sym_try] = ACTIONS(1701), [anon_sym_return] = ACTIONS(1701), @@ -88745,7 +88752,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1701), [anon_sym_POUND] = ACTIONS(3), }, + [521] = { + [sym_block] = STATE(550), + [sym_comment] = STATE(521), + [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_def_DASHenv] = 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_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = 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(1687), + [anon_sym_RBRACE] = 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_where] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [sym_val_nothing] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1683), + [anon_sym_DASHinf] = ACTIONS(1683), + [anon_sym_NaN] = 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(3), + }, [522] = { + [sym_val_record] = STATE(568), [sym_comment] = STATE(522), [anon_sym_export] = ACTIONS(1705), [anon_sym_alias] = ACTIONS(1705), @@ -88786,7 +88864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1705), [anon_sym_hide_DASHenv] = ACTIONS(1705), [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), [anon_sym_where] = ACTIONS(1705), [anon_sym_not] = ACTIONS(1705), [anon_sym_DOT_DOT_LT] = ACTIONS(1705), @@ -88816,562 +88893,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), }, [523] = { - [sym_expr_parenthesized] = STATE(1438), - [sym_val_range] = STATE(1435), - [sym__value] = STATE(1435), - [sym_val_bool] = STATE(1430), - [sym_val_variable] = STATE(1430), - [sym__var] = STATE(1359), - [sym_val_number] = STATE(87), - [sym_val_duration] = STATE(1430), - [sym_val_filesize] = STATE(1430), - [sym_val_binary] = STATE(1430), - [sym_val_string] = STATE(1430), - [sym__str_double_quotes] = STATE(1428), - [sym_val_interpolated] = STATE(1430), - [sym__inter_single_quotes] = STATE(1426), - [sym__inter_double_quotes] = STATE(1423), - [sym_val_list] = STATE(1430), - [sym_val_record] = STATE(1430), - [sym_val_table] = STATE(1430), - [sym_val_closure] = STATE(1430), - [sym__cmd_arg] = STATE(1485), - [sym_redirection] = STATE(1433), - [sym__flag] = STATE(1431), - [sym_long_flag] = STATE(1414), - [sym_unquoted] = STATE(1427), + [sym_val_record] = STATE(569), [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), [anon_sym_SEMI] = ACTIONS(1709), + [sym_cmd_identifier] = ACTIONS(1709), [anon_sym_LF] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_def_DASHenv] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH_DASH] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1317), - [anon_sym_DOT_DOT_LT] = ACTIONS(1319), - [anon_sym_DOT_DOT] = ACTIONS(1319), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1319), - [sym_val_nothing] = ACTIONS(1321), - [anon_sym_true] = ACTIONS(1323), - [anon_sym_false] = ACTIONS(1323), - [aux_sym_val_number_token1] = ACTIONS(1325), - [aux_sym_val_number_token2] = ACTIONS(1325), - [aux_sym_val_number_token3] = ACTIONS(1325), - [aux_sym_val_number_token4] = ACTIONS(1325), - [aux_sym_val_number_token5] = ACTIONS(1325), - [anon_sym_inf] = ACTIONS(1325), - [anon_sym_DASHinf] = ACTIONS(1325), - [anon_sym_NaN] = ACTIONS(1325), - [anon_sym_0b] = ACTIONS(1327), - [anon_sym_0o] = ACTIONS(1327), - [anon_sym_0x] = ACTIONS(1327), - [sym_val_date] = ACTIONS(1321), - [anon_sym_DQUOTE] = ACTIONS(1329), - [sym__str_single_quotes] = ACTIONS(1331), - [sym__str_back_ticks] = ACTIONS(1331), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1333), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1335), - [anon_sym_err_GT] = ACTIONS(1337), - [anon_sym_out_GT] = ACTIONS(1337), - [anon_sym_e_GT] = ACTIONS(1337), - [anon_sym_o_GT] = ACTIONS(1337), - [anon_sym_err_PLUSout_GT] = ACTIONS(1337), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1337), - [anon_sym_o_PLUSe_GT] = ACTIONS(1337), - [anon_sym_e_PLUSo_GT] = ACTIONS(1337), - [sym_short_flag] = ACTIONS(1339), - [aux_sym_unquoted_token1] = ACTIONS(1341), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_where] = ACTIONS(1709), + [anon_sym_not] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [sym_val_nothing] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [aux_sym_val_number_token1] = ACTIONS(1709), + [aux_sym_val_number_token2] = ACTIONS(1709), + [aux_sym_val_number_token3] = ACTIONS(1709), + [aux_sym_val_number_token4] = ACTIONS(1709), + [aux_sym_val_number_token5] = ACTIONS(1709), + [anon_sym_inf] = ACTIONS(1709), + [anon_sym_DASHinf] = ACTIONS(1709), + [anon_sym_NaN] = ACTIONS(1709), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1709), [anon_sym_POUND] = ACTIONS(3), }, [524] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1458), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(887), - [anon_sym_alias] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_let_DASHenv] = ACTIONS(887), - [anon_sym_mut] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(887), - [sym_cmd_identifier] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_def] = ACTIONS(887), - [anon_sym_def_DASHenv] = ACTIONS(887), - [anon_sym_export_DASHenv] = ACTIONS(887), - [anon_sym_extern] = ACTIONS(887), - [anon_sym_module] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_RPAREN] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_error] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_try] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_source] = ACTIONS(887), - [anon_sym_source_DASHenv] = ACTIONS(887), - [anon_sym_register] = ACTIONS(887), - [anon_sym_hide] = ACTIONS(887), - [anon_sym_hide_DASHenv] = ACTIONS(887), - [anon_sym_overlay] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_not] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_CARET] = ACTIONS(887), - [anon_sym_POUND] = ACTIONS(3), - }, - [525] = { - [sym_block] = STATE(533), - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_alias] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_let_DASHenv] = ACTIONS(1701), - [anon_sym_mut] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_cmd_identifier] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_def_DASHenv] = ACTIONS(1701), - [anon_sym_export_DASHenv] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_RPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_error] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1695), - [anon_sym_RBRACE] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_source] = ACTIONS(1701), - [anon_sym_source_DASHenv] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_hide_DASHenv] = ACTIONS(1701), - [anon_sym_overlay] = ACTIONS(1701), - [anon_sym_where] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1701), - [anon_sym_DOT_DOT_LT] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), - [sym_val_nothing] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [aux_sym_val_number_token1] = ACTIONS(1701), - [aux_sym_val_number_token2] = ACTIONS(1701), - [aux_sym_val_number_token3] = ACTIONS(1701), - [aux_sym_val_number_token4] = ACTIONS(1701), - [aux_sym_val_number_token5] = ACTIONS(1701), - [anon_sym_inf] = ACTIONS(1701), - [anon_sym_DASHinf] = ACTIONS(1701), - [anon_sym_NaN] = ACTIONS(1701), - [anon_sym_0b] = ACTIONS(1701), - [anon_sym_0o] = ACTIONS(1701), - [anon_sym_0x] = ACTIONS(1701), - [sym_val_date] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym__str_single_quotes] = ACTIONS(1701), - [sym__str_back_ticks] = ACTIONS(1701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1713), - [anon_sym_alias] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_let_DASHenv] = ACTIONS(1713), - [anon_sym_mut] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), [anon_sym_SEMI] = ACTIONS(1713), - [sym_cmd_identifier] = ACTIONS(1713), [anon_sym_LF] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1713), - [anon_sym_def_DASHenv] = ACTIONS(1713), - [anon_sym_export_DASHenv] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_module] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_source] = ACTIONS(1713), - [anon_sym_source_DASHenv] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_hide_DASHenv] = ACTIONS(1713), - [anon_sym_overlay] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(1713), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [sym_val_nothing] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym_val_number_token1] = ACTIONS(1713), - [aux_sym_val_number_token2] = ACTIONS(1713), - [aux_sym_val_number_token3] = ACTIONS(1713), - [aux_sym_val_number_token4] = ACTIONS(1713), - [aux_sym_val_number_token5] = ACTIONS(1713), - [anon_sym_inf] = ACTIONS(1713), - [anon_sym_DASHinf] = ACTIONS(1713), - [anon_sym_NaN] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1713), - [anon_sym_0x] = ACTIONS(1713), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), + [525] = { + [sym_expr_parenthesized] = STATE(1440), + [sym_val_range] = STATE(1438), + [sym__value] = STATE(1438), + [sym_val_bool] = STATE(1411), + [sym_val_variable] = STATE(1411), + [sym__var] = STATE(1361), + [sym_val_number] = STATE(86), + [sym_val_duration] = STATE(1411), + [sym_val_filesize] = STATE(1411), + [sym_val_binary] = STATE(1411), + [sym_val_string] = STATE(1411), + [sym__str_double_quotes] = STATE(1408), + [sym_val_interpolated] = STATE(1411), + [sym__inter_single_quotes] = STATE(1404), + [sym__inter_double_quotes] = STATE(1403), + [sym_val_list] = STATE(1411), + [sym_val_record] = STATE(1411), + [sym_val_table] = STATE(1411), + [sym_val_closure] = STATE(1411), + [sym__cmd_arg] = STATE(1458), + [sym_redirection] = STATE(1436), + [sym__flag] = STATE(1434), + [sym_long_flag] = STATE(1425), + [sym_unquoted] = STATE(1430), + [sym_comment] = STATE(525), [anon_sym_SEMI] = ACTIONS(1717), - [sym_cmd_identifier] = ACTIONS(1717), [anon_sym_LF] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_def_DASHenv] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1319), [anon_sym_RPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_not] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [sym_val_nothing] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym_val_number_token1] = ACTIONS(1717), - [aux_sym_val_number_token2] = ACTIONS(1717), - [aux_sym_val_number_token3] = ACTIONS(1717), - [aux_sym_val_number_token4] = ACTIONS(1717), - [aux_sym_val_number_token5] = ACTIONS(1717), - [anon_sym_inf] = ACTIONS(1717), - [anon_sym_DASHinf] = ACTIONS(1717), - [anon_sym_NaN] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(3), - }, - [528] = { - [sym_val_record] = STATE(635), - [sym_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1663), - [anon_sym_export] = ACTIONS(1661), - [anon_sym_alias] = ACTIONS(1661), - [anon_sym_let] = ACTIONS(1661), - [anon_sym_let_DASHenv] = ACTIONS(1661), - [anon_sym_mut] = ACTIONS(1661), - [anon_sym_const] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [sym_cmd_identifier] = ACTIONS(1661), - [anon_sym_LF] = ACTIONS(1663), - [anon_sym_def] = ACTIONS(1661), - [anon_sym_def_DASHenv] = ACTIONS(1661), - [anon_sym_export_DASHenv] = ACTIONS(1661), - [anon_sym_extern] = ACTIONS(1661), - [anon_sym_module] = ACTIONS(1661), - [anon_sym_use] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1661), - [anon_sym_break] = ACTIONS(1661), - [anon_sym_continue] = ACTIONS(1661), - [anon_sym_for] = ACTIONS(1661), - [anon_sym_loop] = ACTIONS(1661), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(1661), - [anon_sym_match] = ACTIONS(1661), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1661), - [anon_sym_return] = ACTIONS(1661), - [anon_sym_source] = ACTIONS(1661), - [anon_sym_source_DASHenv] = ACTIONS(1661), - [anon_sym_register] = ACTIONS(1661), - [anon_sym_hide] = ACTIONS(1661), - [anon_sym_hide_DASHenv] = ACTIONS(1661), - [anon_sym_overlay] = ACTIONS(1661), - [anon_sym_where] = ACTIONS(1661), - [anon_sym_not] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [sym_val_nothing] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [aux_sym_val_number_token1] = ACTIONS(1661), - [aux_sym_val_number_token2] = ACTIONS(1661), - [aux_sym_val_number_token3] = ACTIONS(1661), - [aux_sym_val_number_token4] = ACTIONS(1661), - [aux_sym_val_number_token5] = ACTIONS(1661), - [anon_sym_inf] = ACTIONS(1661), - [anon_sym_DASHinf] = ACTIONS(1661), - [anon_sym_NaN] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1661), - [anon_sym_0o] = ACTIONS(1661), - [anon_sym_0x] = ACTIONS(1661), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_CARET] = ACTIONS(1661), - [anon_sym_POUND] = ACTIONS(3), - }, - [529] = { - [sym_val_record] = STATE(681), - [sym_comment] = STATE(529), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1683), - [anon_sym_break] = ACTIONS(1683), - [anon_sym_continue] = ACTIONS(1683), - [anon_sym_for] = 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_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_where] = ACTIONS(1683), - [anon_sym_not] = ACTIONS(1683), - [anon_sym_DOT_DOT_LT] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1683), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), - [sym_val_nothing] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1683), - [anon_sym_DASHinf] = ACTIONS(1683), - [anon_sym_NaN] = 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_PIPE] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_DASH_DASH] = ACTIONS(1323), + [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_DOT_DOT_LT] = ACTIONS(1327), + [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1327), + [sym_val_nothing] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1331), + [anon_sym_false] = ACTIONS(1331), + [aux_sym_val_number_token1] = ACTIONS(1333), + [aux_sym_val_number_token2] = ACTIONS(1333), + [aux_sym_val_number_token3] = ACTIONS(1333), + [aux_sym_val_number_token4] = ACTIONS(1333), + [aux_sym_val_number_token5] = ACTIONS(1333), + [anon_sym_inf] = ACTIONS(1333), + [anon_sym_DASHinf] = ACTIONS(1333), + [anon_sym_NaN] = ACTIONS(1333), + [anon_sym_0b] = ACTIONS(1335), + [anon_sym_0o] = ACTIONS(1335), + [anon_sym_0x] = ACTIONS(1335), + [sym_val_date] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1337), + [sym__str_single_quotes] = ACTIONS(1339), + [sym__str_back_ticks] = ACTIONS(1339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1341), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1343), + [anon_sym_err_GT] = ACTIONS(1345), + [anon_sym_out_GT] = ACTIONS(1345), + [anon_sym_e_GT] = ACTIONS(1345), + [anon_sym_o_GT] = ACTIONS(1345), + [anon_sym_err_PLUSout_GT] = ACTIONS(1345), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1345), + [anon_sym_o_PLUSe_GT] = ACTIONS(1345), + [anon_sym_e_PLUSo_GT] = ACTIONS(1345), + [sym_short_flag] = ACTIONS(1347), + [aux_sym_unquoted_token1] = ACTIONS(1349), [anon_sym_POUND] = ACTIONS(3), }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [sym_cmd_identifier] = ACTIONS(1721), - [anon_sym_LF] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_def_DASHenv] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_where] = ACTIONS(1721), - [anon_sym_not] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [sym_val_nothing] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym_val_number_token1] = ACTIONS(1721), - [aux_sym_val_number_token2] = ACTIONS(1721), - [aux_sym_val_number_token3] = ACTIONS(1721), - [aux_sym_val_number_token4] = ACTIONS(1721), - [aux_sym_val_number_token5] = ACTIONS(1721), - [anon_sym_inf] = ACTIONS(1721), - [anon_sym_DASHinf] = ACTIONS(1721), - [anon_sym_NaN] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1721), + [526] = { + [sym_comment] = STATE(526), + [ts_builtin_sym_end] = ACTIONS(915), + [anon_sym_export] = ACTIONS(913), + [anon_sym_alias] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_let_DASHenv] = ACTIONS(913), + [anon_sym_mut] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(913), + [sym_cmd_identifier] = ACTIONS(913), + [anon_sym_LF] = ACTIONS(915), + [anon_sym_def] = ACTIONS(913), + [anon_sym_def_DASHenv] = ACTIONS(913), + [anon_sym_export_DASHenv] = ACTIONS(913), + [anon_sym_extern] = ACTIONS(913), + [anon_sym_module] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_error] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_source] = ACTIONS(913), + [anon_sym_source_DASHenv] = ACTIONS(913), + [anon_sym_register] = ACTIONS(913), + [anon_sym_hide] = ACTIONS(913), + [anon_sym_hide_DASHenv] = ACTIONS(913), + [anon_sym_overlay] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_not] = ACTIONS(913), + [anon_sym_DOT_DOT_LT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_EQ] = ACTIONS(913), + [sym_val_nothing] = ACTIONS(913), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [aux_sym_val_number_token1] = ACTIONS(913), + [aux_sym_val_number_token2] = ACTIONS(913), + [aux_sym_val_number_token3] = ACTIONS(913), + [aux_sym_val_number_token4] = ACTIONS(913), + [aux_sym_val_number_token5] = ACTIONS(913), + [anon_sym_inf] = ACTIONS(913), + [anon_sym_DASHinf] = ACTIONS(913), + [anon_sym_NaN] = ACTIONS(913), + [anon_sym_0b] = ACTIONS(913), + [anon_sym_0o] = ACTIONS(913), + [anon_sym_0x] = ACTIONS(913), + [sym_val_date] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(913), + [sym__str_single_quotes] = ACTIONS(913), + [sym__str_back_ticks] = ACTIONS(913), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(913), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), [anon_sym_POUND] = ACTIONS(3), }, - [531] = { - [sym_comment] = STATE(531), + [527] = { + [sym_comment] = STATE(527), [anon_sym_export] = ACTIONS(1721), [anon_sym_alias] = ACTIONS(1721), [anon_sym_let] = ACTIONS(1721), @@ -89439,86 +89240,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - }, - [533] = { - [sym_comment] = STATE(533), + [528] = { + [sym_comment] = STATE(528), [anon_sym_export] = ACTIONS(1725), [anon_sym_alias] = ACTIONS(1725), [anon_sym_let] = ACTIONS(1725), [anon_sym_let_DASHenv] = ACTIONS(1725), [anon_sym_mut] = ACTIONS(1725), [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1727), [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), + [anon_sym_LF] = ACTIONS(1730), [anon_sym_def] = ACTIONS(1725), [anon_sym_def_DASHenv] = ACTIONS(1725), [anon_sym_export_DASHenv] = ACTIONS(1725), @@ -89527,7 +89259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1725), [anon_sym_LBRACK] = ACTIONS(1725), [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1725), + [anon_sym_RPAREN] = ACTIONS(1733), [anon_sym_DOLLAR] = ACTIONS(1725), [anon_sym_error] = ACTIONS(1725), [anon_sym_DASH] = ACTIONS(1725), @@ -89540,7 +89272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1725), [anon_sym_match] = ACTIONS(1725), [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), + [anon_sym_RBRACE] = ACTIONS(1733), [anon_sym_try] = ACTIONS(1725), [anon_sym_return] = ACTIONS(1725), [anon_sym_source] = ACTIONS(1725), @@ -89577,491 +89309,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(3), - }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_RPAREN] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_POUND] = ACTIONS(3), - }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [sym_cmd_identifier] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_def_DASHenv] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(1733), - [anon_sym_not] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [sym_val_nothing] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [aux_sym_val_number_token1] = ACTIONS(1733), - [aux_sym_val_number_token2] = ACTIONS(1733), - [aux_sym_val_number_token3] = ACTIONS(1733), - [aux_sym_val_number_token4] = ACTIONS(1733), - [aux_sym_val_number_token5] = ACTIONS(1733), - [anon_sym_inf] = ACTIONS(1733), - [anon_sym_DASHinf] = ACTIONS(1733), - [anon_sym_NaN] = ACTIONS(1733), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), - }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_alias] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_let_DASHenv] = ACTIONS(1737), - [anon_sym_mut] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [sym_cmd_identifier] = ACTIONS(1737), - [anon_sym_LF] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1737), - [anon_sym_def_DASHenv] = ACTIONS(1737), - [anon_sym_export_DASHenv] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_RPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_RBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_source] = ACTIONS(1737), - [anon_sym_source_DASHenv] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_hide_DASHenv] = ACTIONS(1737), - [anon_sym_overlay] = ACTIONS(1737), - [anon_sym_where] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), - [sym_val_nothing] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym_val_number_token1] = ACTIONS(1737), - [aux_sym_val_number_token2] = ACTIONS(1737), - [aux_sym_val_number_token3] = ACTIONS(1737), - [aux_sym_val_number_token4] = ACTIONS(1737), - [aux_sym_val_number_token5] = ACTIONS(1737), - [anon_sym_inf] = ACTIONS(1737), - [anon_sym_DASHinf] = ACTIONS(1737), - [anon_sym_NaN] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1737), - [anon_sym_0o] = ACTIONS(1737), - [anon_sym_0x] = ACTIONS(1737), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), - [anon_sym_POUND] = ACTIONS(3), - }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_alias] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_let_DASHenv] = ACTIONS(1741), - [anon_sym_mut] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_cmd_identifier] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1741), - [anon_sym_def_DASHenv] = ACTIONS(1741), - [anon_sym_export_DASHenv] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_RPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_RBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_source] = ACTIONS(1741), - [anon_sym_source_DASHenv] = ACTIONS(1741), - [anon_sym_register] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_hide_DASHenv] = ACTIONS(1741), - [anon_sym_overlay] = ACTIONS(1741), - [anon_sym_where] = ACTIONS(1741), - [anon_sym_not] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [sym_val_nothing] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym_val_number_token1] = ACTIONS(1741), - [aux_sym_val_number_token2] = ACTIONS(1741), - [aux_sym_val_number_token3] = ACTIONS(1741), - [aux_sym_val_number_token4] = ACTIONS(1741), - [aux_sym_val_number_token5] = ACTIONS(1741), - [anon_sym_inf] = ACTIONS(1741), - [anon_sym_DASHinf] = ACTIONS(1741), - [anon_sym_NaN] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1741), + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [sym_cmd_identifier] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_def_DASHenv] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_RPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_RBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_where] = ACTIONS(1735), + [anon_sym_not] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [sym_val_nothing] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1735), + [anon_sym_false] = ACTIONS(1735), + [aux_sym_val_number_token1] = ACTIONS(1735), + [aux_sym_val_number_token2] = ACTIONS(1735), + [aux_sym_val_number_token3] = ACTIONS(1735), + [aux_sym_val_number_token4] = ACTIONS(1735), + [aux_sym_val_number_token5] = ACTIONS(1735), + [anon_sym_inf] = ACTIONS(1735), + [anon_sym_DASHinf] = ACTIONS(1735), + [anon_sym_NaN] = ACTIONS(1735), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), [anon_sym_POUND] = ACTIONS(3), }, - [539] = { - [sym_comment] = STATE(539), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [sym_cmd_identifier] = ACTIONS(1745), - [anon_sym_LF] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_def_DASHenv] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_where] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [sym_val_nothing] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym_val_number_token1] = ACTIONS(1745), - [aux_sym_val_number_token2] = ACTIONS(1745), - [aux_sym_val_number_token3] = ACTIONS(1745), - [aux_sym_val_number_token4] = ACTIONS(1745), - [aux_sym_val_number_token5] = ACTIONS(1745), - [anon_sym_inf] = ACTIONS(1745), - [anon_sym_DASHinf] = ACTIONS(1745), - [anon_sym_NaN] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1745), + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [sym_cmd_identifier] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_def_DASHenv] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_RPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_RBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_where] = ACTIONS(1739), + [anon_sym_not] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [sym_val_nothing] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(1739), + [anon_sym_false] = ACTIONS(1739), + [aux_sym_val_number_token1] = ACTIONS(1739), + [aux_sym_val_number_token2] = ACTIONS(1739), + [aux_sym_val_number_token3] = ACTIONS(1739), + [aux_sym_val_number_token4] = ACTIONS(1739), + [aux_sym_val_number_token5] = ACTIONS(1739), + [anon_sym_inf] = ACTIONS(1739), + [anon_sym_DASHinf] = ACTIONS(1739), + [anon_sym_NaN] = ACTIONS(1739), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(3), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), + [531] = { + [sym__terminator] = STATE(541), + [sym_comment] = STATE(531), + [aux_sym__block_body_repeat1] = STATE(540), + [anon_sym_export] = ACTIONS(1743), + [anon_sym_alias] = ACTIONS(1743), + [anon_sym_let] = ACTIONS(1743), + [anon_sym_let_DASHenv] = ACTIONS(1743), + [anon_sym_mut] = ACTIONS(1743), + [anon_sym_const] = ACTIONS(1743), [anon_sym_SEMI] = ACTIONS(1745), - [sym_cmd_identifier] = ACTIONS(1745), + [sym_cmd_identifier] = ACTIONS(1743), [anon_sym_LF] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_def_DASHenv] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_RPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_RBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_where] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [sym_val_nothing] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym_val_number_token1] = ACTIONS(1745), - [aux_sym_val_number_token2] = ACTIONS(1745), - [aux_sym_val_number_token3] = ACTIONS(1745), - [aux_sym_val_number_token4] = ACTIONS(1745), - [aux_sym_val_number_token5] = ACTIONS(1745), - [anon_sym_inf] = ACTIONS(1745), - [anon_sym_DASHinf] = ACTIONS(1745), - [anon_sym_NaN] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1745), + [anon_sym_def] = ACTIONS(1743), + [anon_sym_def_DASHenv] = ACTIONS(1743), + [anon_sym_export_DASHenv] = ACTIONS(1743), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_module] = ACTIONS(1743), + [anon_sym_use] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1743), + [anon_sym_LPAREN] = ACTIONS(1743), + [anon_sym_DOLLAR] = ACTIONS(1743), + [anon_sym_error] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_loop] = ACTIONS(1743), + [anon_sym_while] = ACTIONS(1743), + [anon_sym_do] = ACTIONS(1743), + [anon_sym_if] = ACTIONS(1743), + [anon_sym_match] = ACTIONS(1743), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_try] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1743), + [anon_sym_source] = ACTIONS(1743), + [anon_sym_source_DASHenv] = ACTIONS(1743), + [anon_sym_register] = ACTIONS(1743), + [anon_sym_hide] = ACTIONS(1743), + [anon_sym_hide_DASHenv] = ACTIONS(1743), + [anon_sym_overlay] = ACTIONS(1743), + [anon_sym_where] = ACTIONS(1743), + [anon_sym_not] = ACTIONS(1743), + [anon_sym_DOT_DOT_LT] = ACTIONS(1743), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1743), + [sym_val_nothing] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(1743), + [anon_sym_false] = ACTIONS(1743), + [aux_sym_val_number_token1] = ACTIONS(1743), + [aux_sym_val_number_token2] = ACTIONS(1743), + [aux_sym_val_number_token3] = ACTIONS(1743), + [aux_sym_val_number_token4] = ACTIONS(1743), + [aux_sym_val_number_token5] = ACTIONS(1743), + [anon_sym_inf] = ACTIONS(1743), + [anon_sym_DASHinf] = ACTIONS(1743), + [anon_sym_NaN] = ACTIONS(1743), + [anon_sym_0b] = ACTIONS(1743), + [anon_sym_0o] = ACTIONS(1743), + [anon_sym_0x] = ACTIONS(1743), + [sym_val_date] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [sym__str_single_quotes] = ACTIONS(1743), + [sym__str_back_ticks] = ACTIONS(1743), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1743), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1743), + [anon_sym_CARET] = ACTIONS(1743), [anon_sym_POUND] = ACTIONS(3), }, - [541] = { - [sym_comment] = STATE(541), + [532] = { + [sym_comment] = STATE(532), [anon_sym_export] = ACTIONS(1749), [anon_sym_alias] = ACTIONS(1749), [anon_sym_let] = ACTIONS(1749), @@ -90129,8 +89585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(3), }, - [542] = { - [sym_comment] = STATE(542), + [533] = { + [sym_comment] = STATE(533), [anon_sym_export] = ACTIONS(1759), [anon_sym_alias] = ACTIONS(1759), [anon_sym_let] = ACTIONS(1759), @@ -90198,77 +89654,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(3), }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1763), - [anon_sym_alias] = ACTIONS(1763), - [anon_sym_let] = ACTIONS(1763), - [anon_sym_let_DASHenv] = ACTIONS(1763), - [anon_sym_mut] = ACTIONS(1763), - [anon_sym_const] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), - [sym_cmd_identifier] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1763), - [anon_sym_def_DASHenv] = ACTIONS(1763), - [anon_sym_export_DASHenv] = ACTIONS(1763), - [anon_sym_extern] = ACTIONS(1763), - [anon_sym_module] = ACTIONS(1763), - [anon_sym_use] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_DOLLAR] = ACTIONS(1763), - [anon_sym_error] = ACTIONS(1763), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_break] = ACTIONS(1763), - [anon_sym_continue] = ACTIONS(1763), - [anon_sym_for] = ACTIONS(1763), - [anon_sym_loop] = ACTIONS(1763), - [anon_sym_while] = ACTIONS(1763), - [anon_sym_do] = ACTIONS(1763), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_match] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_try] = ACTIONS(1763), - [anon_sym_return] = ACTIONS(1763), - [anon_sym_source] = ACTIONS(1763), - [anon_sym_source_DASHenv] = ACTIONS(1763), - [anon_sym_register] = ACTIONS(1763), - [anon_sym_hide] = ACTIONS(1763), - [anon_sym_hide_DASHenv] = ACTIONS(1763), - [anon_sym_overlay] = ACTIONS(1763), - [anon_sym_where] = ACTIONS(1763), - [anon_sym_not] = ACTIONS(1763), - [anon_sym_DOT_DOT_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), - [sym_val_nothing] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1763), - [anon_sym_false] = ACTIONS(1763), - [aux_sym_val_number_token1] = ACTIONS(1763), - [aux_sym_val_number_token2] = ACTIONS(1763), - [aux_sym_val_number_token3] = ACTIONS(1763), - [aux_sym_val_number_token4] = ACTIONS(1763), - [aux_sym_val_number_token5] = ACTIONS(1763), - [anon_sym_inf] = ACTIONS(1763), - [anon_sym_DASHinf] = ACTIONS(1763), - [anon_sym_NaN] = ACTIONS(1763), - [anon_sym_0b] = ACTIONS(1763), - [anon_sym_0o] = ACTIONS(1763), - [anon_sym_0x] = ACTIONS(1763), - [sym_val_date] = ACTIONS(1763), - [anon_sym_DQUOTE] = ACTIONS(1763), - [sym__str_single_quotes] = ACTIONS(1763), - [sym__str_back_ticks] = ACTIONS(1763), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), - [anon_sym_CARET] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(3), - }, - [544] = { - [sym_comment] = STATE(544), + [534] = { + [sym_comment] = STATE(534), [anon_sym_export] = ACTIONS(1759), [anon_sym_alias] = ACTIONS(1759), [anon_sym_let] = ACTIONS(1759), @@ -90336,422 +89723,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(3), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_alias] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_let_DASHenv] = ACTIONS(1767), - [anon_sym_mut] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [sym_cmd_identifier] = ACTIONS(1767), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1767), - [anon_sym_def_DASHenv] = ACTIONS(1767), - [anon_sym_export_DASHenv] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_use] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_loop] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_source] = ACTIONS(1767), - [anon_sym_source_DASHenv] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_hide] = ACTIONS(1767), - [anon_sym_hide_DASHenv] = ACTIONS(1767), - [anon_sym_overlay] = ACTIONS(1767), - [anon_sym_where] = ACTIONS(1767), - [anon_sym_not] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [sym_val_nothing] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym_val_number_token1] = ACTIONS(1767), - [aux_sym_val_number_token2] = ACTIONS(1767), - [aux_sym_val_number_token3] = ACTIONS(1767), - [aux_sym_val_number_token4] = ACTIONS(1767), - [aux_sym_val_number_token5] = ACTIONS(1767), - [anon_sym_inf] = ACTIONS(1767), - [anon_sym_DASHinf] = ACTIONS(1767), - [anon_sym_NaN] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1767), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(1767), + [535] = { + [sym_comment] = STATE(535), + [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_def_DASHenv] = 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_DASH] = ACTIONS(1679), + [anon_sym_break] = ACTIONS(1679), + [anon_sym_continue] = ACTIONS(1679), + [anon_sym_for] = 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_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_not] = ACTIONS(1679), + [anon_sym_DOT_DOT_LT] = ACTIONS(1679), + [anon_sym_DOT_DOT] = ACTIONS(1679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), + [sym_val_nothing] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1679), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1679), + [anon_sym_DASHinf] = ACTIONS(1679), + [anon_sym_NaN] = 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(3), }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [sym_cmd_identifier] = ACTIONS(1771), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_def_DASHenv] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_RPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_where] = ACTIONS(1771), - [anon_sym_not] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [sym_val_nothing] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [aux_sym_val_number_token1] = ACTIONS(1771), - [aux_sym_val_number_token2] = ACTIONS(1771), - [aux_sym_val_number_token3] = ACTIONS(1771), - [aux_sym_val_number_token4] = ACTIONS(1771), - [aux_sym_val_number_token5] = ACTIONS(1771), - [anon_sym_inf] = ACTIONS(1771), - [anon_sym_DASHinf] = ACTIONS(1771), - [anon_sym_NaN] = ACTIONS(1771), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1771), + [536] = { + [sym_comment] = STATE(536), + [ts_builtin_sym_end] = ACTIONS(1695), + [anon_sym_export] = ACTIONS(1693), + [anon_sym_alias] = ACTIONS(1693), + [anon_sym_let] = ACTIONS(1693), + [anon_sym_let_DASHenv] = ACTIONS(1693), + [anon_sym_mut] = ACTIONS(1693), + [anon_sym_const] = ACTIONS(1693), + [anon_sym_SEMI] = ACTIONS(1693), + [sym_cmd_identifier] = ACTIONS(1693), + [anon_sym_LF] = ACTIONS(1695), + [anon_sym_def] = ACTIONS(1693), + [anon_sym_def_DASHenv] = ACTIONS(1693), + [anon_sym_export_DASHenv] = ACTIONS(1693), + [anon_sym_extern] = ACTIONS(1693), + [anon_sym_module] = ACTIONS(1693), + [anon_sym_use] = ACTIONS(1693), + [anon_sym_LBRACK] = ACTIONS(1693), + [anon_sym_LPAREN] = ACTIONS(1693), + [anon_sym_DOLLAR] = ACTIONS(1693), + [anon_sym_error] = ACTIONS(1693), + [anon_sym_DASH] = ACTIONS(1693), + [anon_sym_break] = ACTIONS(1693), + [anon_sym_continue] = ACTIONS(1693), + [anon_sym_for] = ACTIONS(1693), + [anon_sym_loop] = ACTIONS(1693), + [anon_sym_while] = ACTIONS(1693), + [anon_sym_do] = ACTIONS(1693), + [anon_sym_if] = ACTIONS(1693), + [anon_sym_match] = ACTIONS(1693), + [anon_sym_LBRACE] = ACTIONS(1693), + [anon_sym_try] = ACTIONS(1693), + [anon_sym_return] = ACTIONS(1693), + [anon_sym_source] = ACTIONS(1693), + [anon_sym_source_DASHenv] = ACTIONS(1693), + [anon_sym_register] = ACTIONS(1693), + [anon_sym_hide] = ACTIONS(1693), + [anon_sym_hide_DASHenv] = ACTIONS(1693), + [anon_sym_overlay] = ACTIONS(1693), + [anon_sym_STAR] = ACTIONS(1693), + [anon_sym_where] = ACTIONS(1693), + [anon_sym_not] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT] = ACTIONS(1693), + [anon_sym_DOT_DOT] = ACTIONS(1693), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), + [sym_val_nothing] = ACTIONS(1693), + [anon_sym_true] = ACTIONS(1693), + [anon_sym_false] = ACTIONS(1693), + [aux_sym_val_number_token1] = ACTIONS(1693), + [aux_sym_val_number_token2] = ACTIONS(1693), + [aux_sym_val_number_token3] = ACTIONS(1693), + [aux_sym_val_number_token4] = ACTIONS(1693), + [aux_sym_val_number_token5] = ACTIONS(1693), + [anon_sym_inf] = ACTIONS(1693), + [anon_sym_DASHinf] = ACTIONS(1693), + [anon_sym_NaN] = ACTIONS(1693), + [anon_sym_0b] = ACTIONS(1693), + [anon_sym_0o] = ACTIONS(1693), + [anon_sym_0x] = ACTIONS(1693), + [sym_val_date] = ACTIONS(1693), + [anon_sym_DQUOTE] = ACTIONS(1693), + [sym__str_single_quotes] = ACTIONS(1693), + [sym__str_back_ticks] = ACTIONS(1693), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), + [anon_sym_CARET] = ACTIONS(1693), [anon_sym_POUND] = ACTIONS(3), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(931), - [anon_sym_alias] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_let_DASHenv] = ACTIONS(931), - [anon_sym_mut] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(931), - [sym_cmd_identifier] = ACTIONS(931), - [anon_sym_LF] = ACTIONS(933), - [anon_sym_def] = ACTIONS(931), - [anon_sym_def_DASHenv] = ACTIONS(931), - [anon_sym_export_DASHenv] = ACTIONS(931), - [anon_sym_extern] = ACTIONS(931), - [anon_sym_module] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(931), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(931), - [anon_sym_error] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [anon_sym_do] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_LBRACE] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_try] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_source] = ACTIONS(931), - [anon_sym_source_DASHenv] = ACTIONS(931), - [anon_sym_register] = ACTIONS(931), - [anon_sym_hide] = ACTIONS(931), - [anon_sym_hide_DASHenv] = ACTIONS(931), - [anon_sym_overlay] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_not] = ACTIONS(931), - [anon_sym_DOT_DOT_LT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_EQ] = ACTIONS(931), - [sym_val_nothing] = ACTIONS(931), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [aux_sym_val_number_token1] = ACTIONS(931), - [aux_sym_val_number_token2] = ACTIONS(931), - [aux_sym_val_number_token3] = ACTIONS(931), - [aux_sym_val_number_token4] = ACTIONS(931), - [aux_sym_val_number_token5] = ACTIONS(931), - [anon_sym_inf] = ACTIONS(931), - [anon_sym_DASHinf] = ACTIONS(931), - [anon_sym_NaN] = ACTIONS(931), - [anon_sym_0b] = ACTIONS(931), - [anon_sym_0o] = ACTIONS(931), - [anon_sym_0x] = ACTIONS(931), - [sym_val_date] = ACTIONS(931), - [anon_sym_DQUOTE] = ACTIONS(931), - [sym__str_single_quotes] = ACTIONS(931), - [sym__str_back_ticks] = ACTIONS(931), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(931), + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_alias] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_let_DASHenv] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), + [sym_cmd_identifier] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(1768), + [anon_sym_def] = ACTIONS(1763), + [anon_sym_def_DASHenv] = ACTIONS(1763), + [anon_sym_export_DASHenv] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_source] = ACTIONS(1763), + [anon_sym_source_DASHenv] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_hide] = ACTIONS(1763), + [anon_sym_hide_DASHenv] = ACTIONS(1763), + [anon_sym_overlay] = ACTIONS(1763), + [anon_sym_where] = ACTIONS(1763), + [anon_sym_not] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [sym_val_nothing] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym_val_number_token1] = ACTIONS(1763), + [aux_sym_val_number_token2] = ACTIONS(1763), + [aux_sym_val_number_token3] = ACTIONS(1763), + [aux_sym_val_number_token4] = ACTIONS(1763), + [aux_sym_val_number_token5] = ACTIONS(1763), + [anon_sym_inf] = ACTIONS(1763), + [anon_sym_DASHinf] = ACTIONS(1763), + [anon_sym_NaN] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), }, - [548] = { - [sym_comment] = STATE(548), - [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_def_DASHenv] = 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_PIPE] = ACTIONS(1671), - [anon_sym_DOLLAR] = ACTIONS(1671), - [anon_sym_error] = ACTIONS(1671), - [anon_sym_DASH] = ACTIONS(1671), - [anon_sym_break] = ACTIONS(1671), - [anon_sym_continue] = ACTIONS(1671), - [anon_sym_for] = 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_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_where] = ACTIONS(1671), - [anon_sym_not] = ACTIONS(1671), - [anon_sym_DOT_DOT_LT] = ACTIONS(1671), - [anon_sym_DOT_DOT] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1671), - [sym_val_nothing] = ACTIONS(1671), - [anon_sym_true] = ACTIONS(1671), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1671), - [anon_sym_DASHinf] = ACTIONS(1671), - [anon_sym_NaN] = 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), + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_alias] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_let_DASHenv] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_cmd_identifier] = ACTIONS(1773), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_def] = ACTIONS(1773), + [anon_sym_def_DASHenv] = ACTIONS(1773), + [anon_sym_export_DASHenv] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_use] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_loop] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_source] = ACTIONS(1773), + [anon_sym_source_DASHenv] = ACTIONS(1773), + [anon_sym_register] = ACTIONS(1773), + [anon_sym_hide] = ACTIONS(1773), + [anon_sym_hide_DASHenv] = ACTIONS(1773), + [anon_sym_overlay] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_not] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [sym_val_nothing] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym_val_number_token1] = ACTIONS(1773), + [aux_sym_val_number_token2] = ACTIONS(1773), + [aux_sym_val_number_token3] = ACTIONS(1773), + [aux_sym_val_number_token4] = ACTIONS(1773), + [aux_sym_val_number_token5] = ACTIONS(1773), + [anon_sym_inf] = ACTIONS(1773), + [anon_sym_DASHinf] = ACTIONS(1773), + [anon_sym_NaN] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1773), + [anon_sym_0o] = ACTIONS(1773), + [anon_sym_0x] = ACTIONS(1773), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(1773), [anon_sym_POUND] = ACTIONS(3), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_alias] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_let_DASHenv] = ACTIONS(1775), - [anon_sym_mut] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [sym_cmd_identifier] = ACTIONS(1775), - [anon_sym_LF] = ACTIONS(1777), - [anon_sym_def] = ACTIONS(1775), - [anon_sym_def_DASHenv] = ACTIONS(1775), - [anon_sym_export_DASHenv] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym_module] = ACTIONS(1775), - [anon_sym_use] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_RPAREN] = ACTIONS(1775), - [anon_sym_DOLLAR] = ACTIONS(1775), - [anon_sym_error] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_loop] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_match] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_source] = ACTIONS(1775), - [anon_sym_source_DASHenv] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_hide] = ACTIONS(1775), - [anon_sym_hide_DASHenv] = ACTIONS(1775), - [anon_sym_overlay] = ACTIONS(1775), - [anon_sym_where] = ACTIONS(1775), - [anon_sym_not] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [sym_val_nothing] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), - [aux_sym_val_number_token1] = ACTIONS(1775), - [aux_sym_val_number_token2] = ACTIONS(1775), - [aux_sym_val_number_token3] = ACTIONS(1775), - [aux_sym_val_number_token4] = ACTIONS(1775), - [aux_sym_val_number_token5] = ACTIONS(1775), - [anon_sym_inf] = ACTIONS(1775), - [anon_sym_DASHinf] = ACTIONS(1775), - [anon_sym_NaN] = ACTIONS(1775), - [anon_sym_0b] = ACTIONS(1775), - [anon_sym_0o] = ACTIONS(1775), - [anon_sym_0x] = ACTIONS(1775), - [sym_val_date] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), + [539] = { + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_alias] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_let_DASHenv] = ACTIONS(1777), + [anon_sym_mut] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1777), + [sym_cmd_identifier] = ACTIONS(1777), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1777), + [anon_sym_def_DASHenv] = ACTIONS(1777), + [anon_sym_export_DASHenv] = ACTIONS(1777), + [anon_sym_extern] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_use] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_DOLLAR] = ACTIONS(1777), + [anon_sym_error] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_loop] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_source] = ACTIONS(1777), + [anon_sym_source_DASHenv] = ACTIONS(1777), + [anon_sym_register] = ACTIONS(1777), + [anon_sym_hide] = ACTIONS(1777), + [anon_sym_hide_DASHenv] = ACTIONS(1777), + [anon_sym_overlay] = ACTIONS(1777), + [anon_sym_where] = ACTIONS(1777), + [anon_sym_not] = ACTIONS(1777), + [anon_sym_DOT_DOT_LT] = ACTIONS(1777), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), + [sym_val_nothing] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1777), + [anon_sym_false] = ACTIONS(1777), + [aux_sym_val_number_token1] = ACTIONS(1777), + [aux_sym_val_number_token2] = ACTIONS(1777), + [aux_sym_val_number_token3] = ACTIONS(1777), + [aux_sym_val_number_token4] = ACTIONS(1777), + [aux_sym_val_number_token5] = ACTIONS(1777), + [anon_sym_inf] = ACTIONS(1777), + [anon_sym_DASHinf] = ACTIONS(1777), + [anon_sym_NaN] = ACTIONS(1777), + [anon_sym_0b] = ACTIONS(1777), + [anon_sym_0o] = ACTIONS(1777), + [anon_sym_0x] = ACTIONS(1777), + [sym_val_date] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1777), + [sym__str_single_quotes] = ACTIONS(1777), + [sym__str_back_ticks] = ACTIONS(1777), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1777), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(1777), [anon_sym_POUND] = ACTIONS(3), - }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [sym_cmd_identifier] = ACTIONS(1779), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_def_DASHenv] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_RPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_where] = ACTIONS(1779), - [anon_sym_not] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [sym_val_nothing] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym_val_number_token1] = ACTIONS(1779), - [aux_sym_val_number_token2] = ACTIONS(1779), - [aux_sym_val_number_token3] = ACTIONS(1779), - [aux_sym_val_number_token4] = ACTIONS(1779), - [aux_sym_val_number_token5] = ACTIONS(1779), - [anon_sym_inf] = ACTIONS(1779), - [anon_sym_DASHinf] = ACTIONS(1779), - [anon_sym_NaN] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(1779), + }, + [540] = { + [sym__terminator] = STATE(541), + [sym_comment] = STATE(540), + [aux_sym__block_body_repeat1] = STATE(481), + [anon_sym_export] = ACTIONS(1781), + [anon_sym_alias] = ACTIONS(1781), + [anon_sym_let] = ACTIONS(1781), + [anon_sym_let_DASHenv] = ACTIONS(1781), + [anon_sym_mut] = ACTIONS(1781), + [anon_sym_const] = ACTIONS(1781), + [anon_sym_SEMI] = ACTIONS(1745), + [sym_cmd_identifier] = ACTIONS(1781), + [anon_sym_LF] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1781), + [anon_sym_def_DASHenv] = ACTIONS(1781), + [anon_sym_export_DASHenv] = ACTIONS(1781), + [anon_sym_extern] = ACTIONS(1781), + [anon_sym_module] = ACTIONS(1781), + [anon_sym_use] = ACTIONS(1781), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_DOLLAR] = ACTIONS(1781), + [anon_sym_error] = ACTIONS(1781), + [anon_sym_DASH] = ACTIONS(1781), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1781), + [anon_sym_loop] = ACTIONS(1781), + [anon_sym_while] = ACTIONS(1781), + [anon_sym_do] = ACTIONS(1781), + [anon_sym_if] = ACTIONS(1781), + [anon_sym_match] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1781), + [anon_sym_return] = ACTIONS(1781), + [anon_sym_source] = ACTIONS(1781), + [anon_sym_source_DASHenv] = ACTIONS(1781), + [anon_sym_register] = ACTIONS(1781), + [anon_sym_hide] = ACTIONS(1781), + [anon_sym_hide_DASHenv] = ACTIONS(1781), + [anon_sym_overlay] = ACTIONS(1781), + [anon_sym_where] = ACTIONS(1781), + [anon_sym_not] = ACTIONS(1781), + [anon_sym_DOT_DOT_LT] = ACTIONS(1781), + [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1781), + [sym_val_nothing] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1781), + [anon_sym_false] = ACTIONS(1781), + [aux_sym_val_number_token1] = ACTIONS(1781), + [aux_sym_val_number_token2] = ACTIONS(1781), + [aux_sym_val_number_token3] = ACTIONS(1781), + [aux_sym_val_number_token4] = ACTIONS(1781), + [aux_sym_val_number_token5] = ACTIONS(1781), + [anon_sym_inf] = ACTIONS(1781), + [anon_sym_DASHinf] = ACTIONS(1781), + [anon_sym_NaN] = ACTIONS(1781), + [anon_sym_0b] = ACTIONS(1781), + [anon_sym_0o] = ACTIONS(1781), + [anon_sym_0x] = ACTIONS(1781), + [sym_val_date] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1781), + [sym__str_single_quotes] = ACTIONS(1781), + [sym__str_back_ticks] = ACTIONS(1781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1781), + [anon_sym_CARET] = ACTIONS(1781), [anon_sym_POUND] = ACTIONS(3), }, - [551] = { - [sym_comment] = STATE(551), + [541] = { + [sym_comment] = STATE(541), [anon_sym_export] = ACTIONS(1783), [anon_sym_alias] = ACTIONS(1783), [anon_sym_let] = ACTIONS(1783), @@ -90819,17 +90206,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1783), [anon_sym_POUND] = ACTIONS(3), }, - [552] = { - [sym_comment] = STATE(552), + [542] = { + [sym_comment] = STATE(542), [anon_sym_export] = ACTIONS(1787), [anon_sym_alias] = ACTIONS(1787), [anon_sym_let] = ACTIONS(1787), [anon_sym_let_DASHenv] = ACTIONS(1787), [anon_sym_mut] = ACTIONS(1787), [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), + [anon_sym_SEMI] = ACTIONS(1787), [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1792), + [anon_sym_LF] = ACTIONS(1789), [anon_sym_def] = ACTIONS(1787), [anon_sym_def_DASHenv] = ACTIONS(1787), [anon_sym_export_DASHenv] = ACTIONS(1787), @@ -90838,7 +90225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1787), [anon_sym_LBRACK] = ACTIONS(1787), [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_RPAREN] = ACTIONS(1787), [anon_sym_DOLLAR] = ACTIONS(1787), [anon_sym_error] = ACTIONS(1787), [anon_sym_DASH] = ACTIONS(1787), @@ -90851,7 +90238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1787), [anon_sym_match] = ACTIONS(1787), [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1787), [anon_sym_try] = ACTIONS(1787), [anon_sym_return] = ACTIONS(1787), [anon_sym_source] = ACTIONS(1787), @@ -90888,215 +90275,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1787), [anon_sym_POUND] = ACTIONS(3), }, - [553] = { - [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(1797), - [anon_sym_alias] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_let_DASHenv] = ACTIONS(1797), - [anon_sym_mut] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1797), - [sym_cmd_identifier] = ACTIONS(1797), - [anon_sym_LF] = ACTIONS(1799), - [anon_sym_def] = ACTIONS(1797), - [anon_sym_def_DASHenv] = ACTIONS(1797), - [anon_sym_export_DASHenv] = ACTIONS(1797), - [anon_sym_extern] = ACTIONS(1797), - [anon_sym_module] = ACTIONS(1797), - [anon_sym_use] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_RPAREN] = ACTIONS(1797), - [anon_sym_DOLLAR] = ACTIONS(1797), - [anon_sym_error] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_loop] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_do] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_source] = ACTIONS(1797), - [anon_sym_source_DASHenv] = ACTIONS(1797), - [anon_sym_register] = ACTIONS(1797), - [anon_sym_hide] = ACTIONS(1797), - [anon_sym_hide_DASHenv] = ACTIONS(1797), - [anon_sym_overlay] = ACTIONS(1797), - [anon_sym_where] = ACTIONS(1797), - [anon_sym_not] = ACTIONS(1797), - [anon_sym_DOT_DOT_LT] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1797), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1797), - [sym_val_nothing] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [aux_sym_val_number_token1] = ACTIONS(1797), - [aux_sym_val_number_token2] = ACTIONS(1797), - [aux_sym_val_number_token3] = ACTIONS(1797), - [aux_sym_val_number_token4] = ACTIONS(1797), - [aux_sym_val_number_token5] = ACTIONS(1797), - [anon_sym_inf] = ACTIONS(1797), - [anon_sym_DASHinf] = ACTIONS(1797), - [anon_sym_NaN] = ACTIONS(1797), - [anon_sym_0b] = ACTIONS(1797), - [anon_sym_0o] = ACTIONS(1797), - [anon_sym_0x] = ACTIONS(1797), - [sym_val_date] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1797), - [sym__str_single_quotes] = ACTIONS(1797), - [sym__str_back_ticks] = ACTIONS(1797), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1797), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_alias] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_let_DASHenv] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [sym_cmd_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1791), + [anon_sym_def_DASHenv] = ACTIONS(1791), + [anon_sym_export_DASHenv] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_RPAREN] = ACTIONS(1791), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_error] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_source] = ACTIONS(1791), + [anon_sym_source_DASHenv] = ACTIONS(1791), + [anon_sym_register] = ACTIONS(1791), + [anon_sym_hide] = ACTIONS(1791), + [anon_sym_hide_DASHenv] = ACTIONS(1791), + [anon_sym_overlay] = ACTIONS(1791), + [anon_sym_where] = ACTIONS(1791), + [anon_sym_not] = ACTIONS(1791), + [anon_sym_DOT_DOT_LT] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), + [sym_val_nothing] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [aux_sym_val_number_token1] = ACTIONS(1791), + [aux_sym_val_number_token2] = ACTIONS(1791), + [aux_sym_val_number_token3] = ACTIONS(1791), + [aux_sym_val_number_token4] = ACTIONS(1791), + [aux_sym_val_number_token5] = ACTIONS(1791), + [anon_sym_inf] = ACTIONS(1791), + [anon_sym_DASHinf] = ACTIONS(1791), + [anon_sym_NaN] = ACTIONS(1791), + [anon_sym_0b] = ACTIONS(1791), + [anon_sym_0o] = ACTIONS(1791), + [anon_sym_0x] = ACTIONS(1791), + [sym_val_date] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym__str_single_quotes] = ACTIONS(1791), + [sym__str_back_ticks] = ACTIONS(1791), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1791), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), [anon_sym_POUND] = ACTIONS(3), }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [sym_cmd_identifier] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_def_DASHenv] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_where] = ACTIONS(1801), - [anon_sym_not] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [sym_val_nothing] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym_val_number_token1] = ACTIONS(1801), - [aux_sym_val_number_token2] = ACTIONS(1801), - [aux_sym_val_number_token3] = ACTIONS(1801), - [aux_sym_val_number_token4] = ACTIONS(1801), - [aux_sym_val_number_token5] = ACTIONS(1801), - [anon_sym_inf] = ACTIONS(1801), - [anon_sym_DASHinf] = ACTIONS(1801), - [anon_sym_NaN] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1801), + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_alias] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_let_DASHenv] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [sym_cmd_identifier] = ACTIONS(1795), + [anon_sym_LF] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1795), + [anon_sym_def_DASHenv] = ACTIONS(1795), + [anon_sym_export_DASHenv] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1795), + [anon_sym_error] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_source] = ACTIONS(1795), + [anon_sym_source_DASHenv] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1795), + [anon_sym_hide] = ACTIONS(1795), + [anon_sym_hide_DASHenv] = ACTIONS(1795), + [anon_sym_overlay] = ACTIONS(1795), + [anon_sym_where] = ACTIONS(1795), + [anon_sym_not] = ACTIONS(1795), + [anon_sym_DOT_DOT_LT] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), + [sym_val_nothing] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [aux_sym_val_number_token1] = ACTIONS(1795), + [aux_sym_val_number_token2] = ACTIONS(1795), + [aux_sym_val_number_token3] = ACTIONS(1795), + [aux_sym_val_number_token4] = ACTIONS(1795), + [aux_sym_val_number_token5] = ACTIONS(1795), + [anon_sym_inf] = ACTIONS(1795), + [anon_sym_DASHinf] = ACTIONS(1795), + [anon_sym_NaN] = ACTIONS(1795), + [anon_sym_0b] = ACTIONS(1795), + [anon_sym_0o] = ACTIONS(1795), + [anon_sym_0x] = ACTIONS(1795), + [sym_val_date] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [sym__str_single_quotes] = ACTIONS(1795), + [sym__str_back_ticks] = ACTIONS(1795), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1795), [anon_sym_POUND] = ACTIONS(3), }, - [555] = { - [sym_block] = STATE(687), - [sym_comment] = STATE(555), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = 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(1805), - [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_where] = ACTIONS(1691), - [anon_sym_not] = ACTIONS(1691), - [anon_sym_DOT_DOT_LT] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [sym_val_nothing] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1691), - [anon_sym_DASHinf] = ACTIONS(1691), - [anon_sym_NaN] = 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), + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [sym_cmd_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_def_DASHenv] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_where] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [sym_val_nothing] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_val_number_token1] = ACTIONS(1799), + [aux_sym_val_number_token2] = ACTIONS(1799), + [aux_sym_val_number_token3] = ACTIONS(1799), + [aux_sym_val_number_token4] = ACTIONS(1799), + [aux_sym_val_number_token5] = ACTIONS(1799), + [anon_sym_inf] = ACTIONS(1799), + [anon_sym_DASHinf] = ACTIONS(1799), + [anon_sym_NaN] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), }, - [556] = { - [sym_comment] = STATE(556), + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_alias] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_let_DASHenv] = ACTIONS(1803), + [anon_sym_mut] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1803), + [sym_cmd_identifier] = ACTIONS(1803), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1803), + [anon_sym_def_DASHenv] = ACTIONS(1803), + [anon_sym_export_DASHenv] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_RPAREN] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(1803), + [anon_sym_error] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_source] = ACTIONS(1803), + [anon_sym_source_DASHenv] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_hide] = ACTIONS(1803), + [anon_sym_hide_DASHenv] = ACTIONS(1803), + [anon_sym_overlay] = ACTIONS(1803), + [anon_sym_where] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1803), + [anon_sym_DOT_DOT_LT] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), + [sym_val_nothing] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_val_number_token1] = ACTIONS(1803), + [aux_sym_val_number_token2] = ACTIONS(1803), + [aux_sym_val_number_token3] = ACTIONS(1803), + [aux_sym_val_number_token4] = ACTIONS(1803), + [aux_sym_val_number_token5] = ACTIONS(1803), + [anon_sym_inf] = ACTIONS(1803), + [anon_sym_DASHinf] = ACTIONS(1803), + [anon_sym_NaN] = ACTIONS(1803), + [anon_sym_0b] = ACTIONS(1803), + [anon_sym_0o] = ACTIONS(1803), + [anon_sym_0x] = ACTIONS(1803), + [sym_val_date] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [sym__str_single_quotes] = ACTIONS(1803), + [sym__str_back_ticks] = ACTIONS(1803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + }, + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_alias] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_let_DASHenv] = ACTIONS(1803), + [anon_sym_mut] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1803), + [sym_cmd_identifier] = ACTIONS(1803), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1803), + [anon_sym_def_DASHenv] = ACTIONS(1803), + [anon_sym_export_DASHenv] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_RPAREN] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(1803), + [anon_sym_error] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_source] = ACTIONS(1803), + [anon_sym_source_DASHenv] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_hide] = ACTIONS(1803), + [anon_sym_hide_DASHenv] = ACTIONS(1803), + [anon_sym_overlay] = ACTIONS(1803), + [anon_sym_where] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1803), + [anon_sym_DOT_DOT_LT] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), + [sym_val_nothing] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_val_number_token1] = ACTIONS(1803), + [aux_sym_val_number_token2] = ACTIONS(1803), + [aux_sym_val_number_token3] = ACTIONS(1803), + [aux_sym_val_number_token4] = ACTIONS(1803), + [aux_sym_val_number_token5] = ACTIONS(1803), + [anon_sym_inf] = ACTIONS(1803), + [anon_sym_DASHinf] = ACTIONS(1803), + [anon_sym_NaN] = ACTIONS(1803), + [anon_sym_0b] = ACTIONS(1803), + [anon_sym_0o] = ACTIONS(1803), + [anon_sym_0x] = ACTIONS(1803), + [sym_val_date] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [sym__str_single_quotes] = ACTIONS(1803), + [sym__str_back_ticks] = ACTIONS(1803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + }, + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [sym_cmd_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_def_DASHenv] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_RPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_where] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [sym_val_nothing] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_val_number_token1] = ACTIONS(1799), + [aux_sym_val_number_token2] = ACTIONS(1799), + [aux_sym_val_number_token3] = ACTIONS(1799), + [aux_sym_val_number_token4] = ACTIONS(1799), + [aux_sym_val_number_token5] = ACTIONS(1799), + [anon_sym_inf] = ACTIONS(1799), + [anon_sym_DASHinf] = ACTIONS(1799), + [anon_sym_NaN] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(3), + }, + [549] = { + [sym_comment] = STATE(549), [anon_sym_export] = ACTIONS(1807), [anon_sym_alias] = ACTIONS(1807), [anon_sym_let] = ACTIONS(1807), @@ -91164,88 +90758,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1807), [anon_sym_POUND] = ACTIONS(3), }, - [557] = { - [sym_block] = STATE(696), - [sym_comment] = STATE(557), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = 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(1805), - [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_where] = ACTIONS(1691), - [anon_sym_not] = ACTIONS(1691), - [anon_sym_DOT_DOT_LT] = ACTIONS(1691), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1691), - [sym_val_nothing] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1691), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1691), - [anon_sym_DASHinf] = ACTIONS(1691), - [anon_sym_NaN] = 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(3), - }, - [558] = { - [sym__terminator] = STATE(553), - [sym_comment] = STATE(558), - [aux_sym__block_body_repeat1] = STATE(566), + [550] = { + [sym_comment] = STATE(550), [anon_sym_export] = ACTIONS(1811), [anon_sym_alias] = ACTIONS(1811), [anon_sym_let] = ACTIONS(1811), [anon_sym_let_DASHenv] = ACTIONS(1811), [anon_sym_mut] = ACTIONS(1811), [anon_sym_const] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1811), [sym_cmd_identifier] = ACTIONS(1811), - [anon_sym_LF] = ACTIONS(1815), + [anon_sym_LF] = ACTIONS(1813), [anon_sym_def] = ACTIONS(1811), [anon_sym_def_DASHenv] = ACTIONS(1811), [anon_sym_export_DASHenv] = ACTIONS(1811), @@ -91254,6 +90777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1811), [anon_sym_LBRACK] = ACTIONS(1811), [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1811), [anon_sym_DOLLAR] = ACTIONS(1811), [anon_sym_error] = ACTIONS(1811), [anon_sym_DASH] = ACTIONS(1811), @@ -91266,6 +90790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1811), [anon_sym_match] = ACTIONS(1811), [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), [anon_sym_try] = ACTIONS(1811), [anon_sym_return] = ACTIONS(1811), [anon_sym_source] = ACTIONS(1811), @@ -91302,215 +90827,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1811), [anon_sym_POUND] = ACTIONS(3), }, - [559] = { - [sym_comment] = STATE(559), - [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_def_DASHenv] = 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_PIPE] = ACTIONS(1679), - [anon_sym_DOLLAR] = ACTIONS(1679), - [anon_sym_error] = ACTIONS(1679), - [anon_sym_DASH] = ACTIONS(1679), - [anon_sym_break] = ACTIONS(1679), - [anon_sym_continue] = ACTIONS(1679), - [anon_sym_for] = 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_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_where] = ACTIONS(1679), - [anon_sym_not] = ACTIONS(1679), - [anon_sym_DOT_DOT_LT] = ACTIONS(1679), - [anon_sym_DOT_DOT] = ACTIONS(1679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1679), - [sym_val_nothing] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1679), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1679), - [anon_sym_DASHinf] = ACTIONS(1679), - [anon_sym_NaN] = 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), + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_alias] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_let_DASHenv] = ACTIONS(1811), + [anon_sym_mut] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [sym_cmd_identifier] = ACTIONS(1811), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1811), + [anon_sym_def_DASHenv] = ACTIONS(1811), + [anon_sym_export_DASHenv] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_error] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_source] = ACTIONS(1811), + [anon_sym_source_DASHenv] = ACTIONS(1811), + [anon_sym_register] = ACTIONS(1811), + [anon_sym_hide] = ACTIONS(1811), + [anon_sym_hide_DASHenv] = ACTIONS(1811), + [anon_sym_overlay] = ACTIONS(1811), + [anon_sym_where] = ACTIONS(1811), + [anon_sym_not] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), + [sym_val_nothing] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [aux_sym_val_number_token1] = ACTIONS(1811), + [aux_sym_val_number_token2] = ACTIONS(1811), + [aux_sym_val_number_token3] = ACTIONS(1811), + [aux_sym_val_number_token4] = ACTIONS(1811), + [aux_sym_val_number_token5] = ACTIONS(1811), + [anon_sym_inf] = ACTIONS(1811), + [anon_sym_DASHinf] = ACTIONS(1811), + [anon_sym_NaN] = ACTIONS(1811), + [anon_sym_0b] = ACTIONS(1811), + [anon_sym_0o] = ACTIONS(1811), + [anon_sym_0x] = ACTIONS(1811), + [sym_val_date] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym__str_single_quotes] = ACTIONS(1811), + [sym__str_back_ticks] = ACTIONS(1811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), [anon_sym_POUND] = ACTIONS(3), }, - [560] = { - [sym__terminator] = STATE(553), - [sym_comment] = STATE(560), - [aux_sym__block_body_repeat1] = STATE(565), - [anon_sym_export] = ACTIONS(1817), - [anon_sym_alias] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_let_DASHenv] = ACTIONS(1817), - [anon_sym_mut] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1817), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1817), - [anon_sym_def_DASHenv] = ACTIONS(1817), - [anon_sym_export_DASHenv] = ACTIONS(1817), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_module] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_DOLLAR] = ACTIONS(1817), - [anon_sym_error] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_do] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_source] = ACTIONS(1817), - [anon_sym_source_DASHenv] = ACTIONS(1817), - [anon_sym_register] = ACTIONS(1817), - [anon_sym_hide] = ACTIONS(1817), - [anon_sym_hide_DASHenv] = ACTIONS(1817), - [anon_sym_overlay] = ACTIONS(1817), - [anon_sym_where] = ACTIONS(1817), - [anon_sym_not] = ACTIONS(1817), - [anon_sym_DOT_DOT_LT] = ACTIONS(1817), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), - [sym_val_nothing] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [aux_sym_val_number_token1] = ACTIONS(1817), - [aux_sym_val_number_token2] = ACTIONS(1817), - [aux_sym_val_number_token3] = ACTIONS(1817), - [aux_sym_val_number_token4] = ACTIONS(1817), - [aux_sym_val_number_token5] = ACTIONS(1817), - [anon_sym_inf] = ACTIONS(1817), - [anon_sym_DASHinf] = ACTIONS(1817), - [anon_sym_NaN] = ACTIONS(1817), - [anon_sym_0b] = ACTIONS(1817), - [anon_sym_0o] = ACTIONS(1817), - [anon_sym_0x] = ACTIONS(1817), - [sym_val_date] = ACTIONS(1817), - [anon_sym_DQUOTE] = ACTIONS(1817), - [sym__str_single_quotes] = ACTIONS(1817), - [sym__str_back_ticks] = ACTIONS(1817), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1817), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1817), - [anon_sym_CARET] = ACTIONS(1817), + [552] = { + [sym_comment] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(941), + [anon_sym_export] = ACTIONS(939), + [anon_sym_alias] = ACTIONS(939), + [anon_sym_let] = ACTIONS(939), + [anon_sym_let_DASHenv] = ACTIONS(939), + [anon_sym_mut] = ACTIONS(939), + [anon_sym_const] = ACTIONS(939), + [anon_sym_SEMI] = ACTIONS(939), + [sym_cmd_identifier] = ACTIONS(939), + [anon_sym_LF] = ACTIONS(941), + [anon_sym_def] = ACTIONS(939), + [anon_sym_def_DASHenv] = ACTIONS(939), + [anon_sym_export_DASHenv] = ACTIONS(939), + [anon_sym_extern] = ACTIONS(939), + [anon_sym_module] = ACTIONS(939), + [anon_sym_use] = ACTIONS(939), + [anon_sym_LBRACK] = ACTIONS(939), + [anon_sym_LPAREN] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(939), + [anon_sym_error] = ACTIONS(939), + [anon_sym_DASH] = ACTIONS(939), + [anon_sym_break] = ACTIONS(939), + [anon_sym_continue] = ACTIONS(939), + [anon_sym_for] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(939), + [anon_sym_while] = ACTIONS(939), + [anon_sym_do] = ACTIONS(939), + [anon_sym_if] = ACTIONS(939), + [anon_sym_match] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(939), + [anon_sym_try] = ACTIONS(939), + [anon_sym_return] = ACTIONS(939), + [anon_sym_source] = ACTIONS(939), + [anon_sym_source_DASHenv] = ACTIONS(939), + [anon_sym_register] = ACTIONS(939), + [anon_sym_hide] = ACTIONS(939), + [anon_sym_hide_DASHenv] = ACTIONS(939), + [anon_sym_overlay] = ACTIONS(939), + [anon_sym_STAR] = ACTIONS(939), + [anon_sym_where] = ACTIONS(939), + [anon_sym_not] = ACTIONS(939), + [anon_sym_DOT_DOT_LT] = ACTIONS(939), + [anon_sym_DOT_DOT] = ACTIONS(939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(939), + [sym_val_nothing] = ACTIONS(939), + [anon_sym_true] = ACTIONS(939), + [anon_sym_false] = ACTIONS(939), + [aux_sym_val_number_token1] = ACTIONS(939), + [aux_sym_val_number_token2] = ACTIONS(939), + [aux_sym_val_number_token3] = ACTIONS(939), + [aux_sym_val_number_token4] = ACTIONS(939), + [aux_sym_val_number_token5] = ACTIONS(939), + [anon_sym_inf] = ACTIONS(939), + [anon_sym_DASHinf] = ACTIONS(939), + [anon_sym_NaN] = ACTIONS(939), + [anon_sym_0b] = ACTIONS(939), + [anon_sym_0o] = ACTIONS(939), + [anon_sym_0x] = ACTIONS(939), + [sym_val_date] = ACTIONS(939), + [anon_sym_DQUOTE] = ACTIONS(939), + [sym__str_single_quotes] = ACTIONS(939), + [sym__str_back_ticks] = ACTIONS(939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(939), + [anon_sym_CARET] = ACTIONS(939), [anon_sym_POUND] = ACTIONS(3), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(1819), - [anon_sym_alias] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_let_DASHenv] = ACTIONS(1819), - [anon_sym_mut] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_cmd_identifier] = ACTIONS(1819), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1819), - [anon_sym_def_DASHenv] = ACTIONS(1819), - [anon_sym_export_DASHenv] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym_module] = ACTIONS(1819), - [anon_sym_use] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_error] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_loop] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_match] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_source] = ACTIONS(1819), - [anon_sym_source_DASHenv] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_hide] = ACTIONS(1819), - [anon_sym_hide_DASHenv] = ACTIONS(1819), - [anon_sym_overlay] = ACTIONS(1819), - [anon_sym_where] = ACTIONS(1819), - [anon_sym_not] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [sym_val_nothing] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym_val_number_token1] = ACTIONS(1819), - [aux_sym_val_number_token2] = ACTIONS(1819), - [aux_sym_val_number_token3] = ACTIONS(1819), - [aux_sym_val_number_token4] = ACTIONS(1819), - [aux_sym_val_number_token5] = ACTIONS(1819), - [anon_sym_inf] = ACTIONS(1819), - [anon_sym_DASHinf] = ACTIONS(1819), - [anon_sym_NaN] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1819), - [anon_sym_0o] = ACTIONS(1819), - [anon_sym_0x] = ACTIONS(1819), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1819), + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(1815), + [anon_sym_alias] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_let_DASHenv] = ACTIONS(1815), + [anon_sym_mut] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1815), + [sym_cmd_identifier] = ACTIONS(1815), + [anon_sym_LF] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1815), + [anon_sym_def_DASHenv] = ACTIONS(1815), + [anon_sym_export_DASHenv] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_RPAREN] = ACTIONS(1815), + [anon_sym_DOLLAR] = ACTIONS(1815), + [anon_sym_error] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_do] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_RBRACE] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_source] = ACTIONS(1815), + [anon_sym_source_DASHenv] = ACTIONS(1815), + [anon_sym_register] = ACTIONS(1815), + [anon_sym_hide] = ACTIONS(1815), + [anon_sym_hide_DASHenv] = ACTIONS(1815), + [anon_sym_overlay] = ACTIONS(1815), + [anon_sym_where] = ACTIONS(1815), + [anon_sym_not] = ACTIONS(1815), + [anon_sym_DOT_DOT_LT] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), + [sym_val_nothing] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [aux_sym_val_number_token1] = ACTIONS(1815), + [aux_sym_val_number_token2] = ACTIONS(1815), + [aux_sym_val_number_token3] = ACTIONS(1815), + [aux_sym_val_number_token4] = ACTIONS(1815), + [aux_sym_val_number_token5] = ACTIONS(1815), + [anon_sym_inf] = ACTIONS(1815), + [anon_sym_DASHinf] = ACTIONS(1815), + [anon_sym_NaN] = ACTIONS(1815), + [anon_sym_0b] = ACTIONS(1815), + [anon_sym_0o] = ACTIONS(1815), + [anon_sym_0x] = ACTIONS(1815), + [sym_val_date] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1815), + [sym__str_single_quotes] = ACTIONS(1815), + [sym__str_back_ticks] = ACTIONS(1815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1815), [anon_sym_POUND] = ACTIONS(3), }, - [562] = { - [sym_comment] = STATE(562), + [554] = { + [sym_comment] = STATE(554), [anon_sym_export] = ACTIONS(1819), [anon_sym_alias] = ACTIONS(1819), [anon_sym_let] = ACTIONS(1819), @@ -91578,8 +91103,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1819), [anon_sym_POUND] = ACTIONS(3), }, - [563] = { - [sym_comment] = STATE(563), + [555] = { + [sym_comment] = STATE(555), [anon_sym_export] = ACTIONS(1823), [anon_sym_alias] = ACTIONS(1823), [anon_sym_let] = ACTIONS(1823), @@ -91647,8 +91172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1823), [anon_sym_POUND] = ACTIONS(3), }, - [564] = { - [sym_comment] = STATE(564), + [556] = { + [sym_comment] = STATE(556), [anon_sym_export] = ACTIONS(1827), [anon_sym_alias] = ACTIONS(1827), [anon_sym_let] = ACTIONS(1827), @@ -91716,19 +91241,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), }, - [565] = { - [sym__terminator] = STATE(553), - [sym_comment] = STATE(565), - [aux_sym__block_body_repeat1] = STATE(490), + [557] = { + [sym_comment] = STATE(557), [anon_sym_export] = ACTIONS(1831), [anon_sym_alias] = ACTIONS(1831), [anon_sym_let] = ACTIONS(1831), [anon_sym_let_DASHenv] = ACTIONS(1831), [anon_sym_mut] = ACTIONS(1831), [anon_sym_const] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1831), [sym_cmd_identifier] = ACTIONS(1831), - [anon_sym_LF] = ACTIONS(1815), + [anon_sym_LF] = ACTIONS(1833), [anon_sym_def] = ACTIONS(1831), [anon_sym_def_DASHenv] = ACTIONS(1831), [anon_sym_export_DASHenv] = ACTIONS(1831), @@ -91737,6 +91260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1831), [anon_sym_LBRACK] = ACTIONS(1831), [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), [anon_sym_DOLLAR] = ACTIONS(1831), [anon_sym_error] = ACTIONS(1831), [anon_sym_DASH] = ACTIONS(1831), @@ -91749,6 +91273,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1831), [anon_sym_match] = ACTIONS(1831), [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), [anon_sym_try] = ACTIONS(1831), [anon_sym_return] = ACTIONS(1831), [anon_sym_source] = ACTIONS(1831), @@ -91785,146 +91310,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(3), }, - [566] = { - [sym__terminator] = STATE(553), - [sym_comment] = STATE(566), - [aux_sym__block_body_repeat1] = STATE(490), - [anon_sym_export] = ACTIONS(1833), - [anon_sym_alias] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_let_DASHenv] = ACTIONS(1833), - [anon_sym_mut] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1813), - [sym_cmd_identifier] = ACTIONS(1833), - [anon_sym_LF] = ACTIONS(1815), - [anon_sym_def] = ACTIONS(1833), - [anon_sym_def_DASHenv] = ACTIONS(1833), - [anon_sym_export_DASHenv] = ACTIONS(1833), - [anon_sym_extern] = ACTIONS(1833), - [anon_sym_module] = ACTIONS(1833), - [anon_sym_use] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_DOLLAR] = ACTIONS(1833), - [anon_sym_error] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_loop] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_source] = ACTIONS(1833), - [anon_sym_source_DASHenv] = ACTIONS(1833), - [anon_sym_register] = ACTIONS(1833), - [anon_sym_hide] = ACTIONS(1833), - [anon_sym_hide_DASHenv] = ACTIONS(1833), - [anon_sym_overlay] = ACTIONS(1833), - [anon_sym_where] = ACTIONS(1833), - [anon_sym_not] = ACTIONS(1833), - [anon_sym_DOT_DOT_LT] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), - [sym_val_nothing] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [aux_sym_val_number_token1] = ACTIONS(1833), - [aux_sym_val_number_token2] = ACTIONS(1833), - [aux_sym_val_number_token3] = ACTIONS(1833), - [aux_sym_val_number_token4] = ACTIONS(1833), - [aux_sym_val_number_token5] = ACTIONS(1833), - [anon_sym_inf] = ACTIONS(1833), - [anon_sym_DASHinf] = ACTIONS(1833), - [anon_sym_NaN] = ACTIONS(1833), - [anon_sym_0b] = ACTIONS(1833), - [anon_sym_0o] = ACTIONS(1833), - [anon_sym_0x] = ACTIONS(1833), - [sym_val_date] = ACTIONS(1833), - [anon_sym_DQUOTE] = ACTIONS(1833), - [sym__str_single_quotes] = ACTIONS(1833), - [sym__str_back_ticks] = ACTIONS(1833), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(3), - }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(1713), - [anon_sym_alias] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_let_DASHenv] = ACTIONS(1713), - [anon_sym_mut] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [sym_cmd_identifier] = ACTIONS(1713), - [anon_sym_LF] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1713), - [anon_sym_def_DASHenv] = ACTIONS(1713), - [anon_sym_export_DASHenv] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_module] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_source] = ACTIONS(1713), - [anon_sym_source_DASHenv] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_hide_DASHenv] = ACTIONS(1713), - [anon_sym_overlay] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(1713), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [sym_val_nothing] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym_val_number_token1] = ACTIONS(1713), - [aux_sym_val_number_token2] = ACTIONS(1713), - [aux_sym_val_number_token3] = ACTIONS(1713), - [aux_sym_val_number_token4] = ACTIONS(1713), - [aux_sym_val_number_token5] = ACTIONS(1713), - [anon_sym_inf] = ACTIONS(1713), - [anon_sym_DASHinf] = ACTIONS(1713), - [anon_sym_NaN] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1713), - [anon_sym_0x] = ACTIONS(1713), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - }, - [568] = { - [sym_comment] = STATE(568), + [558] = { + [sym_comment] = STATE(558), [anon_sym_export] = ACTIONS(1835), [anon_sym_alias] = ACTIONS(1835), [anon_sym_let] = ACTIONS(1835), @@ -91992,8 +91379,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, - [569] = { - [sym_comment] = STATE(569), + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [sym_cmd_identifier] = ACTIONS(1831), + [anon_sym_LF] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_def_DASHenv] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_where] = ACTIONS(1831), + [anon_sym_not] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [sym_val_nothing] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym_val_number_token1] = ACTIONS(1831), + [aux_sym_val_number_token2] = ACTIONS(1831), + [aux_sym_val_number_token3] = ACTIONS(1831), + [aux_sym_val_number_token4] = ACTIONS(1831), + [aux_sym_val_number_token5] = ACTIONS(1831), + [anon_sym_inf] = ACTIONS(1831), + [anon_sym_DASHinf] = ACTIONS(1831), + [anon_sym_NaN] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(3), + }, + [560] = { + [sym_comment] = STATE(560), [anon_sym_export] = ACTIONS(1839), [anon_sym_alias] = ACTIONS(1839), [anon_sym_let] = ACTIONS(1839), @@ -92061,77 +91517,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, - [570] = { - [sym_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(889), - [anon_sym_export] = ACTIONS(887), - [anon_sym_alias] = ACTIONS(887), - [anon_sym_let] = ACTIONS(887), - [anon_sym_let_DASHenv] = ACTIONS(887), - [anon_sym_mut] = ACTIONS(887), - [anon_sym_const] = ACTIONS(887), - [anon_sym_SEMI] = ACTIONS(887), - [sym_cmd_identifier] = ACTIONS(887), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_def] = ACTIONS(887), - [anon_sym_def_DASHenv] = ACTIONS(887), - [anon_sym_export_DASHenv] = ACTIONS(887), - [anon_sym_extern] = ACTIONS(887), - [anon_sym_module] = ACTIONS(887), - [anon_sym_use] = ACTIONS(887), - [anon_sym_LBRACK] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(887), - [anon_sym_DOLLAR] = ACTIONS(887), - [anon_sym_error] = ACTIONS(887), - [anon_sym_DASH] = ACTIONS(887), - [anon_sym_break] = ACTIONS(887), - [anon_sym_continue] = ACTIONS(887), - [anon_sym_for] = ACTIONS(887), - [anon_sym_loop] = ACTIONS(887), - [anon_sym_while] = ACTIONS(887), - [anon_sym_do] = ACTIONS(887), - [anon_sym_if] = ACTIONS(887), - [anon_sym_match] = ACTIONS(887), - [anon_sym_LBRACE] = ACTIONS(887), - [anon_sym_try] = ACTIONS(887), - [anon_sym_return] = ACTIONS(887), - [anon_sym_source] = ACTIONS(887), - [anon_sym_source_DASHenv] = ACTIONS(887), - [anon_sym_register] = ACTIONS(887), - [anon_sym_hide] = ACTIONS(887), - [anon_sym_hide_DASHenv] = ACTIONS(887), - [anon_sym_overlay] = ACTIONS(887), - [anon_sym_STAR] = ACTIONS(887), - [anon_sym_where] = ACTIONS(887), - [anon_sym_not] = ACTIONS(887), - [anon_sym_DOT_DOT_LT] = ACTIONS(887), - [anon_sym_DOT_DOT] = ACTIONS(887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(887), - [sym_val_nothing] = ACTIONS(887), - [anon_sym_true] = ACTIONS(887), - [anon_sym_false] = ACTIONS(887), - [aux_sym_val_number_token1] = ACTIONS(887), - [aux_sym_val_number_token2] = ACTIONS(887), - [aux_sym_val_number_token3] = ACTIONS(887), - [aux_sym_val_number_token4] = ACTIONS(887), - [aux_sym_val_number_token5] = ACTIONS(887), - [anon_sym_inf] = ACTIONS(887), - [anon_sym_DASHinf] = ACTIONS(887), - [anon_sym_NaN] = ACTIONS(887), - [anon_sym_0b] = ACTIONS(887), - [anon_sym_0o] = ACTIONS(887), - [anon_sym_0x] = ACTIONS(887), - [sym_val_date] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(887), - [sym__str_single_quotes] = ACTIONS(887), - [sym__str_back_ticks] = ACTIONS(887), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(887), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(887), - [anon_sym_CARET] = ACTIONS(887), + [561] = { + [sym_comment] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(1699), + [anon_sym_export] = ACTIONS(1697), + [anon_sym_alias] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1697), + [anon_sym_let_DASHenv] = ACTIONS(1697), + [anon_sym_mut] = ACTIONS(1697), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_SEMI] = ACTIONS(1697), + [sym_cmd_identifier] = ACTIONS(1697), + [anon_sym_LF] = ACTIONS(1699), + [anon_sym_def] = ACTIONS(1697), + [anon_sym_def_DASHenv] = ACTIONS(1697), + [anon_sym_export_DASHenv] = ACTIONS(1697), + [anon_sym_extern] = ACTIONS(1697), + [anon_sym_module] = ACTIONS(1697), + [anon_sym_use] = ACTIONS(1697), + [anon_sym_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_DOLLAR] = ACTIONS(1697), + [anon_sym_error] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_break] = ACTIONS(1697), + [anon_sym_continue] = ACTIONS(1697), + [anon_sym_for] = ACTIONS(1697), + [anon_sym_loop] = ACTIONS(1697), + [anon_sym_while] = ACTIONS(1697), + [anon_sym_do] = ACTIONS(1697), + [anon_sym_if] = ACTIONS(1697), + [anon_sym_match] = ACTIONS(1697), + [anon_sym_LBRACE] = ACTIONS(1697), + [anon_sym_try] = ACTIONS(1697), + [anon_sym_return] = ACTIONS(1697), + [anon_sym_source] = ACTIONS(1697), + [anon_sym_source_DASHenv] = ACTIONS(1697), + [anon_sym_register] = ACTIONS(1697), + [anon_sym_hide] = ACTIONS(1697), + [anon_sym_hide_DASHenv] = ACTIONS(1697), + [anon_sym_overlay] = ACTIONS(1697), + [anon_sym_where] = ACTIONS(1697), + [anon_sym_not] = ACTIONS(1697), + [anon_sym_DOT_DOT_LT] = ACTIONS(1697), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1697), + [sym_val_nothing] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(1697), + [anon_sym_false] = ACTIONS(1697), + [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(1697), + [aux_sym_val_number_token5] = ACTIONS(1697), + [anon_sym_inf] = ACTIONS(1697), + [anon_sym_DASHinf] = ACTIONS(1697), + [anon_sym_NaN] = ACTIONS(1697), + [anon_sym_0b] = ACTIONS(1697), + [anon_sym_0o] = ACTIONS(1697), + [anon_sym_0x] = ACTIONS(1697), + [sym_val_date] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1697), + [sym__str_single_quotes] = ACTIONS(1697), + [sym__str_back_ticks] = ACTIONS(1697), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1697), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1697), + [anon_sym_CARET] = ACTIONS(1697), [anon_sym_POUND] = ACTIONS(3), }, - [571] = { - [sym_comment] = STATE(571), + [562] = { + [sym_comment] = STATE(562), [anon_sym_export] = ACTIONS(1843), [anon_sym_alias] = ACTIONS(1843), [anon_sym_let] = ACTIONS(1843), @@ -92199,8 +91655,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(3), }, - [572] = { - [sym_comment] = STATE(572), + [563] = { + [sym_comment] = STATE(563), [anon_sym_export] = ACTIONS(1847), [anon_sym_alias] = ACTIONS(1847), [anon_sym_let] = ACTIONS(1847), @@ -92268,8 +91724,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1847), [anon_sym_POUND] = ACTIONS(3), }, - [573] = { - [sym_comment] = STATE(573), + [564] = { + [sym_comment] = STATE(564), [anon_sym_export] = ACTIONS(1851), [anon_sym_alias] = ACTIONS(1851), [anon_sym_let] = ACTIONS(1851), @@ -92337,8 +91793,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(3), }, - [574] = { - [sym_comment] = STATE(574), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(923), + [anon_sym_alias] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_let_DASHenv] = ACTIONS(923), + [anon_sym_mut] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [sym_cmd_identifier] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(925), + [anon_sym_def] = ACTIONS(923), + [anon_sym_def_DASHenv] = ACTIONS(923), + [anon_sym_export_DASHenv] = ACTIONS(923), + [anon_sym_extern] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_error] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_source] = ACTIONS(923), + [anon_sym_source_DASHenv] = ACTIONS(923), + [anon_sym_register] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_hide_DASHenv] = ACTIONS(923), + [anon_sym_overlay] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_not] = ACTIONS(923), + [anon_sym_DOT_DOT_LT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [sym_val_nothing] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [aux_sym_val_number_token1] = ACTIONS(923), + [aux_sym_val_number_token2] = ACTIONS(923), + [aux_sym_val_number_token3] = ACTIONS(923), + [aux_sym_val_number_token4] = ACTIONS(923), + [aux_sym_val_number_token5] = ACTIONS(923), + [anon_sym_inf] = ACTIONS(923), + [anon_sym_DASHinf] = ACTIONS(923), + [anon_sym_NaN] = ACTIONS(923), + [anon_sym_0b] = ACTIONS(923), + [anon_sym_0o] = ACTIONS(923), + [anon_sym_0x] = ACTIONS(923), + [sym_val_date] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym__str_single_quotes] = ACTIONS(923), + [sym__str_back_ticks] = ACTIONS(923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(3), + }, + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [sym_cmd_identifier] = ACTIONS(1839), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_def_DASHenv] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_where] = ACTIONS(1839), + [anon_sym_not] = ACTIONS(1839), + [anon_sym_DOT_DOT_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), + [sym_val_nothing] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [aux_sym_val_number_token1] = ACTIONS(1839), + [aux_sym_val_number_token2] = ACTIONS(1839), + [aux_sym_val_number_token3] = ACTIONS(1839), + [aux_sym_val_number_token4] = ACTIONS(1839), + [aux_sym_val_number_token5] = ACTIONS(1839), + [anon_sym_inf] = ACTIONS(1839), + [anon_sym_DASHinf] = ACTIONS(1839), + [anon_sym_NaN] = ACTIONS(1839), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), + [anon_sym_CARET] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(3), + }, + [567] = { + [sym_comment] = STATE(567), [anon_sym_export] = ACTIONS(1855), [anon_sym_alias] = ACTIONS(1855), [anon_sym_let] = ACTIONS(1855), @@ -92406,8 +92000,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(3), }, - [575] = { - [sym_comment] = STATE(575), + [568] = { + [sym_comment] = STATE(568), [anon_sym_export] = ACTIONS(1859), [anon_sym_alias] = ACTIONS(1859), [anon_sym_let] = ACTIONS(1859), @@ -92475,17 +92069,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1859), [anon_sym_POUND] = ACTIONS(3), }, - [576] = { - [sym_comment] = STATE(576), + [569] = { + [sym_comment] = STATE(569), [anon_sym_export] = ACTIONS(1863), [anon_sym_alias] = ACTIONS(1863), [anon_sym_let] = ACTIONS(1863), [anon_sym_let_DASHenv] = ACTIONS(1863), [anon_sym_mut] = ACTIONS(1863), [anon_sym_const] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1863), [sym_cmd_identifier] = ACTIONS(1863), - [anon_sym_LF] = ACTIONS(1868), + [anon_sym_LF] = ACTIONS(1865), [anon_sym_def] = ACTIONS(1863), [anon_sym_def_DASHenv] = ACTIONS(1863), [anon_sym_export_DASHenv] = ACTIONS(1863), @@ -92494,7 +92088,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1863), [anon_sym_LBRACK] = ACTIONS(1863), [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1863), [anon_sym_DOLLAR] = ACTIONS(1863), [anon_sym_error] = ACTIONS(1863), [anon_sym_DASH] = ACTIONS(1863), @@ -92507,7 +92101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1863), [anon_sym_match] = ACTIONS(1863), [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1863), [anon_sym_try] = ACTIONS(1863), [anon_sym_return] = ACTIONS(1863), [anon_sym_source] = ACTIONS(1863), @@ -92544,77 +92138,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(3), }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_alias] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_let_DASHenv] = ACTIONS(1873), - [anon_sym_mut] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [sym_cmd_identifier] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1875), - [anon_sym_def] = ACTIONS(1873), - [anon_sym_def_DASHenv] = ACTIONS(1873), - [anon_sym_export_DASHenv] = ACTIONS(1873), - [anon_sym_extern] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_use] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_loop] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_source] = ACTIONS(1873), - [anon_sym_source_DASHenv] = ACTIONS(1873), - [anon_sym_register] = ACTIONS(1873), - [anon_sym_hide] = ACTIONS(1873), - [anon_sym_hide_DASHenv] = ACTIONS(1873), - [anon_sym_overlay] = ACTIONS(1873), - [anon_sym_where] = ACTIONS(1873), - [anon_sym_not] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [sym_val_nothing] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym_val_number_token1] = ACTIONS(1873), - [aux_sym_val_number_token2] = ACTIONS(1873), - [aux_sym_val_number_token3] = ACTIONS(1873), - [aux_sym_val_number_token4] = ACTIONS(1873), - [aux_sym_val_number_token5] = ACTIONS(1873), - [anon_sym_inf] = ACTIONS(1873), - [anon_sym_DASHinf] = ACTIONS(1873), - [anon_sym_NaN] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1873), - [anon_sym_0o] = ACTIONS(1873), - [anon_sym_0x] = ACTIONS(1873), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1873), + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1867), + [sym_cmd_identifier] = ACTIONS(1867), + [anon_sym_LF] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_def_DASHenv] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_where] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_DOT_DOT_LT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), + [sym_val_nothing] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [aux_sym_val_number_token1] = ACTIONS(1867), + [aux_sym_val_number_token2] = ACTIONS(1867), + [aux_sym_val_number_token3] = ACTIONS(1867), + [aux_sym_val_number_token4] = ACTIONS(1867), + [aux_sym_val_number_token5] = ACTIONS(1867), + [anon_sym_inf] = ACTIONS(1867), + [anon_sym_DASHinf] = ACTIONS(1867), + [anon_sym_NaN] = ACTIONS(1867), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(3), }, - [578] = { - [sym_comment] = STATE(578), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [sym_cmd_identifier] = ACTIONS(1871), + [anon_sym_LF] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_def_DASHenv] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_RPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_where] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_DOT_DOT_LT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), + [sym_val_nothing] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym_val_number_token1] = ACTIONS(1871), + [aux_sym_val_number_token2] = ACTIONS(1871), + [aux_sym_val_number_token3] = ACTIONS(1871), + [aux_sym_val_number_token4] = ACTIONS(1871), + [aux_sym_val_number_token5] = ACTIONS(1871), + [anon_sym_inf] = ACTIONS(1871), + [anon_sym_DASHinf] = ACTIONS(1871), + [anon_sym_NaN] = ACTIONS(1871), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(3), + }, + [572] = { + [sym_val_record] = STATE(644), + [sym_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(1707), [anon_sym_export] = ACTIONS(1705), [anon_sym_alias] = ACTIONS(1705), @@ -92653,7 +92317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1705), [anon_sym_hide_DASHenv] = ACTIONS(1705), [anon_sym_overlay] = ACTIONS(1705), - [anon_sym_STAR] = ACTIONS(1705), [anon_sym_where] = ACTIONS(1705), [anon_sym_not] = ACTIONS(1705), [anon_sym_DOT_DOT_LT] = ACTIONS(1705), @@ -92682,974 +92345,974 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1705), [anon_sym_POUND] = ACTIONS(3), }, + [573] = { + [sym_val_record] = STATE(640), + [sym_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(1711), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_SEMI] = ACTIONS(1709), + [sym_cmd_identifier] = ACTIONS(1709), + [anon_sym_LF] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_def_DASHenv] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LBRACK] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1709), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_where] = ACTIONS(1709), + [anon_sym_not] = ACTIONS(1709), + [anon_sym_DOT_DOT_LT] = ACTIONS(1709), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), + [sym_val_nothing] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(1709), + [anon_sym_false] = ACTIONS(1709), + [aux_sym_val_number_token1] = ACTIONS(1709), + [aux_sym_val_number_token2] = ACTIONS(1709), + [aux_sym_val_number_token3] = ACTIONS(1709), + [aux_sym_val_number_token4] = ACTIONS(1709), + [aux_sym_val_number_token5] = ACTIONS(1709), + [anon_sym_inf] = ACTIONS(1709), + [anon_sym_DASHinf] = ACTIONS(1709), + [anon_sym_NaN] = ACTIONS(1709), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1709), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(3), + }, + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [sym_cmd_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_def_DASHenv] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_RPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_where] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_DOT_DOT_LT] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1875), + [sym_val_nothing] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym_val_number_token1] = ACTIONS(1875), + [aux_sym_val_number_token2] = ACTIONS(1875), + [aux_sym_val_number_token3] = ACTIONS(1875), + [aux_sym_val_number_token4] = ACTIONS(1875), + [aux_sym_val_number_token5] = ACTIONS(1875), + [anon_sym_inf] = ACTIONS(1875), + [anon_sym_DASHinf] = ACTIONS(1875), + [anon_sym_NaN] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(3), + }, + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [sym_cmd_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_def_DASHenv] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_DOT_DOT_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), + [sym_val_nothing] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym_val_number_token1] = ACTIONS(1879), + [aux_sym_val_number_token2] = ACTIONS(1879), + [aux_sym_val_number_token3] = ACTIONS(1879), + [aux_sym_val_number_token4] = ACTIONS(1879), + [aux_sym_val_number_token5] = ACTIONS(1879), + [anon_sym_inf] = ACTIONS(1879), + [anon_sym_DASHinf] = ACTIONS(1879), + [anon_sym_NaN] = ACTIONS(1879), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(3), + }, + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [sym_cmd_identifier] = ACTIONS(1883), + [anon_sym_LF] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_def_DASHenv] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_where] = ACTIONS(1883), + [anon_sym_not] = ACTIONS(1883), + [anon_sym_DOT_DOT_LT] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), + [sym_val_nothing] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym_val_number_token1] = ACTIONS(1883), + [aux_sym_val_number_token2] = ACTIONS(1883), + [aux_sym_val_number_token3] = ACTIONS(1883), + [aux_sym_val_number_token4] = ACTIONS(1883), + [aux_sym_val_number_token5] = ACTIONS(1883), + [anon_sym_inf] = ACTIONS(1883), + [anon_sym_DASHinf] = ACTIONS(1883), + [anon_sym_NaN] = ACTIONS(1883), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(3), + }, + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [sym_cmd_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_def_DASHenv] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_where] = ACTIONS(1887), + [anon_sym_not] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [sym_val_nothing] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym_val_number_token1] = ACTIONS(1887), + [aux_sym_val_number_token2] = ACTIONS(1887), + [aux_sym_val_number_token3] = ACTIONS(1887), + [aux_sym_val_number_token4] = ACTIONS(1887), + [aux_sym_val_number_token5] = ACTIONS(1887), + [anon_sym_inf] = ACTIONS(1887), + [anon_sym_DASHinf] = ACTIONS(1887), + [anon_sym_NaN] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(3), + }, + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [sym_cmd_identifier] = ACTIONS(1891), + [anon_sym_LF] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_def_DASHenv] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_where] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1891), + [anon_sym_DOT_DOT_LT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), + [sym_val_nothing] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [aux_sym_val_number_token1] = ACTIONS(1891), + [aux_sym_val_number_token2] = ACTIONS(1891), + [aux_sym_val_number_token3] = ACTIONS(1891), + [aux_sym_val_number_token4] = ACTIONS(1891), + [aux_sym_val_number_token5] = ACTIONS(1891), + [anon_sym_inf] = ACTIONS(1891), + [anon_sym_DASHinf] = ACTIONS(1891), + [anon_sym_NaN] = ACTIONS(1891), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), + [anon_sym_POUND] = ACTIONS(3), + }, [579] = { [sym_comment] = STATE(579), - [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_def_DASHenv] = 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_DASH] = ACTIONS(1687), - [anon_sym_break] = ACTIONS(1687), - [anon_sym_continue] = ACTIONS(1687), - [anon_sym_for] = 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_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_not] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1687), - [sym_val_nothing] = ACTIONS(1687), - [anon_sym_true] = ACTIONS(1687), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1687), - [anon_sym_DASHinf] = ACTIONS(1687), - [anon_sym_NaN] = 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_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [sym_cmd_identifier] = ACTIONS(1895), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_def_DASHenv] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_where] = ACTIONS(1895), + [anon_sym_not] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [sym_val_nothing] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym_val_number_token1] = ACTIONS(1895), + [aux_sym_val_number_token2] = ACTIONS(1895), + [aux_sym_val_number_token3] = ACTIONS(1895), + [aux_sym_val_number_token4] = ACTIONS(1895), + [aux_sym_val_number_token5] = ACTIONS(1895), + [anon_sym_inf] = ACTIONS(1895), + [anon_sym_DASHinf] = ACTIONS(1895), + [anon_sym_NaN] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_CARET] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(3), }, [580] = { [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_alias] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_let_DASHenv] = ACTIONS(1877), - [anon_sym_mut] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [sym_cmd_identifier] = ACTIONS(1877), - [anon_sym_LF] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1877), - [anon_sym_def_DASHenv] = ACTIONS(1877), - [anon_sym_export_DASHenv] = ACTIONS(1877), - [anon_sym_extern] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_use] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_loop] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_source] = ACTIONS(1877), - [anon_sym_source_DASHenv] = ACTIONS(1877), - [anon_sym_register] = ACTIONS(1877), - [anon_sym_hide] = ACTIONS(1877), - [anon_sym_hide_DASHenv] = ACTIONS(1877), - [anon_sym_overlay] = ACTIONS(1877), - [anon_sym_where] = ACTIONS(1877), - [anon_sym_not] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [sym_val_nothing] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym_val_number_token1] = ACTIONS(1877), - [aux_sym_val_number_token2] = ACTIONS(1877), - [aux_sym_val_number_token3] = ACTIONS(1877), - [aux_sym_val_number_token4] = ACTIONS(1877), - [aux_sym_val_number_token5] = ACTIONS(1877), - [anon_sym_inf] = ACTIONS(1877), - [anon_sym_DASHinf] = ACTIONS(1877), - [anon_sym_NaN] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1877), - [anon_sym_0o] = ACTIONS(1877), - [anon_sym_0x] = ACTIONS(1877), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [sym_cmd_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_def_DASHenv] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_where] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [sym_val_nothing] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym_val_number_token1] = ACTIONS(1899), + [aux_sym_val_number_token2] = ACTIONS(1899), + [aux_sym_val_number_token3] = ACTIONS(1899), + [aux_sym_val_number_token4] = ACTIONS(1899), + [aux_sym_val_number_token5] = ACTIONS(1899), + [anon_sym_inf] = ACTIONS(1899), + [anon_sym_DASHinf] = ACTIONS(1899), + [anon_sym_NaN] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), [anon_sym_POUND] = ACTIONS(3), }, [581] = { [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_alias] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_let_DASHenv] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [sym_cmd_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1881), - [anon_sym_def_DASHenv] = ACTIONS(1881), - [anon_sym_export_DASHenv] = ACTIONS(1881), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_source] = ACTIONS(1881), - [anon_sym_source_DASHenv] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1881), - [anon_sym_hide] = ACTIONS(1881), - [anon_sym_hide_DASHenv] = ACTIONS(1881), - [anon_sym_overlay] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [sym_val_nothing] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym_val_number_token1] = ACTIONS(1881), - [aux_sym_val_number_token2] = ACTIONS(1881), - [aux_sym_val_number_token3] = ACTIONS(1881), - [aux_sym_val_number_token4] = ACTIONS(1881), - [aux_sym_val_number_token5] = ACTIONS(1881), - [anon_sym_inf] = ACTIONS(1881), - [anon_sym_DASHinf] = ACTIONS(1881), - [anon_sym_NaN] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1881), - [anon_sym_0o] = ACTIONS(1881), - [anon_sym_0x] = ACTIONS(1881), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_alias] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_let_DASHenv] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [sym_cmd_identifier] = ACTIONS(1903), + [anon_sym_LF] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_def_DASHenv] = ACTIONS(1903), + [anon_sym_export_DASHenv] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_error] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_source] = ACTIONS(1903), + [anon_sym_source_DASHenv] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_hide] = ACTIONS(1903), + [anon_sym_hide_DASHenv] = ACTIONS(1903), + [anon_sym_overlay] = ACTIONS(1903), + [anon_sym_where] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [sym_val_nothing] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym_val_number_token1] = ACTIONS(1903), + [aux_sym_val_number_token2] = ACTIONS(1903), + [aux_sym_val_number_token3] = ACTIONS(1903), + [aux_sym_val_number_token4] = ACTIONS(1903), + [aux_sym_val_number_token5] = ACTIONS(1903), + [anon_sym_inf] = ACTIONS(1903), + [anon_sym_DASHinf] = ACTIONS(1903), + [anon_sym_NaN] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1903), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0x] = ACTIONS(1903), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), [anon_sym_POUND] = ACTIONS(3), }, [582] = { [sym_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(779), - [anon_sym_export] = ACTIONS(777), - [anon_sym_alias] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_let_DASHenv] = ACTIONS(777), - [anon_sym_mut] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(777), - [sym_cmd_identifier] = ACTIONS(777), - [anon_sym_LF] = ACTIONS(779), - [anon_sym_def] = ACTIONS(777), - [anon_sym_def_DASHenv] = ACTIONS(777), - [anon_sym_export_DASHenv] = ACTIONS(777), - [anon_sym_extern] = ACTIONS(777), - [anon_sym_module] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_LBRACK] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_error] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [anon_sym_do] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_try] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_source] = ACTIONS(777), - [anon_sym_source_DASHenv] = ACTIONS(777), - [anon_sym_register] = ACTIONS(777), - [anon_sym_hide] = ACTIONS(777), - [anon_sym_hide_DASHenv] = ACTIONS(777), - [anon_sym_overlay] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_not] = ACTIONS(777), - [anon_sym_DOT_DOT_LT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_EQ] = ACTIONS(777), - [sym_val_nothing] = ACTIONS(777), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [aux_sym_val_number_token1] = ACTIONS(777), - [aux_sym_val_number_token2] = ACTIONS(777), - [aux_sym_val_number_token3] = ACTIONS(777), - [aux_sym_val_number_token4] = ACTIONS(777), - [aux_sym_val_number_token5] = ACTIONS(777), - [anon_sym_inf] = ACTIONS(777), - [anon_sym_DASHinf] = ACTIONS(777), - [anon_sym_NaN] = ACTIONS(777), - [anon_sym_0b] = ACTIONS(777), - [anon_sym_0o] = ACTIONS(777), - [anon_sym_0x] = ACTIONS(777), - [sym_val_date] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym__str_single_quotes] = ACTIONS(777), - [sym__str_back_ticks] = ACTIONS(777), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [sym_cmd_identifier] = ACTIONS(1907), + [anon_sym_LF] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_def_DASHenv] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_RPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_where] = ACTIONS(1907), + [anon_sym_not] = ACTIONS(1907), + [anon_sym_DOT_DOT_LT] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), + [sym_val_nothing] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_val_number_token1] = ACTIONS(1907), + [aux_sym_val_number_token2] = ACTIONS(1907), + [aux_sym_val_number_token3] = ACTIONS(1907), + [aux_sym_val_number_token4] = ACTIONS(1907), + [aux_sym_val_number_token5] = ACTIONS(1907), + [anon_sym_inf] = ACTIONS(1907), + [anon_sym_DASHinf] = ACTIONS(1907), + [anon_sym_NaN] = ACTIONS(1907), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1907), + [sym__str_single_quotes] = ACTIONS(1907), + [sym__str_back_ticks] = ACTIONS(1907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), [anon_sym_POUND] = ACTIONS(3), }, [583] = { [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_alias] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_let_DASHenv] = ACTIONS(1885), - [anon_sym_mut] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [sym_cmd_identifier] = ACTIONS(1885), - [anon_sym_LF] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1885), - [anon_sym_def_DASHenv] = ACTIONS(1885), - [anon_sym_export_DASHenv] = ACTIONS(1885), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_do] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_source] = ACTIONS(1885), - [anon_sym_source_DASHenv] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1885), - [anon_sym_hide] = ACTIONS(1885), - [anon_sym_hide_DASHenv] = ACTIONS(1885), - [anon_sym_overlay] = ACTIONS(1885), - [anon_sym_where] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [sym_val_nothing] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym_val_number_token1] = ACTIONS(1885), - [aux_sym_val_number_token2] = ACTIONS(1885), - [aux_sym_val_number_token3] = ACTIONS(1885), - [aux_sym_val_number_token4] = ACTIONS(1885), - [aux_sym_val_number_token5] = ACTIONS(1885), - [anon_sym_inf] = ACTIONS(1885), - [anon_sym_DASHinf] = ACTIONS(1885), - [anon_sym_NaN] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1885), - [anon_sym_0o] = ACTIONS(1885), - [anon_sym_0x] = ACTIONS(1885), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_alias] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_let_DASHenv] = ACTIONS(1911), + [anon_sym_mut] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [sym_cmd_identifier] = ACTIONS(1911), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_def_DASHenv] = ACTIONS(1911), + [anon_sym_export_DASHenv] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_source] = ACTIONS(1911), + [anon_sym_source_DASHenv] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_hide] = ACTIONS(1911), + [anon_sym_hide_DASHenv] = ACTIONS(1911), + [anon_sym_overlay] = ACTIONS(1911), + [anon_sym_where] = ACTIONS(1911), + [anon_sym_not] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [sym_val_nothing] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym_val_number_token1] = ACTIONS(1911), + [aux_sym_val_number_token2] = ACTIONS(1911), + [aux_sym_val_number_token3] = ACTIONS(1911), + [aux_sym_val_number_token4] = ACTIONS(1911), + [aux_sym_val_number_token5] = ACTIONS(1911), + [anon_sym_inf] = ACTIONS(1911), + [anon_sym_DASHinf] = ACTIONS(1911), + [anon_sym_NaN] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1911), + [anon_sym_0o] = ACTIONS(1911), + [anon_sym_0x] = ACTIONS(1911), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), [anon_sym_POUND] = ACTIONS(3), }, [584] = { + [sym_block] = STATE(663), [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [sym_cmd_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_def_DASHenv] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_RPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_where] = ACTIONS(1889), - [anon_sym_not] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [sym_val_nothing] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym_val_number_token1] = ACTIONS(1889), - [aux_sym_val_number_token2] = ACTIONS(1889), - [aux_sym_val_number_token3] = ACTIONS(1889), - [aux_sym_val_number_token4] = ACTIONS(1889), - [aux_sym_val_number_token5] = ACTIONS(1889), - [anon_sym_inf] = ACTIONS(1889), - [anon_sym_DASHinf] = ACTIONS(1889), - [anon_sym_NaN] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1889), - [anon_sym_0o] = ACTIONS(1889), - [anon_sym_0x] = ACTIONS(1889), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), + [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_def_DASHenv] = 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_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = 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(1915), + [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_where] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [sym_val_nothing] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1683), + [anon_sym_DASHinf] = ACTIONS(1683), + [anon_sym_NaN] = 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(3), }, [585] = { [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(895), - [anon_sym_alias] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_let_DASHenv] = ACTIONS(895), - [anon_sym_mut] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [sym_cmd_identifier] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_def] = ACTIONS(895), - [anon_sym_def_DASHenv] = ACTIONS(895), - [anon_sym_export_DASHenv] = ACTIONS(895), - [anon_sym_extern] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_use] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_RPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_loop] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_source] = ACTIONS(895), - [anon_sym_source_DASHenv] = ACTIONS(895), - [anon_sym_register] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_hide_DASHenv] = ACTIONS(895), - [anon_sym_overlay] = ACTIONS(895), - [anon_sym_where] = ACTIONS(895), - [anon_sym_not] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(895), + [anon_sym_export] = ACTIONS(931), + [anon_sym_alias] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_let_DASHenv] = ACTIONS(931), + [anon_sym_mut] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(931), + [sym_cmd_identifier] = ACTIONS(931), + [anon_sym_LF] = ACTIONS(933), + [anon_sym_def] = ACTIONS(931), + [anon_sym_def_DASHenv] = ACTIONS(931), + [anon_sym_export_DASHenv] = ACTIONS(931), + [anon_sym_extern] = ACTIONS(931), + [anon_sym_module] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_error] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_try] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_source] = ACTIONS(931), + [anon_sym_source_DASHenv] = ACTIONS(931), + [anon_sym_register] = ACTIONS(931), + [anon_sym_hide] = ACTIONS(931), + [anon_sym_hide_DASHenv] = ACTIONS(931), + [anon_sym_overlay] = ACTIONS(931), + [anon_sym_where] = ACTIONS(931), + [anon_sym_not] = ACTIONS(931), + [anon_sym_DOT_DOT_LT] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [sym_val_nothing] = ACTIONS(931), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [aux_sym_val_number_token1] = ACTIONS(931), + [aux_sym_val_number_token2] = ACTIONS(931), + [aux_sym_val_number_token3] = ACTIONS(931), + [aux_sym_val_number_token4] = ACTIONS(931), + [aux_sym_val_number_token5] = ACTIONS(931), + [anon_sym_inf] = ACTIONS(931), + [anon_sym_DASHinf] = ACTIONS(931), + [anon_sym_NaN] = ACTIONS(931), + [anon_sym_0b] = ACTIONS(931), + [anon_sym_0o] = ACTIONS(931), + [anon_sym_0x] = ACTIONS(931), + [sym_val_date] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(931), + [sym__str_single_quotes] = ACTIONS(931), + [sym__str_back_ticks] = ACTIONS(931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(3), }, [586] = { [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_alias] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_let_DASHenv] = ACTIONS(1893), - [anon_sym_mut] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [sym_cmd_identifier] = ACTIONS(1893), - [anon_sym_LF] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1893), - [anon_sym_def_DASHenv] = ACTIONS(1893), - [anon_sym_export_DASHenv] = ACTIONS(1893), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_RPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_source] = ACTIONS(1893), - [anon_sym_source_DASHenv] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1893), - [anon_sym_hide] = ACTIONS(1893), - [anon_sym_hide_DASHenv] = ACTIONS(1893), - [anon_sym_overlay] = ACTIONS(1893), - [anon_sym_where] = ACTIONS(1893), - [anon_sym_not] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [sym_val_nothing] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym_val_number_token1] = ACTIONS(1893), - [aux_sym_val_number_token2] = ACTIONS(1893), - [aux_sym_val_number_token3] = ACTIONS(1893), - [aux_sym_val_number_token4] = ACTIONS(1893), - [aux_sym_val_number_token5] = ACTIONS(1893), - [anon_sym_inf] = ACTIONS(1893), - [anon_sym_DASHinf] = ACTIONS(1893), - [anon_sym_NaN] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1893), - [anon_sym_0o] = ACTIONS(1893), - [anon_sym_0x] = ACTIONS(1893), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [sym_cmd_identifier] = ACTIONS(1917), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_def_DASHenv] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_where] = ACTIONS(1917), + [anon_sym_not] = ACTIONS(1917), + [anon_sym_DOT_DOT_LT] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), + [sym_val_nothing] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [aux_sym_val_number_token1] = ACTIONS(1917), + [aux_sym_val_number_token2] = ACTIONS(1917), + [aux_sym_val_number_token3] = ACTIONS(1917), + [aux_sym_val_number_token4] = ACTIONS(1917), + [aux_sym_val_number_token5] = ACTIONS(1917), + [anon_sym_inf] = ACTIONS(1917), + [anon_sym_DASHinf] = ACTIONS(1917), + [anon_sym_NaN] = ACTIONS(1917), + [anon_sym_0b] = ACTIONS(1917), + [anon_sym_0o] = ACTIONS(1917), + [anon_sym_0x] = ACTIONS(1917), + [sym_val_date] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_CARET] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), }, [587] = { [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [sym_cmd_identifier] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_def_DASHenv] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_RPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_where] = ACTIONS(1897), - [anon_sym_not] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [sym_val_nothing] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym_val_number_token1] = ACTIONS(1897), - [aux_sym_val_number_token2] = ACTIONS(1897), - [aux_sym_val_number_token3] = ACTIONS(1897), - [aux_sym_val_number_token4] = ACTIONS(1897), - [aux_sym_val_number_token5] = ACTIONS(1897), - [anon_sym_inf] = ACTIONS(1897), - [anon_sym_DASHinf] = ACTIONS(1897), - [anon_sym_NaN] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1897), - [anon_sym_0o] = ACTIONS(1897), - [anon_sym_0x] = ACTIONS(1897), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - }, - [588] = { - [sym_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(783), - [anon_sym_export] = ACTIONS(781), - [anon_sym_alias] = ACTIONS(781), - [anon_sym_let] = ACTIONS(781), - [anon_sym_let_DASHenv] = ACTIONS(781), - [anon_sym_mut] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(781), - [sym_cmd_identifier] = ACTIONS(781), - [anon_sym_LF] = ACTIONS(783), - [anon_sym_def] = ACTIONS(781), - [anon_sym_def_DASHenv] = ACTIONS(781), - [anon_sym_export_DASHenv] = ACTIONS(781), - [anon_sym_extern] = ACTIONS(781), - [anon_sym_module] = ACTIONS(781), - [anon_sym_use] = ACTIONS(781), - [anon_sym_LBRACK] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_error] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_loop] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [anon_sym_do] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_match] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_try] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_source] = ACTIONS(781), - [anon_sym_source_DASHenv] = ACTIONS(781), - [anon_sym_register] = ACTIONS(781), - [anon_sym_hide] = ACTIONS(781), - [anon_sym_hide_DASHenv] = ACTIONS(781), - [anon_sym_overlay] = ACTIONS(781), - [anon_sym_where] = ACTIONS(781), - [anon_sym_not] = ACTIONS(781), - [anon_sym_DOT_DOT_LT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(781), - [sym_val_nothing] = ACTIONS(781), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [aux_sym_val_number_token1] = ACTIONS(781), - [aux_sym_val_number_token2] = ACTIONS(781), - [aux_sym_val_number_token3] = ACTIONS(781), - [aux_sym_val_number_token4] = ACTIONS(781), - [aux_sym_val_number_token5] = ACTIONS(781), - [anon_sym_inf] = ACTIONS(781), - [anon_sym_DASHinf] = ACTIONS(781), - [anon_sym_NaN] = ACTIONS(781), - [anon_sym_0b] = ACTIONS(781), - [anon_sym_0o] = ACTIONS(781), - [anon_sym_0x] = ACTIONS(781), - [sym_val_date] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(781), - [sym__str_single_quotes] = ACTIONS(781), - [sym__str_back_ticks] = ACTIONS(781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_POUND] = ACTIONS(3), - }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [sym_cmd_identifier] = ACTIONS(1901), - [anon_sym_LF] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_def_DASHenv] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_RPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_where] = ACTIONS(1901), - [anon_sym_not] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [sym_val_nothing] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [aux_sym_val_number_token1] = ACTIONS(1901), - [aux_sym_val_number_token2] = ACTIONS(1901), - [aux_sym_val_number_token3] = ACTIONS(1901), - [aux_sym_val_number_token4] = ACTIONS(1901), - [aux_sym_val_number_token5] = ACTIONS(1901), - [anon_sym_inf] = ACTIONS(1901), - [anon_sym_DASHinf] = ACTIONS(1901), - [anon_sym_NaN] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1901), - [anon_sym_0o] = ACTIONS(1901), - [anon_sym_0x] = ACTIONS(1901), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(3), - }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_cmd_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_def_DASHenv] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_not] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [sym_val_nothing] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [aux_sym_val_number_token1] = ACTIONS(1905), - [aux_sym_val_number_token2] = ACTIONS(1905), - [aux_sym_val_number_token3] = ACTIONS(1905), - [aux_sym_val_number_token4] = ACTIONS(1905), - [aux_sym_val_number_token5] = ACTIONS(1905), - [anon_sym_inf] = ACTIONS(1905), - [anon_sym_DASHinf] = ACTIONS(1905), - [anon_sym_NaN] = ACTIONS(1905), - [anon_sym_0b] = ACTIONS(1905), - [anon_sym_0o] = ACTIONS(1905), - [anon_sym_0x] = ACTIONS(1905), - [sym_val_date] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(3), - }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [sym_cmd_identifier] = ACTIONS(1909), - [anon_sym_LF] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_def_DASHenv] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_RPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_where] = ACTIONS(1909), - [anon_sym_not] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [sym_val_nothing] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [aux_sym_val_number_token1] = ACTIONS(1909), - [aux_sym_val_number_token2] = ACTIONS(1909), - [aux_sym_val_number_token3] = ACTIONS(1909), - [aux_sym_val_number_token4] = ACTIONS(1909), - [aux_sym_val_number_token5] = ACTIONS(1909), - [anon_sym_inf] = ACTIONS(1909), - [anon_sym_DASHinf] = ACTIONS(1909), - [anon_sym_NaN] = ACTIONS(1909), - [anon_sym_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [sym_cmd_identifier] = ACTIONS(1913), - [anon_sym_LF] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_def_DASHenv] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_RPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_where] = ACTIONS(1913), - [anon_sym_not] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [sym_val_nothing] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [aux_sym_val_number_token1] = ACTIONS(1913), - [aux_sym_val_number_token2] = ACTIONS(1913), - [aux_sym_val_number_token3] = ACTIONS(1913), - [aux_sym_val_number_token4] = ACTIONS(1913), - [aux_sym_val_number_token5] = ACTIONS(1913), - [anon_sym_inf] = ACTIONS(1913), - [anon_sym_DASHinf] = ACTIONS(1913), - [anon_sym_NaN] = ACTIONS(1913), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), - }, - [593] = { - [sym_comment] = STATE(593), [anon_sym_export] = ACTIONS(1917), [anon_sym_alias] = ACTIONS(1917), [anon_sym_let] = ACTIONS(1917), @@ -93717,215 +93380,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1917), [anon_sym_POUND] = ACTIONS(3), }, - [594] = { - [sym_block] = STATE(647), - [sym_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(1703), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_alias] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_let_DASHenv] = ACTIONS(1701), - [anon_sym_mut] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_cmd_identifier] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_def_DASHenv] = ACTIONS(1701), - [anon_sym_export_DASHenv] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_error] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_source] = ACTIONS(1701), - [anon_sym_source_DASHenv] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_hide_DASHenv] = ACTIONS(1701), - [anon_sym_overlay] = ACTIONS(1701), - [anon_sym_where] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1701), - [anon_sym_DOT_DOT_LT] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), - [sym_val_nothing] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [aux_sym_val_number_token1] = ACTIONS(1701), - [aux_sym_val_number_token2] = ACTIONS(1701), - [aux_sym_val_number_token3] = ACTIONS(1701), - [aux_sym_val_number_token4] = ACTIONS(1701), - [aux_sym_val_number_token5] = ACTIONS(1701), - [anon_sym_inf] = ACTIONS(1701), - [anon_sym_DASHinf] = ACTIONS(1701), - [anon_sym_NaN] = ACTIONS(1701), - [anon_sym_0b] = ACTIONS(1701), - [anon_sym_0o] = ACTIONS(1701), - [anon_sym_0x] = ACTIONS(1701), - [sym_val_date] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym__str_single_quotes] = ACTIONS(1701), - [sym__str_back_ticks] = ACTIONS(1701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - }, - [595] = { - [sym_block] = STATE(646), - [sym_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(1703), - [anon_sym_export] = ACTIONS(1701), - [anon_sym_alias] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_let_DASHenv] = ACTIONS(1701), - [anon_sym_mut] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1701), - [sym_cmd_identifier] = ACTIONS(1701), - [anon_sym_LF] = ACTIONS(1703), - [anon_sym_def] = ACTIONS(1701), - [anon_sym_def_DASHenv] = ACTIONS(1701), - [anon_sym_export_DASHenv] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_module] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1701), - [anon_sym_DOLLAR] = ACTIONS(1701), - [anon_sym_error] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_do] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_source] = ACTIONS(1701), - [anon_sym_source_DASHenv] = ACTIONS(1701), - [anon_sym_register] = ACTIONS(1701), - [anon_sym_hide] = ACTIONS(1701), - [anon_sym_hide_DASHenv] = ACTIONS(1701), - [anon_sym_overlay] = ACTIONS(1701), - [anon_sym_where] = ACTIONS(1701), - [anon_sym_not] = ACTIONS(1701), - [anon_sym_DOT_DOT_LT] = ACTIONS(1701), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), - [sym_val_nothing] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [aux_sym_val_number_token1] = ACTIONS(1701), - [aux_sym_val_number_token2] = ACTIONS(1701), - [aux_sym_val_number_token3] = ACTIONS(1701), - [aux_sym_val_number_token4] = ACTIONS(1701), - [aux_sym_val_number_token5] = ACTIONS(1701), - [anon_sym_inf] = ACTIONS(1701), - [anon_sym_DASHinf] = ACTIONS(1701), - [anon_sym_NaN] = ACTIONS(1701), - [anon_sym_0b] = ACTIONS(1701), - [anon_sym_0o] = ACTIONS(1701), - [anon_sym_0x] = ACTIONS(1701), - [sym_val_date] = ACTIONS(1701), - [anon_sym_DQUOTE] = ACTIONS(1701), - [sym__str_single_quotes] = ACTIONS(1701), - [sym__str_back_ticks] = ACTIONS(1701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1701), - [anon_sym_POUND] = ACTIONS(3), - }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [sym_cmd_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_def_DASHenv] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(1921), - [anon_sym_not] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [sym_val_nothing] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [aux_sym_val_number_token1] = ACTIONS(1921), - [aux_sym_val_number_token2] = ACTIONS(1921), - [aux_sym_val_number_token3] = ACTIONS(1921), - [aux_sym_val_number_token4] = ACTIONS(1921), - [aux_sym_val_number_token5] = ACTIONS(1921), - [anon_sym_inf] = ACTIONS(1921), - [anon_sym_DASHinf] = ACTIONS(1921), - [anon_sym_NaN] = ACTIONS(1921), - [anon_sym_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), + [588] = { + [sym_block] = STATE(661), + [sym_comment] = STATE(588), + [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_def_DASHenv] = 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_DASH] = ACTIONS(1683), + [anon_sym_break] = ACTIONS(1683), + [anon_sym_continue] = ACTIONS(1683), + [anon_sym_for] = 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(1915), + [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_where] = ACTIONS(1683), + [anon_sym_not] = ACTIONS(1683), + [anon_sym_DOT_DOT_LT] = ACTIONS(1683), + [anon_sym_DOT_DOT] = ACTIONS(1683), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1683), + [sym_val_nothing] = ACTIONS(1683), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1683), + [anon_sym_DASHinf] = ACTIONS(1683), + [anon_sym_NaN] = 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(3), }, - [597] = { - [sym_comment] = STATE(597), + [589] = { + [sym_comment] = STATE(589), [anon_sym_export] = ACTIONS(1921), [anon_sym_alias] = ACTIONS(1921), [anon_sym_let] = ACTIONS(1921), @@ -93993,8 +93518,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1921), [anon_sym_POUND] = ACTIONS(3), }, - [598] = { - [sym_comment] = STATE(598), + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(865), + [anon_sym_alias] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_let_DASHenv] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [sym_cmd_identifier] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_def] = ACTIONS(865), + [anon_sym_def_DASHenv] = ACTIONS(865), + [anon_sym_export_DASHenv] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(865), + [anon_sym_module] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_RPAREN] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_error] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_loop] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_source] = ACTIONS(865), + [anon_sym_source_DASHenv] = ACTIONS(865), + [anon_sym_register] = ACTIONS(865), + [anon_sym_hide] = ACTIONS(865), + [anon_sym_hide_DASHenv] = ACTIONS(865), + [anon_sym_overlay] = ACTIONS(865), + [anon_sym_where] = ACTIONS(865), + [anon_sym_not] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), + [anon_sym_POUND] = ACTIONS(3), + }, + [591] = { + [sym_comment] = STATE(591), [anon_sym_export] = ACTIONS(1925), [anon_sym_alias] = ACTIONS(1925), [anon_sym_let] = ACTIONS(1925), @@ -94062,8 +93656,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1925), [anon_sym_POUND] = ACTIONS(3), }, - [599] = { - [sym_comment] = STATE(599), + [592] = { + [sym_comment] = STATE(592), [anon_sym_export] = ACTIONS(1929), [anon_sym_alias] = ACTIONS(1929), [anon_sym_let] = ACTIONS(1929), @@ -94131,77 +93725,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1929), [anon_sym_POUND] = ACTIONS(3), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [sym_cmd_identifier] = ACTIONS(1933), - [anon_sym_LF] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_def_DASHenv] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_RPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_where] = ACTIONS(1933), - [anon_sym_not] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [sym_val_nothing] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [aux_sym_val_number_token1] = ACTIONS(1933), - [aux_sym_val_number_token2] = ACTIONS(1933), - [aux_sym_val_number_token3] = ACTIONS(1933), - [aux_sym_val_number_token4] = ACTIONS(1933), - [aux_sym_val_number_token5] = ACTIONS(1933), - [anon_sym_inf] = ACTIONS(1933), - [anon_sym_DASHinf] = ACTIONS(1933), - [anon_sym_NaN] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1933), + [593] = { + [sym_block] = STATE(654), + [sym_comment] = STATE(593), + [ts_builtin_sym_end] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [sym_cmd_identifier] = ACTIONS(1689), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_def_DASHenv] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_where] = ACTIONS(1689), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [sym_val_nothing] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [aux_sym_val_number_token1] = ACTIONS(1689), + [aux_sym_val_number_token2] = ACTIONS(1689), + [aux_sym_val_number_token3] = ACTIONS(1689), + [aux_sym_val_number_token4] = ACTIONS(1689), + [aux_sym_val_number_token5] = ACTIONS(1689), + [anon_sym_inf] = ACTIONS(1689), + [anon_sym_DASHinf] = ACTIONS(1689), + [anon_sym_NaN] = ACTIONS(1689), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1689), [anon_sym_POUND] = ACTIONS(3), }, - [601] = { - [sym_comment] = STATE(601), + [594] = { + [sym_block] = STATE(653), + [sym_comment] = STATE(594), + [ts_builtin_sym_end] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1689), + [anon_sym_alias] = ACTIONS(1689), + [anon_sym_let] = ACTIONS(1689), + [anon_sym_let_DASHenv] = ACTIONS(1689), + [anon_sym_mut] = ACTIONS(1689), + [anon_sym_const] = ACTIONS(1689), + [anon_sym_SEMI] = ACTIONS(1689), + [sym_cmd_identifier] = ACTIONS(1689), + [anon_sym_LF] = ACTIONS(1691), + [anon_sym_def] = ACTIONS(1689), + [anon_sym_def_DASHenv] = ACTIONS(1689), + [anon_sym_export_DASHenv] = ACTIONS(1689), + [anon_sym_extern] = ACTIONS(1689), + [anon_sym_module] = ACTIONS(1689), + [anon_sym_use] = ACTIONS(1689), + [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_LPAREN] = ACTIONS(1689), + [anon_sym_DOLLAR] = ACTIONS(1689), + [anon_sym_error] = ACTIONS(1689), + [anon_sym_DASH] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1689), + [anon_sym_continue] = ACTIONS(1689), + [anon_sym_for] = ACTIONS(1689), + [anon_sym_loop] = ACTIONS(1689), + [anon_sym_while] = ACTIONS(1689), + [anon_sym_do] = ACTIONS(1689), + [anon_sym_if] = ACTIONS(1689), + [anon_sym_match] = ACTIONS(1689), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_try] = ACTIONS(1689), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_source] = ACTIONS(1689), + [anon_sym_source_DASHenv] = ACTIONS(1689), + [anon_sym_register] = ACTIONS(1689), + [anon_sym_hide] = ACTIONS(1689), + [anon_sym_hide_DASHenv] = ACTIONS(1689), + [anon_sym_overlay] = ACTIONS(1689), + [anon_sym_where] = ACTIONS(1689), + [anon_sym_not] = ACTIONS(1689), + [anon_sym_DOT_DOT_LT] = ACTIONS(1689), + [anon_sym_DOT_DOT] = ACTIONS(1689), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1689), + [sym_val_nothing] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1689), + [anon_sym_false] = ACTIONS(1689), + [aux_sym_val_number_token1] = ACTIONS(1689), + [aux_sym_val_number_token2] = ACTIONS(1689), + [aux_sym_val_number_token3] = ACTIONS(1689), + [aux_sym_val_number_token4] = ACTIONS(1689), + [aux_sym_val_number_token5] = ACTIONS(1689), + [anon_sym_inf] = ACTIONS(1689), + [anon_sym_DASHinf] = ACTIONS(1689), + [anon_sym_NaN] = ACTIONS(1689), + [anon_sym_0b] = ACTIONS(1689), + [anon_sym_0o] = ACTIONS(1689), + [anon_sym_0x] = ACTIONS(1689), + [sym_val_date] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1689), + [sym__str_single_quotes] = ACTIONS(1689), + [sym__str_back_ticks] = ACTIONS(1689), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1689), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1689), + [anon_sym_CARET] = ACTIONS(1689), + [anon_sym_POUND] = ACTIONS(3), + }, + [595] = { + [sym_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(789), + [anon_sym_export] = ACTIONS(787), + [anon_sym_alias] = ACTIONS(787), + [anon_sym_let] = ACTIONS(787), + [anon_sym_let_DASHenv] = ACTIONS(787), + [anon_sym_mut] = ACTIONS(787), + [anon_sym_const] = ACTIONS(787), + [anon_sym_SEMI] = ACTIONS(787), + [sym_cmd_identifier] = ACTIONS(787), + [anon_sym_LF] = ACTIONS(789), + [anon_sym_def] = ACTIONS(787), + [anon_sym_def_DASHenv] = ACTIONS(787), + [anon_sym_export_DASHenv] = ACTIONS(787), + [anon_sym_extern] = ACTIONS(787), + [anon_sym_module] = ACTIONS(787), + [anon_sym_use] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_DOLLAR] = ACTIONS(787), + [anon_sym_error] = ACTIONS(787), + [anon_sym_DASH] = ACTIONS(787), + [anon_sym_break] = ACTIONS(787), + [anon_sym_continue] = ACTIONS(787), + [anon_sym_for] = ACTIONS(787), + [anon_sym_loop] = ACTIONS(787), + [anon_sym_while] = ACTIONS(787), + [anon_sym_do] = ACTIONS(787), + [anon_sym_if] = ACTIONS(787), + [anon_sym_match] = ACTIONS(787), + [anon_sym_LBRACE] = ACTIONS(787), + [anon_sym_DOT] = ACTIONS(787), + [anon_sym_try] = ACTIONS(787), + [anon_sym_return] = ACTIONS(787), + [anon_sym_source] = ACTIONS(787), + [anon_sym_source_DASHenv] = ACTIONS(787), + [anon_sym_register] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(787), + [anon_sym_hide_DASHenv] = ACTIONS(787), + [anon_sym_overlay] = ACTIONS(787), + [anon_sym_where] = ACTIONS(787), + [anon_sym_not] = ACTIONS(787), + [anon_sym_DOT_DOT_LT] = ACTIONS(787), + [anon_sym_DOT_DOT] = ACTIONS(787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(787), + [sym_val_nothing] = ACTIONS(787), + [anon_sym_true] = ACTIONS(787), + [anon_sym_false] = ACTIONS(787), + [aux_sym_val_number_token1] = ACTIONS(787), + [aux_sym_val_number_token2] = ACTIONS(787), + [aux_sym_val_number_token3] = ACTIONS(787), + [aux_sym_val_number_token4] = ACTIONS(787), + [aux_sym_val_number_token5] = ACTIONS(787), + [anon_sym_inf] = ACTIONS(787), + [anon_sym_DASHinf] = ACTIONS(787), + [anon_sym_NaN] = ACTIONS(787), + [anon_sym_0b] = ACTIONS(787), + [anon_sym_0o] = ACTIONS(787), + [anon_sym_0x] = ACTIONS(787), + [sym_val_date] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(787), + [sym__str_single_quotes] = ACTIONS(787), + [sym__str_back_ticks] = ACTIONS(787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(787), + [anon_sym_CARET] = ACTIONS(787), + [anon_sym_POUND] = ACTIONS(3), + }, + [596] = { + [sym_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(799), + [anon_sym_export] = ACTIONS(797), + [anon_sym_alias] = ACTIONS(797), + [anon_sym_let] = ACTIONS(797), + [anon_sym_let_DASHenv] = ACTIONS(797), + [anon_sym_mut] = ACTIONS(797), + [anon_sym_const] = ACTIONS(797), + [anon_sym_SEMI] = ACTIONS(797), + [sym_cmd_identifier] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(799), + [anon_sym_def] = ACTIONS(797), + [anon_sym_def_DASHenv] = ACTIONS(797), + [anon_sym_export_DASHenv] = ACTIONS(797), + [anon_sym_extern] = ACTIONS(797), + [anon_sym_module] = ACTIONS(797), + [anon_sym_use] = ACTIONS(797), + [anon_sym_LBRACK] = ACTIONS(797), + [anon_sym_LPAREN] = ACTIONS(797), + [anon_sym_DOLLAR] = ACTIONS(797), + [anon_sym_error] = ACTIONS(797), + [anon_sym_DASH] = ACTIONS(797), + [anon_sym_break] = ACTIONS(797), + [anon_sym_continue] = ACTIONS(797), + [anon_sym_for] = ACTIONS(797), + [anon_sym_loop] = ACTIONS(797), + [anon_sym_while] = ACTIONS(797), + [anon_sym_do] = ACTIONS(797), + [anon_sym_if] = ACTIONS(797), + [anon_sym_match] = ACTIONS(797), + [anon_sym_LBRACE] = ACTIONS(797), + [anon_sym_DOT] = ACTIONS(797), + [anon_sym_try] = ACTIONS(797), + [anon_sym_return] = ACTIONS(797), + [anon_sym_source] = ACTIONS(797), + [anon_sym_source_DASHenv] = ACTIONS(797), + [anon_sym_register] = ACTIONS(797), + [anon_sym_hide] = ACTIONS(797), + [anon_sym_hide_DASHenv] = ACTIONS(797), + [anon_sym_overlay] = ACTIONS(797), + [anon_sym_where] = ACTIONS(797), + [anon_sym_not] = ACTIONS(797), + [anon_sym_DOT_DOT_LT] = ACTIONS(797), + [anon_sym_DOT_DOT] = ACTIONS(797), + [anon_sym_DOT_DOT_EQ] = ACTIONS(797), + [sym_val_nothing] = ACTIONS(797), + [anon_sym_true] = ACTIONS(797), + [anon_sym_false] = ACTIONS(797), + [aux_sym_val_number_token1] = ACTIONS(797), + [aux_sym_val_number_token2] = ACTIONS(797), + [aux_sym_val_number_token3] = ACTIONS(797), + [aux_sym_val_number_token4] = ACTIONS(797), + [aux_sym_val_number_token5] = ACTIONS(797), + [anon_sym_inf] = ACTIONS(797), + [anon_sym_DASHinf] = ACTIONS(797), + [anon_sym_NaN] = ACTIONS(797), + [anon_sym_0b] = ACTIONS(797), + [anon_sym_0o] = ACTIONS(797), + [anon_sym_0x] = ACTIONS(797), + [sym_val_date] = ACTIONS(797), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__str_single_quotes] = ACTIONS(797), + [sym__str_back_ticks] = ACTIONS(797), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(797), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(797), + [anon_sym_CARET] = ACTIONS(797), + [anon_sym_POUND] = ACTIONS(3), + }, + [597] = { + [sym_comment] = STATE(597), [anon_sym_export] = ACTIONS(1933), [anon_sym_alias] = ACTIONS(1933), [anon_sym_let] = ACTIONS(1933), @@ -94269,8 +94070,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1933), [anon_sym_POUND] = ACTIONS(3), }, - [602] = { - [sym_comment] = STATE(602), + [598] = { + [sym_comment] = STATE(598), [anon_sym_export] = ACTIONS(1937), [anon_sym_alias] = ACTIONS(1937), [anon_sym_let] = ACTIONS(1937), @@ -94338,8 +94139,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1937), [anon_sym_POUND] = ACTIONS(3), }, - [603] = { - [sym_comment] = STATE(603), + [599] = { + [sym_comment] = STATE(599), [anon_sym_export] = ACTIONS(1941), [anon_sym_alias] = ACTIONS(1941), [anon_sym_let] = ACTIONS(1941), @@ -94407,17 +94208,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1941), [anon_sym_POUND] = ACTIONS(3), }, - [604] = { - [sym_comment] = STATE(604), + [600] = { + [sym__terminator] = STATE(541), + [sym_comment] = STATE(600), + [aux_sym__block_body_repeat1] = STATE(603), [anon_sym_export] = ACTIONS(1945), [anon_sym_alias] = ACTIONS(1945), [anon_sym_let] = ACTIONS(1945), [anon_sym_let_DASHenv] = ACTIONS(1945), [anon_sym_mut] = ACTIONS(1945), [anon_sym_const] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), + [anon_sym_SEMI] = ACTIONS(1745), [sym_cmd_identifier] = ACTIONS(1945), - [anon_sym_LF] = ACTIONS(1947), + [anon_sym_LF] = ACTIONS(1747), [anon_sym_def] = ACTIONS(1945), [anon_sym_def_DASHenv] = ACTIONS(1945), [anon_sym_export_DASHenv] = ACTIONS(1945), @@ -94426,7 +94229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1945), [anon_sym_LBRACK] = ACTIONS(1945), [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_RPAREN] = ACTIONS(1945), [anon_sym_DOLLAR] = ACTIONS(1945), [anon_sym_error] = ACTIONS(1945), [anon_sym_DASH] = ACTIONS(1945), @@ -94439,7 +94241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1945), [anon_sym_match] = ACTIONS(1945), [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), [anon_sym_try] = ACTIONS(1945), [anon_sym_return] = ACTIONS(1945), [anon_sym_source] = ACTIONS(1945), @@ -94476,146 +94277,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1945), [anon_sym_POUND] = ACTIONS(3), }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1949), - [sym_cmd_identifier] = ACTIONS(1949), - [anon_sym_LF] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_def_DASHenv] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_RPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_where] = ACTIONS(1949), - [anon_sym_not] = ACTIONS(1949), - [anon_sym_DOT_DOT_LT] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), - [sym_val_nothing] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [aux_sym_val_number_token1] = ACTIONS(1949), - [aux_sym_val_number_token2] = ACTIONS(1949), - [aux_sym_val_number_token3] = ACTIONS(1949), - [aux_sym_val_number_token4] = ACTIONS(1949), - [aux_sym_val_number_token5] = ACTIONS(1949), - [anon_sym_inf] = ACTIONS(1949), - [anon_sym_DASHinf] = ACTIONS(1949), - [anon_sym_NaN] = ACTIONS(1949), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), - [anon_sym_CARET] = ACTIONS(1949), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [sym_cmd_identifier] = ACTIONS(1947), + [anon_sym_LF] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_def_DASHenv] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_RPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_where] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [sym_val_nothing] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_val_number_token1] = ACTIONS(1947), + [aux_sym_val_number_token2] = ACTIONS(1947), + [aux_sym_val_number_token3] = ACTIONS(1947), + [aux_sym_val_number_token4] = ACTIONS(1947), + [aux_sym_val_number_token5] = ACTIONS(1947), + [anon_sym_inf] = ACTIONS(1947), + [anon_sym_DASHinf] = ACTIONS(1947), + [anon_sym_NaN] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1947), + [anon_sym_0o] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1947), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), [anon_sym_POUND] = ACTIONS(3), }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [sym_cmd_identifier] = ACTIONS(1953), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_def_DASHenv] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_RPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_where] = ACTIONS(1953), - [anon_sym_not] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [sym_val_nothing] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [aux_sym_val_number_token1] = ACTIONS(1953), - [aux_sym_val_number_token2] = ACTIONS(1953), - [aux_sym_val_number_token3] = ACTIONS(1953), - [aux_sym_val_number_token4] = ACTIONS(1953), - [aux_sym_val_number_token5] = ACTIONS(1953), - [anon_sym_inf] = ACTIONS(1953), - [anon_sym_DASHinf] = ACTIONS(1953), - [anon_sym_NaN] = ACTIONS(1953), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1953), - [anon_sym_CARET] = ACTIONS(1953), + [602] = { + [sym_comment] = STATE(602), + [anon_sym_export] = ACTIONS(1951), + [anon_sym_alias] = ACTIONS(1951), + [anon_sym_let] = ACTIONS(1951), + [anon_sym_let_DASHenv] = ACTIONS(1951), + [anon_sym_mut] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [sym_cmd_identifier] = ACTIONS(1951), + [anon_sym_LF] = ACTIONS(1953), + [anon_sym_def] = ACTIONS(1951), + [anon_sym_def_DASHenv] = ACTIONS(1951), + [anon_sym_export_DASHenv] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym_module] = ACTIONS(1951), + [anon_sym_use] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_loop] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_do] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_source] = ACTIONS(1951), + [anon_sym_source_DASHenv] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_hide] = ACTIONS(1951), + [anon_sym_hide_DASHenv] = ACTIONS(1951), + [anon_sym_overlay] = ACTIONS(1951), + [anon_sym_where] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [sym_val_nothing] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym_val_number_token1] = ACTIONS(1951), + [aux_sym_val_number_token2] = ACTIONS(1951), + [aux_sym_val_number_token3] = ACTIONS(1951), + [aux_sym_val_number_token4] = ACTIONS(1951), + [aux_sym_val_number_token5] = ACTIONS(1951), + [anon_sym_inf] = ACTIONS(1951), + [anon_sym_DASHinf] = ACTIONS(1951), + [anon_sym_NaN] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1951), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0x] = ACTIONS(1951), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), }, - [607] = { - [sym_comment] = STATE(607), + [603] = { + [sym__terminator] = STATE(541), + [sym_comment] = STATE(603), + [aux_sym__block_body_repeat1] = STATE(481), + [anon_sym_export] = ACTIONS(1955), + [anon_sym_alias] = ACTIONS(1955), + [anon_sym_let] = ACTIONS(1955), + [anon_sym_let_DASHenv] = ACTIONS(1955), + [anon_sym_mut] = ACTIONS(1955), + [anon_sym_const] = ACTIONS(1955), + [anon_sym_SEMI] = ACTIONS(1745), + [sym_cmd_identifier] = ACTIONS(1955), + [anon_sym_LF] = ACTIONS(1747), + [anon_sym_def] = ACTIONS(1955), + [anon_sym_def_DASHenv] = ACTIONS(1955), + [anon_sym_export_DASHenv] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1955), + [anon_sym_module] = ACTIONS(1955), + [anon_sym_use] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_DOLLAR] = ACTIONS(1955), + [anon_sym_error] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_loop] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_do] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_match] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_try] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_source] = ACTIONS(1955), + [anon_sym_source_DASHenv] = ACTIONS(1955), + [anon_sym_register] = ACTIONS(1955), + [anon_sym_hide] = ACTIONS(1955), + [anon_sym_hide_DASHenv] = ACTIONS(1955), + [anon_sym_overlay] = ACTIONS(1955), + [anon_sym_where] = ACTIONS(1955), + [anon_sym_not] = ACTIONS(1955), + [anon_sym_DOT_DOT_LT] = ACTIONS(1955), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), + [sym_val_nothing] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym_val_number_token1] = ACTIONS(1955), + [aux_sym_val_number_token2] = ACTIONS(1955), + [aux_sym_val_number_token3] = ACTIONS(1955), + [aux_sym_val_number_token4] = ACTIONS(1955), + [aux_sym_val_number_token5] = ACTIONS(1955), + [anon_sym_inf] = ACTIONS(1955), + [anon_sym_DASHinf] = ACTIONS(1955), + [anon_sym_NaN] = ACTIONS(1955), + [anon_sym_0b] = ACTIONS(1955), + [anon_sym_0o] = ACTIONS(1955), + [anon_sym_0x] = ACTIONS(1955), + [sym_val_date] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1955), + [sym__str_single_quotes] = ACTIONS(1955), + [sym__str_back_ticks] = ACTIONS(1955), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(3), + }, + [604] = { + [sym_comment] = STATE(604), [anon_sym_export] = ACTIONS(1957), [anon_sym_alias] = ACTIONS(1957), [anon_sym_let] = ACTIONS(1957), @@ -94683,77 +94553,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1957), [anon_sym_POUND] = ACTIONS(3), }, - [608] = { - [sym_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(867), - [anon_sym_export] = ACTIONS(865), - [anon_sym_alias] = ACTIONS(865), - [anon_sym_let] = ACTIONS(865), - [anon_sym_let_DASHenv] = ACTIONS(865), - [anon_sym_mut] = ACTIONS(865), - [anon_sym_const] = ACTIONS(865), - [anon_sym_SEMI] = ACTIONS(865), - [sym_cmd_identifier] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_def] = ACTIONS(865), - [anon_sym_def_DASHenv] = ACTIONS(865), - [anon_sym_export_DASHenv] = ACTIONS(865), - [anon_sym_extern] = ACTIONS(865), - [anon_sym_module] = ACTIONS(865), - [anon_sym_use] = ACTIONS(865), - [anon_sym_LBRACK] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_DOLLAR] = ACTIONS(865), - [anon_sym_error] = ACTIONS(865), - [anon_sym_DASH] = ACTIONS(865), - [anon_sym_break] = ACTIONS(865), - [anon_sym_continue] = ACTIONS(865), - [anon_sym_for] = ACTIONS(865), - [anon_sym_loop] = ACTIONS(865), - [anon_sym_while] = ACTIONS(865), - [anon_sym_do] = ACTIONS(865), - [anon_sym_if] = ACTIONS(865), - [anon_sym_match] = ACTIONS(865), - [anon_sym_LBRACE] = ACTIONS(865), - [anon_sym_try] = ACTIONS(865), - [anon_sym_return] = ACTIONS(865), - [anon_sym_source] = ACTIONS(865), - [anon_sym_source_DASHenv] = ACTIONS(865), - [anon_sym_register] = ACTIONS(865), - [anon_sym_hide] = ACTIONS(865), - [anon_sym_hide_DASHenv] = ACTIONS(865), - [anon_sym_overlay] = ACTIONS(865), - [anon_sym_STAR] = ACTIONS(865), - [anon_sym_where] = ACTIONS(865), - [anon_sym_not] = ACTIONS(865), - [anon_sym_DOT_DOT_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(865), - [sym_val_nothing] = ACTIONS(865), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [aux_sym_val_number_token1] = ACTIONS(865), - [aux_sym_val_number_token2] = ACTIONS(865), - [aux_sym_val_number_token3] = ACTIONS(865), - [aux_sym_val_number_token4] = ACTIONS(865), - [aux_sym_val_number_token5] = ACTIONS(865), - [anon_sym_inf] = ACTIONS(865), - [anon_sym_DASHinf] = ACTIONS(865), - [anon_sym_NaN] = ACTIONS(865), - [anon_sym_0b] = ACTIONS(865), - [anon_sym_0o] = ACTIONS(865), - [anon_sym_0x] = ACTIONS(865), - [sym_val_date] = ACTIONS(865), - [anon_sym_DQUOTE] = ACTIONS(865), - [sym__str_single_quotes] = ACTIONS(865), - [sym__str_back_ticks] = ACTIONS(865), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), - [anon_sym_CARET] = ACTIONS(865), + [605] = { + [sym_comment] = STATE(605), + [ts_builtin_sym_end] = ACTIONS(795), + [anon_sym_export] = ACTIONS(793), + [anon_sym_alias] = ACTIONS(793), + [anon_sym_let] = ACTIONS(793), + [anon_sym_let_DASHenv] = ACTIONS(793), + [anon_sym_mut] = ACTIONS(793), + [anon_sym_const] = ACTIONS(793), + [anon_sym_SEMI] = ACTIONS(793), + [sym_cmd_identifier] = ACTIONS(793), + [anon_sym_LF] = ACTIONS(795), + [anon_sym_def] = ACTIONS(793), + [anon_sym_def_DASHenv] = ACTIONS(793), + [anon_sym_export_DASHenv] = ACTIONS(793), + [anon_sym_extern] = ACTIONS(793), + [anon_sym_module] = ACTIONS(793), + [anon_sym_use] = ACTIONS(793), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_LPAREN] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(793), + [anon_sym_error] = ACTIONS(793), + [anon_sym_DASH] = ACTIONS(793), + [anon_sym_break] = ACTIONS(793), + [anon_sym_continue] = ACTIONS(793), + [anon_sym_for] = ACTIONS(793), + [anon_sym_loop] = ACTIONS(793), + [anon_sym_while] = ACTIONS(793), + [anon_sym_do] = ACTIONS(793), + [anon_sym_if] = ACTIONS(793), + [anon_sym_match] = ACTIONS(793), + [anon_sym_LBRACE] = ACTIONS(793), + [anon_sym_DOT] = ACTIONS(793), + [anon_sym_try] = ACTIONS(793), + [anon_sym_return] = ACTIONS(793), + [anon_sym_source] = ACTIONS(793), + [anon_sym_source_DASHenv] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_hide] = ACTIONS(793), + [anon_sym_hide_DASHenv] = ACTIONS(793), + [anon_sym_overlay] = ACTIONS(793), + [anon_sym_where] = ACTIONS(793), + [anon_sym_not] = ACTIONS(793), + [anon_sym_DOT_DOT_LT] = ACTIONS(793), + [anon_sym_DOT_DOT] = ACTIONS(793), + [anon_sym_DOT_DOT_EQ] = ACTIONS(793), + [sym_val_nothing] = ACTIONS(793), + [anon_sym_true] = ACTIONS(793), + [anon_sym_false] = ACTIONS(793), + [aux_sym_val_number_token1] = ACTIONS(793), + [aux_sym_val_number_token2] = ACTIONS(793), + [aux_sym_val_number_token3] = ACTIONS(793), + [aux_sym_val_number_token4] = ACTIONS(793), + [aux_sym_val_number_token5] = ACTIONS(793), + [anon_sym_inf] = ACTIONS(793), + [anon_sym_DASHinf] = ACTIONS(793), + [anon_sym_NaN] = ACTIONS(793), + [anon_sym_0b] = ACTIONS(793), + [anon_sym_0o] = ACTIONS(793), + [anon_sym_0x] = ACTIONS(793), + [sym_val_date] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(793), + [sym__str_single_quotes] = ACTIONS(793), + [sym__str_back_ticks] = ACTIONS(793), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(793), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(793), + [anon_sym_CARET] = ACTIONS(793), [anon_sym_POUND] = ACTIONS(3), }, - [609] = { - [sym_comment] = STATE(609), + [606] = { + [sym_comment] = STATE(606), + [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_def_DASHenv] = 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(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [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_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_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = 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(3), + }, + [607] = { + [sym_comment] = STATE(607), [anon_sym_export] = ACTIONS(1961), [anon_sym_alias] = ACTIONS(1961), [anon_sym_let] = ACTIONS(1961), @@ -94821,8 +94760,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), }, - [610] = { - [sym_comment] = STATE(610), + [608] = { + [sym_comment] = STATE(608), [anon_sym_export] = ACTIONS(1961), [anon_sym_alias] = ACTIONS(1961), [anon_sym_let] = ACTIONS(1961), @@ -94890,17 +94829,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), }, - [611] = { - [sym_comment] = STATE(611), + [609] = { + [sym_comment] = STATE(609), [anon_sym_export] = ACTIONS(1965), [anon_sym_alias] = ACTIONS(1965), [anon_sym_let] = ACTIONS(1965), [anon_sym_let_DASHenv] = ACTIONS(1965), [anon_sym_mut] = ACTIONS(1965), [anon_sym_const] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), [sym_cmd_identifier] = ACTIONS(1965), - [anon_sym_LF] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1967), [anon_sym_def] = ACTIONS(1965), [anon_sym_def_DASHenv] = ACTIONS(1965), [anon_sym_export_DASHenv] = ACTIONS(1965), @@ -94909,7 +94848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1965), [anon_sym_LBRACK] = ACTIONS(1965), [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1965), [anon_sym_DOLLAR] = ACTIONS(1965), [anon_sym_error] = ACTIONS(1965), [anon_sym_DASH] = ACTIONS(1965), @@ -94922,7 +94861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1965), [anon_sym_match] = ACTIONS(1965), [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1965), [anon_sym_try] = ACTIONS(1965), [anon_sym_return] = ACTIONS(1965), [anon_sym_source] = ACTIONS(1965), @@ -94959,1112 +94898,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), }, + [610] = { + [sym_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(1703), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_SEMI] = ACTIONS(1701), + [sym_cmd_identifier] = ACTIONS(1701), + [anon_sym_LF] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_def_DASHenv] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LBRACK] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1701), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_where] = ACTIONS(1701), + [anon_sym_not] = ACTIONS(1701), + [anon_sym_DOT_DOT_LT] = ACTIONS(1701), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1701), + [sym_val_nothing] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [aux_sym_val_number_token1] = ACTIONS(1701), + [aux_sym_val_number_token2] = ACTIONS(1701), + [aux_sym_val_number_token3] = ACTIONS(1701), + [aux_sym_val_number_token4] = ACTIONS(1701), + [aux_sym_val_number_token5] = ACTIONS(1701), + [anon_sym_inf] = ACTIONS(1701), + [anon_sym_DASHinf] = ACTIONS(1701), + [anon_sym_NaN] = ACTIONS(1701), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1701), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1701), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(3), + }, + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1969), + [sym_cmd_identifier] = ACTIONS(1969), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_def_DASHenv] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_where] = ACTIONS(1969), + [anon_sym_not] = ACTIONS(1969), + [anon_sym_DOT_DOT_LT] = ACTIONS(1969), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), + [sym_val_nothing] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [aux_sym_val_number_token1] = ACTIONS(1969), + [aux_sym_val_number_token2] = ACTIONS(1969), + [aux_sym_val_number_token3] = ACTIONS(1969), + [aux_sym_val_number_token4] = ACTIONS(1969), + [aux_sym_val_number_token5] = ACTIONS(1969), + [anon_sym_inf] = ACTIONS(1969), + [anon_sym_DASHinf] = ACTIONS(1969), + [anon_sym_NaN] = ACTIONS(1969), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [sym__str_single_quotes] = ACTIONS(1969), + [sym__str_back_ticks] = ACTIONS(1969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + }, [612] = { [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_alias] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_let_DASHenv] = ACTIONS(1975), - [anon_sym_mut] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [sym_cmd_identifier] = ACTIONS(1975), - [anon_sym_LF] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1975), - [anon_sym_def_DASHenv] = ACTIONS(1975), - [anon_sym_export_DASHenv] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_do] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_source] = ACTIONS(1975), - [anon_sym_source_DASHenv] = ACTIONS(1975), - [anon_sym_register] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_hide_DASHenv] = ACTIONS(1975), - [anon_sym_overlay] = ACTIONS(1975), - [anon_sym_where] = ACTIONS(1975), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_DOT_DOT_LT] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), - [sym_val_nothing] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [aux_sym_val_number_token1] = ACTIONS(1975), - [aux_sym_val_number_token2] = ACTIONS(1975), - [aux_sym_val_number_token3] = ACTIONS(1975), - [aux_sym_val_number_token4] = ACTIONS(1975), - [aux_sym_val_number_token5] = ACTIONS(1975), - [anon_sym_inf] = ACTIONS(1975), - [anon_sym_DASHinf] = ACTIONS(1975), - [anon_sym_NaN] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1975), - [anon_sym_0o] = ACTIONS(1975), - [anon_sym_0x] = ACTIONS(1975), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [sym_cmd_identifier] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_def_DASHenv] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_where] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1973), + [anon_sym_DOT_DOT_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), + [sym_val_nothing] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [aux_sym_val_number_token1] = ACTIONS(1973), + [aux_sym_val_number_token2] = ACTIONS(1973), + [aux_sym_val_number_token3] = ACTIONS(1973), + [aux_sym_val_number_token4] = ACTIONS(1973), + [aux_sym_val_number_token5] = ACTIONS(1973), + [anon_sym_inf] = ACTIONS(1973), + [anon_sym_DASHinf] = ACTIONS(1973), + [anon_sym_NaN] = ACTIONS(1973), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), [anon_sym_POUND] = ACTIONS(3), }, [613] = { [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [sym_cmd_identifier] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_def_DASHenv] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1979), - [anon_sym_not] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [sym_val_nothing] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [aux_sym_val_number_token1] = ACTIONS(1979), - [aux_sym_val_number_token2] = ACTIONS(1979), - [aux_sym_val_number_token3] = ACTIONS(1979), - [aux_sym_val_number_token4] = ACTIONS(1979), - [aux_sym_val_number_token5] = ACTIONS(1979), - [anon_sym_inf] = ACTIONS(1979), - [anon_sym_DASHinf] = ACTIONS(1979), - [anon_sym_NaN] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [sym_val_date] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_CARET] = 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_def_DASHenv] = 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(1977), + [anon_sym_RPAREN] = ACTIONS(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [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_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_not] = ACTIONS(1977), + [anon_sym_DOT_DOT_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), + [sym_val_nothing] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1977), + [anon_sym_DASHinf] = ACTIONS(1977), + [anon_sym_NaN] = 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(3), }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_cmd_identifier] = ACTIONS(1983), - [anon_sym_LF] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_def_DASHenv] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [sym_val_nothing] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [aux_sym_val_number_token1] = ACTIONS(1983), - [aux_sym_val_number_token2] = ACTIONS(1983), - [aux_sym_val_number_token3] = ACTIONS(1983), - [aux_sym_val_number_token4] = ACTIONS(1983), - [aux_sym_val_number_token5] = ACTIONS(1983), - [anon_sym_inf] = ACTIONS(1983), - [anon_sym_DASHinf] = ACTIONS(1983), - [anon_sym_NaN] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(3), - }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(853), - [anon_sym_alias] = ACTIONS(853), - [anon_sym_let] = ACTIONS(853), - [anon_sym_let_DASHenv] = ACTIONS(853), - [anon_sym_mut] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(853), - [sym_cmd_identifier] = ACTIONS(853), - [anon_sym_LF] = ACTIONS(855), - [anon_sym_def] = ACTIONS(853), - [anon_sym_def_DASHenv] = ACTIONS(853), - [anon_sym_export_DASHenv] = ACTIONS(853), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_module] = ACTIONS(853), - [anon_sym_use] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_error] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_loop] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_match] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_RBRACE] = ACTIONS(853), - [anon_sym_try] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_source] = ACTIONS(853), - [anon_sym_source_DASHenv] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_hide_DASHenv] = ACTIONS(853), - [anon_sym_overlay] = ACTIONS(853), - [anon_sym_where] = ACTIONS(853), - [anon_sym_not] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [sym_val_nothing] = ACTIONS(853), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [aux_sym_val_number_token1] = ACTIONS(853), - [aux_sym_val_number_token2] = ACTIONS(853), - [aux_sym_val_number_token3] = ACTIONS(853), - [aux_sym_val_number_token4] = ACTIONS(853), - [aux_sym_val_number_token5] = ACTIONS(853), - [anon_sym_inf] = ACTIONS(853), - [anon_sym_DASHinf] = ACTIONS(853), - [anon_sym_NaN] = ACTIONS(853), - [anon_sym_0b] = ACTIONS(853), - [anon_sym_0o] = ACTIONS(853), - [anon_sym_0x] = ACTIONS(853), - [sym_val_date] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym__str_single_quotes] = ACTIONS(853), - [sym__str_back_ticks] = ACTIONS(853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_POUND] = ACTIONS(3), - }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(1987), - [anon_sym_alias] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1987), - [anon_sym_let_DASHenv] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [sym_cmd_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1987), - [anon_sym_def_DASHenv] = ACTIONS(1987), - [anon_sym_export_DASHenv] = ACTIONS(1987), - [anon_sym_extern] = ACTIONS(1987), - [anon_sym_module] = ACTIONS(1987), - [anon_sym_use] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_do] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_source] = ACTIONS(1987), - [anon_sym_source_DASHenv] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_hide_DASHenv] = ACTIONS(1987), - [anon_sym_overlay] = ACTIONS(1987), - [anon_sym_where] = ACTIONS(1987), - [anon_sym_not] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [sym_val_nothing] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [aux_sym_val_number_token1] = ACTIONS(1987), - [aux_sym_val_number_token2] = ACTIONS(1987), - [aux_sym_val_number_token3] = ACTIONS(1987), - [aux_sym_val_number_token4] = ACTIONS(1987), - [aux_sym_val_number_token5] = ACTIONS(1987), - [anon_sym_inf] = ACTIONS(1987), - [anon_sym_DASHinf] = ACTIONS(1987), - [anon_sym_NaN] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1987), - [anon_sym_0o] = ACTIONS(1987), - [anon_sym_0x] = ACTIONS(1987), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(3), - }, - [617] = { - [sym_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(791), - [anon_sym_export] = ACTIONS(789), - [anon_sym_alias] = ACTIONS(789), - [anon_sym_let] = ACTIONS(789), - [anon_sym_let_DASHenv] = ACTIONS(789), - [anon_sym_mut] = ACTIONS(789), - [anon_sym_const] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(789), - [sym_cmd_identifier] = ACTIONS(789), - [anon_sym_LF] = ACTIONS(791), - [anon_sym_def] = ACTIONS(789), - [anon_sym_def_DASHenv] = ACTIONS(789), - [anon_sym_export_DASHenv] = ACTIONS(789), - [anon_sym_extern] = ACTIONS(789), - [anon_sym_module] = ACTIONS(789), - [anon_sym_use] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_error] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_loop] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [anon_sym_do] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_match] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_try] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_source] = ACTIONS(789), - [anon_sym_source_DASHenv] = ACTIONS(789), - [anon_sym_register] = ACTIONS(789), - [anon_sym_hide] = ACTIONS(789), - [anon_sym_hide_DASHenv] = ACTIONS(789), - [anon_sym_overlay] = ACTIONS(789), - [anon_sym_where] = ACTIONS(789), - [anon_sym_not] = ACTIONS(789), - [anon_sym_DOT_DOT_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(789), - [sym_val_nothing] = ACTIONS(789), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [aux_sym_val_number_token1] = ACTIONS(789), - [aux_sym_val_number_token2] = ACTIONS(789), - [aux_sym_val_number_token3] = ACTIONS(789), - [aux_sym_val_number_token4] = ACTIONS(789), - [aux_sym_val_number_token5] = ACTIONS(789), - [anon_sym_inf] = ACTIONS(789), - [anon_sym_DASHinf] = ACTIONS(789), - [anon_sym_NaN] = ACTIONS(789), - [anon_sym_0b] = ACTIONS(789), - [anon_sym_0o] = ACTIONS(789), - [anon_sym_0x] = ACTIONS(789), - [sym_val_date] = ACTIONS(789), - [anon_sym_DQUOTE] = ACTIONS(789), - [sym__str_single_quotes] = ACTIONS(789), - [sym__str_back_ticks] = ACTIONS(789), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(789), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(3), - }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [sym_cmd_identifier] = ACTIONS(1991), - [anon_sym_LF] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_def_DASHenv] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(1991), - [anon_sym_not] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [sym_val_nothing] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [aux_sym_val_number_token1] = ACTIONS(1991), - [aux_sym_val_number_token2] = ACTIONS(1991), - [aux_sym_val_number_token3] = ACTIONS(1991), - [aux_sym_val_number_token4] = ACTIONS(1991), - [aux_sym_val_number_token5] = ACTIONS(1991), - [anon_sym_inf] = ACTIONS(1991), - [anon_sym_DASHinf] = ACTIONS(1991), - [anon_sym_NaN] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_CARET] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(3), - }, - [619] = { - [sym_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1843), - [anon_sym_alias] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_let_DASHenv] = ACTIONS(1843), - [anon_sym_mut] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1843), - [sym_cmd_identifier] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1845), - [anon_sym_def] = ACTIONS(1843), - [anon_sym_def_DASHenv] = ACTIONS(1843), - [anon_sym_export_DASHenv] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_module] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_LBRACK] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1843), - [anon_sym_DOLLAR] = ACTIONS(1843), - [anon_sym_error] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_do] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_source] = ACTIONS(1843), - [anon_sym_source_DASHenv] = ACTIONS(1843), - [anon_sym_register] = ACTIONS(1843), - [anon_sym_hide] = ACTIONS(1843), - [anon_sym_hide_DASHenv] = ACTIONS(1843), - [anon_sym_overlay] = ACTIONS(1843), - [anon_sym_where] = ACTIONS(1843), - [anon_sym_not] = ACTIONS(1843), - [anon_sym_DOT_DOT_LT] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1843), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), - [sym_val_nothing] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [aux_sym_val_number_token1] = ACTIONS(1843), - [aux_sym_val_number_token2] = ACTIONS(1843), - [aux_sym_val_number_token3] = ACTIONS(1843), - [aux_sym_val_number_token4] = ACTIONS(1843), - [aux_sym_val_number_token5] = ACTIONS(1843), - [anon_sym_inf] = ACTIONS(1843), - [anon_sym_DASHinf] = ACTIONS(1843), - [anon_sym_NaN] = ACTIONS(1843), - [anon_sym_0b] = ACTIONS(1843), - [anon_sym_0o] = ACTIONS(1843), - [anon_sym_0x] = ACTIONS(1843), - [sym_val_date] = ACTIONS(1843), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1843), - [sym__str_back_ticks] = ACTIONS(1843), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), - [anon_sym_CARET] = ACTIONS(1843), - [anon_sym_POUND] = ACTIONS(3), - }, - [620] = { - [sym_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(1891), - [anon_sym_export] = ACTIONS(1889), - [anon_sym_alias] = ACTIONS(1889), - [anon_sym_let] = ACTIONS(1889), - [anon_sym_let_DASHenv] = ACTIONS(1889), - [anon_sym_mut] = ACTIONS(1889), - [anon_sym_const] = ACTIONS(1889), - [anon_sym_SEMI] = ACTIONS(1889), - [sym_cmd_identifier] = ACTIONS(1889), - [anon_sym_LF] = ACTIONS(1891), - [anon_sym_def] = ACTIONS(1889), - [anon_sym_def_DASHenv] = ACTIONS(1889), - [anon_sym_export_DASHenv] = ACTIONS(1889), - [anon_sym_extern] = ACTIONS(1889), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_use] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_DOLLAR] = ACTIONS(1889), - [anon_sym_error] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_break] = ACTIONS(1889), - [anon_sym_continue] = ACTIONS(1889), - [anon_sym_for] = ACTIONS(1889), - [anon_sym_loop] = ACTIONS(1889), - [anon_sym_while] = ACTIONS(1889), - [anon_sym_do] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(1889), - [anon_sym_match] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_try] = ACTIONS(1889), - [anon_sym_return] = ACTIONS(1889), - [anon_sym_source] = ACTIONS(1889), - [anon_sym_source_DASHenv] = ACTIONS(1889), - [anon_sym_register] = ACTIONS(1889), - [anon_sym_hide] = ACTIONS(1889), - [anon_sym_hide_DASHenv] = ACTIONS(1889), - [anon_sym_overlay] = ACTIONS(1889), - [anon_sym_where] = ACTIONS(1889), - [anon_sym_not] = ACTIONS(1889), - [anon_sym_DOT_DOT_LT] = ACTIONS(1889), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1889), - [sym_val_nothing] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1889), - [anon_sym_false] = ACTIONS(1889), - [aux_sym_val_number_token1] = ACTIONS(1889), - [aux_sym_val_number_token2] = ACTIONS(1889), - [aux_sym_val_number_token3] = ACTIONS(1889), - [aux_sym_val_number_token4] = ACTIONS(1889), - [aux_sym_val_number_token5] = ACTIONS(1889), - [anon_sym_inf] = ACTIONS(1889), - [anon_sym_DASHinf] = ACTIONS(1889), - [anon_sym_NaN] = ACTIONS(1889), - [anon_sym_0b] = ACTIONS(1889), - [anon_sym_0o] = ACTIONS(1889), - [anon_sym_0x] = ACTIONS(1889), - [sym_val_date] = ACTIONS(1889), - [anon_sym_DQUOTE] = ACTIONS(1889), - [sym__str_single_quotes] = ACTIONS(1889), - [sym__str_back_ticks] = ACTIONS(1889), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1889), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1889), - [anon_sym_CARET] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(3), - }, - [621] = { - [sym_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(1911), - [anon_sym_export] = ACTIONS(1909), - [anon_sym_alias] = ACTIONS(1909), - [anon_sym_let] = ACTIONS(1909), - [anon_sym_let_DASHenv] = ACTIONS(1909), - [anon_sym_mut] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_SEMI] = ACTIONS(1909), - [sym_cmd_identifier] = ACTIONS(1909), - [anon_sym_LF] = ACTIONS(1911), - [anon_sym_def] = ACTIONS(1909), - [anon_sym_def_DASHenv] = ACTIONS(1909), - [anon_sym_export_DASHenv] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_module] = ACTIONS(1909), - [anon_sym_use] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_DOLLAR] = ACTIONS(1909), - [anon_sym_error] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1909), - [anon_sym_for] = ACTIONS(1909), - [anon_sym_loop] = ACTIONS(1909), - [anon_sym_while] = ACTIONS(1909), - [anon_sym_do] = ACTIONS(1909), - [anon_sym_if] = ACTIONS(1909), - [anon_sym_match] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_try] = ACTIONS(1909), - [anon_sym_return] = ACTIONS(1909), - [anon_sym_source] = ACTIONS(1909), - [anon_sym_source_DASHenv] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_hide] = ACTIONS(1909), - [anon_sym_hide_DASHenv] = ACTIONS(1909), - [anon_sym_overlay] = ACTIONS(1909), - [anon_sym_where] = ACTIONS(1909), - [anon_sym_not] = ACTIONS(1909), - [anon_sym_DOT_DOT_LT] = ACTIONS(1909), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1909), - [sym_val_nothing] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1909), - [anon_sym_false] = ACTIONS(1909), - [aux_sym_val_number_token1] = ACTIONS(1909), - [aux_sym_val_number_token2] = ACTIONS(1909), - [aux_sym_val_number_token3] = ACTIONS(1909), - [aux_sym_val_number_token4] = ACTIONS(1909), - [aux_sym_val_number_token5] = ACTIONS(1909), - [anon_sym_inf] = ACTIONS(1909), - [anon_sym_DASHinf] = ACTIONS(1909), - [anon_sym_NaN] = ACTIONS(1909), - [anon_sym_0b] = ACTIONS(1909), - [anon_sym_0o] = ACTIONS(1909), - [anon_sym_0x] = ACTIONS(1909), - [sym_val_date] = ACTIONS(1909), - [anon_sym_DQUOTE] = ACTIONS(1909), - [sym__str_single_quotes] = ACTIONS(1909), - [sym__str_back_ticks] = ACTIONS(1909), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1909), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1909), - [anon_sym_CARET] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(3), - }, - [622] = { - [sym_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(1963), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [sym_cmd_identifier] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_def_DASHenv] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_where] = ACTIONS(1961), - [anon_sym_not] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [sym_val_nothing] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [aux_sym_val_number_token1] = ACTIONS(1961), - [aux_sym_val_number_token2] = ACTIONS(1961), - [aux_sym_val_number_token3] = ACTIONS(1961), - [aux_sym_val_number_token4] = ACTIONS(1961), - [aux_sym_val_number_token5] = ACTIONS(1961), - [anon_sym_inf] = ACTIONS(1961), - [anon_sym_DASHinf] = ACTIONS(1961), - [anon_sym_NaN] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), - }, - [623] = { - [sym_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(1963), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [anon_sym_SEMI] = ACTIONS(1961), - [sym_cmd_identifier] = ACTIONS(1961), - [anon_sym_LF] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_def_DASHenv] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_where] = ACTIONS(1961), - [anon_sym_not] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), - [sym_val_nothing] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1961), - [anon_sym_false] = ACTIONS(1961), - [aux_sym_val_number_token1] = ACTIONS(1961), - [aux_sym_val_number_token2] = ACTIONS(1961), - [aux_sym_val_number_token3] = ACTIONS(1961), - [aux_sym_val_number_token4] = ACTIONS(1961), - [aux_sym_val_number_token5] = ACTIONS(1961), - [anon_sym_inf] = ACTIONS(1961), - [anon_sym_DASHinf] = ACTIONS(1961), - [anon_sym_NaN] = ACTIONS(1961), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), - [anon_sym_CARET] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(3), - }, - [624] = { - [sym_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1979), - [anon_sym_alias] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_let_DASHenv] = ACTIONS(1979), - [anon_sym_mut] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [sym_cmd_identifier] = ACTIONS(1979), - [anon_sym_LF] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1979), - [anon_sym_def_DASHenv] = ACTIONS(1979), - [anon_sym_export_DASHenv] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_module] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_do] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_source] = ACTIONS(1979), - [anon_sym_source_DASHenv] = ACTIONS(1979), - [anon_sym_register] = ACTIONS(1979), - [anon_sym_hide] = ACTIONS(1979), - [anon_sym_hide_DASHenv] = ACTIONS(1979), - [anon_sym_overlay] = ACTIONS(1979), - [anon_sym_where] = ACTIONS(1979), - [anon_sym_not] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [sym_val_nothing] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [aux_sym_val_number_token1] = ACTIONS(1979), - [aux_sym_val_number_token2] = ACTIONS(1979), - [aux_sym_val_number_token3] = ACTIONS(1979), - [aux_sym_val_number_token4] = ACTIONS(1979), - [aux_sym_val_number_token5] = ACTIONS(1979), - [anon_sym_inf] = ACTIONS(1979), - [anon_sym_DASHinf] = ACTIONS(1979), - [anon_sym_NaN] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1979), - [anon_sym_0o] = ACTIONS(1979), - [anon_sym_0x] = ACTIONS(1979), - [sym_val_date] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_POUND] = ACTIONS(3), - }, - [625] = { - [sym_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(1915), - [anon_sym_export] = ACTIONS(1913), - [anon_sym_alias] = ACTIONS(1913), - [anon_sym_let] = ACTIONS(1913), - [anon_sym_let_DASHenv] = ACTIONS(1913), - [anon_sym_mut] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_SEMI] = ACTIONS(1913), - [sym_cmd_identifier] = ACTIONS(1913), - [anon_sym_LF] = ACTIONS(1915), - [anon_sym_def] = ACTIONS(1913), - [anon_sym_def_DASHenv] = ACTIONS(1913), - [anon_sym_export_DASHenv] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym_module] = ACTIONS(1913), - [anon_sym_use] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_DOLLAR] = ACTIONS(1913), - [anon_sym_error] = ACTIONS(1913), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_loop] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_match] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_try] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_source] = ACTIONS(1913), - [anon_sym_source_DASHenv] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_hide] = ACTIONS(1913), - [anon_sym_hide_DASHenv] = ACTIONS(1913), - [anon_sym_overlay] = ACTIONS(1913), - [anon_sym_where] = ACTIONS(1913), - [anon_sym_not] = ACTIONS(1913), - [anon_sym_DOT_DOT_LT] = ACTIONS(1913), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1913), - [sym_val_nothing] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [aux_sym_val_number_token1] = ACTIONS(1913), - [aux_sym_val_number_token2] = ACTIONS(1913), - [aux_sym_val_number_token3] = ACTIONS(1913), - [aux_sym_val_number_token4] = ACTIONS(1913), - [aux_sym_val_number_token5] = ACTIONS(1913), - [anon_sym_inf] = ACTIONS(1913), - [anon_sym_DASHinf] = ACTIONS(1913), - [anon_sym_NaN] = ACTIONS(1913), - [anon_sym_0b] = ACTIONS(1913), - [anon_sym_0o] = ACTIONS(1913), - [anon_sym_0x] = ACTIONS(1913), - [sym_val_date] = ACTIONS(1913), - [anon_sym_DQUOTE] = ACTIONS(1913), - [sym__str_single_quotes] = ACTIONS(1913), - [sym__str_back_ticks] = ACTIONS(1913), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1913), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1913), - [anon_sym_CARET] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(3), - }, - [626] = { - [sym_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1851), - [anon_sym_alias] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_let_DASHenv] = ACTIONS(1851), - [anon_sym_mut] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1851), - [sym_cmd_identifier] = ACTIONS(1851), - [anon_sym_LF] = ACTIONS(1853), - [anon_sym_def] = ACTIONS(1851), - [anon_sym_def_DASHenv] = ACTIONS(1851), - [anon_sym_export_DASHenv] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_module] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_LBRACK] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1851), - [anon_sym_DOLLAR] = ACTIONS(1851), - [anon_sym_error] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_do] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_source] = ACTIONS(1851), - [anon_sym_source_DASHenv] = ACTIONS(1851), - [anon_sym_register] = ACTIONS(1851), - [anon_sym_hide] = ACTIONS(1851), - [anon_sym_hide_DASHenv] = ACTIONS(1851), - [anon_sym_overlay] = ACTIONS(1851), - [anon_sym_where] = ACTIONS(1851), - [anon_sym_not] = ACTIONS(1851), - [anon_sym_DOT_DOT_LT] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1851), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), - [sym_val_nothing] = ACTIONS(1851), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [aux_sym_val_number_token1] = ACTIONS(1851), - [aux_sym_val_number_token2] = ACTIONS(1851), - [aux_sym_val_number_token3] = ACTIONS(1851), - [aux_sym_val_number_token4] = ACTIONS(1851), - [aux_sym_val_number_token5] = ACTIONS(1851), - [anon_sym_inf] = ACTIONS(1851), - [anon_sym_DASHinf] = ACTIONS(1851), - [anon_sym_NaN] = ACTIONS(1851), - [anon_sym_0b] = ACTIONS(1851), - [anon_sym_0o] = ACTIONS(1851), - [anon_sym_0x] = ACTIONS(1851), - [sym_val_date] = ACTIONS(1851), - [anon_sym_DQUOTE] = ACTIONS(1851), - [sym__str_single_quotes] = ACTIONS(1851), - [sym__str_back_ticks] = ACTIONS(1851), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), - [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1965), + [sym_cmd_identifier] = ACTIONS(1965), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_def_DASHenv] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_RPAREN] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_RBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_where] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1965), + [anon_sym_DOT_DOT_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), + [sym_val_nothing] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [aux_sym_val_number_token1] = ACTIONS(1965), + [aux_sym_val_number_token2] = ACTIONS(1965), + [aux_sym_val_number_token3] = ACTIONS(1965), + [aux_sym_val_number_token4] = ACTIONS(1965), + [aux_sym_val_number_token5] = ACTIONS(1965), + [anon_sym_inf] = ACTIONS(1965), + [anon_sym_DASHinf] = ACTIONS(1965), + [anon_sym_NaN] = ACTIONS(1965), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), }, - [627] = { - [sym_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(1919), - [anon_sym_export] = ACTIONS(1917), - [anon_sym_alias] = ACTIONS(1917), - [anon_sym_let] = ACTIONS(1917), - [anon_sym_let_DASHenv] = ACTIONS(1917), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_SEMI] = ACTIONS(1917), - [sym_cmd_identifier] = ACTIONS(1917), - [anon_sym_LF] = ACTIONS(1919), - [anon_sym_def] = ACTIONS(1917), - [anon_sym_def_DASHenv] = ACTIONS(1917), - [anon_sym_export_DASHenv] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_use] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1917), - [anon_sym_error] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_loop] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_match] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_try] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_source] = ACTIONS(1917), - [anon_sym_source_DASHenv] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_hide] = ACTIONS(1917), - [anon_sym_hide_DASHenv] = ACTIONS(1917), - [anon_sym_overlay] = ACTIONS(1917), - [anon_sym_where] = ACTIONS(1917), - [anon_sym_not] = ACTIONS(1917), - [anon_sym_DOT_DOT_LT] = ACTIONS(1917), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), - [sym_val_nothing] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1917), - [anon_sym_false] = ACTIONS(1917), - [aux_sym_val_number_token1] = ACTIONS(1917), - [aux_sym_val_number_token2] = ACTIONS(1917), - [aux_sym_val_number_token3] = ACTIONS(1917), - [aux_sym_val_number_token4] = ACTIONS(1917), - [aux_sym_val_number_token5] = ACTIONS(1917), - [anon_sym_inf] = ACTIONS(1917), - [anon_sym_DASHinf] = ACTIONS(1917), - [anon_sym_NaN] = ACTIONS(1917), - [anon_sym_0b] = ACTIONS(1917), - [anon_sym_0o] = ACTIONS(1917), - [anon_sym_0x] = ACTIONS(1917), - [sym_val_date] = ACTIONS(1917), - [anon_sym_DQUOTE] = ACTIONS(1917), - [sym__str_single_quotes] = ACTIONS(1917), - [sym__str_back_ticks] = ACTIONS(1917), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), - [anon_sym_CARET] = ACTIONS(1917), + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1983), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_def_DASHenv] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_RPAREN] = ACTIONS(1989), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1989), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_DOT_DOT_LT] = ACTIONS(1981), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), + [sym_val_nothing] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym_val_number_token1] = ACTIONS(1981), + [aux_sym_val_number_token2] = ACTIONS(1981), + [aux_sym_val_number_token3] = ACTIONS(1981), + [aux_sym_val_number_token4] = ACTIONS(1981), + [aux_sym_val_number_token5] = ACTIONS(1981), + [anon_sym_inf] = ACTIONS(1981), + [anon_sym_DASHinf] = ACTIONS(1981), + [anon_sym_NaN] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(3), }, - [628] = { - [sym_comment] = STATE(628), + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [sym_cmd_identifier] = ACTIONS(1991), + [anon_sym_LF] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_def_DASHenv] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_RPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_where] = ACTIONS(1991), + [anon_sym_not] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [sym_val_nothing] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym_val_number_token1] = ACTIONS(1991), + [aux_sym_val_number_token2] = ACTIONS(1991), + [aux_sym_val_number_token3] = ACTIONS(1991), + [aux_sym_val_number_token4] = ACTIONS(1991), + [aux_sym_val_number_token5] = ACTIONS(1991), + [anon_sym_inf] = ACTIONS(1991), + [anon_sym_DASHinf] = ACTIONS(1991), + [anon_sym_NaN] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0o] = ACTIONS(1991), + [anon_sym_0x] = ACTIONS(1991), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(3), + }, + [617] = { + [sym_comment] = STATE(617), [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(1997), + [anon_sym_SEMI] = ACTIONS(1995), [sym_cmd_identifier] = ACTIONS(1995), - [anon_sym_LF] = ACTIONS(2000), + [anon_sym_LF] = ACTIONS(1997), [anon_sym_def] = ACTIONS(1995), [anon_sym_def_DASHenv] = ACTIONS(1995), [anon_sym_export_DASHenv] = ACTIONS(1995), @@ -96073,7 +95400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(1995), [anon_sym_LBRACK] = ACTIONS(1995), [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(1995), [anon_sym_DOLLAR] = ACTIONS(1995), [anon_sym_error] = ACTIONS(1995), [anon_sym_DASH] = ACTIONS(1995), @@ -96086,6 +95413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1995), [anon_sym_match] = ACTIONS(1995), [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), [anon_sym_try] = ACTIONS(1995), [anon_sym_return] = ACTIONS(1995), [anon_sym_source] = ACTIONS(1995), @@ -96122,960 +95450,553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1995), [anon_sym_POUND] = ACTIONS(3), }, - [629] = { - [sym_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(1719), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1717), - [sym_cmd_identifier] = ACTIONS(1717), - [anon_sym_LF] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_def_DASHenv] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LBRACK] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_where] = ACTIONS(1717), - [anon_sym_not] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [sym_val_nothing] = ACTIONS(1717), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [aux_sym_val_number_token1] = ACTIONS(1717), - [aux_sym_val_number_token2] = ACTIONS(1717), - [aux_sym_val_number_token3] = ACTIONS(1717), - [aux_sym_val_number_token4] = ACTIONS(1717), - [aux_sym_val_number_token5] = ACTIONS(1717), - [anon_sym_inf] = ACTIONS(1717), - [anon_sym_DASHinf] = ACTIONS(1717), - [anon_sym_NaN] = ACTIONS(1717), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(3), - }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_EQ] = ACTIONS(768), - [anon_sym_SEMI] = ACTIONS(770), - [sym_cmd_identifier] = ACTIONS(768), - [anon_sym_COLON] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(770), - [anon_sym_COMMA] = ACTIONS(770), - [anon_sym_RBRACK] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(768), - [anon_sym_GT] = ACTIONS(768), - [anon_sym_DASH] = ACTIONS(768), - [anon_sym_in] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_DOT] = ACTIONS(768), - [anon_sym_STAR] = ACTIONS(768), - [anon_sym_QMARK2] = ACTIONS(770), - [anon_sym_STAR_STAR] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(770), - [anon_sym_SLASH] = ACTIONS(768), - [anon_sym_mod] = ACTIONS(768), - [anon_sym_SLASH_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(768), - [anon_sym_bit_DASHshl] = ACTIONS(768), - [anon_sym_bit_DASHshr] = ACTIONS(768), - [anon_sym_EQ_EQ] = ACTIONS(770), - [anon_sym_BANG_EQ] = ACTIONS(770), - [anon_sym_LT2] = ACTIONS(768), - [anon_sym_LT_EQ] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(770), - [anon_sym_not_DASHin] = ACTIONS(768), - [anon_sym_starts_DASHwith] = ACTIONS(768), - [anon_sym_ends_DASHwith] = ACTIONS(768), - [anon_sym_EQ_TILDE] = ACTIONS(770), - [anon_sym_BANG_TILDE] = ACTIONS(770), - [anon_sym_bit_DASHand] = ACTIONS(768), - [anon_sym_bit_DASHxor] = ACTIONS(768), - [anon_sym_bit_DASHor] = ACTIONS(768), - [anon_sym_and] = ACTIONS(768), - [anon_sym_xor] = ACTIONS(768), - [anon_sym_or] = ACTIONS(768), - [anon_sym_not] = ACTIONS(768), - [anon_sym_DOT_DOT_LT] = ACTIONS(770), - [anon_sym_DOT_DOT] = ACTIONS(768), - [anon_sym_DOT_DOT_EQ] = ACTIONS(770), - [sym_val_nothing] = ACTIONS(768), - [anon_sym_true] = ACTIONS(768), - [anon_sym_false] = ACTIONS(768), - [aux_sym_val_number_token1] = ACTIONS(768), - [aux_sym_val_number_token2] = ACTIONS(768), - [aux_sym_val_number_token3] = ACTIONS(770), - [aux_sym_val_number_token4] = ACTIONS(770), - [aux_sym_val_number_token5] = ACTIONS(770), - [anon_sym_inf] = ACTIONS(768), - [anon_sym_DASHinf] = ACTIONS(770), - [anon_sym_NaN] = ACTIONS(768), - [anon_sym_0b] = ACTIONS(768), - [anon_sym_0o] = ACTIONS(768), - [anon_sym_0x] = ACTIONS(768), - [sym_val_date] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(770), - [sym__str_single_quotes] = ACTIONS(770), - [sym__str_back_ticks] = ACTIONS(770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(770), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(143), - }, - [631] = { - [sym_comment] = STATE(631), - [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_def_DASHenv] = 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(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [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_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_not] = ACTIONS(1957), - [anon_sym_DOT_DOT_LT] = ACTIONS(1957), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), - [sym_val_nothing] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1957), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1957), - [anon_sym_DASHinf] = ACTIONS(1957), - [anon_sym_NaN] = 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(3), - }, - [632] = { - [sym_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(1955), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [anon_sym_SEMI] = ACTIONS(1953), - [sym_cmd_identifier] = ACTIONS(1953), - [anon_sym_LF] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_def_DASHenv] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_where] = ACTIONS(1953), - [anon_sym_not] = ACTIONS(1953), - [anon_sym_DOT_DOT_LT] = ACTIONS(1953), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1953), - [sym_val_nothing] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1953), - [anon_sym_false] = ACTIONS(1953), - [aux_sym_val_number_token1] = ACTIONS(1953), - [aux_sym_val_number_token2] = ACTIONS(1953), - [aux_sym_val_number_token3] = ACTIONS(1953), - [aux_sym_val_number_token4] = ACTIONS(1953), - [aux_sym_val_number_token5] = ACTIONS(1953), - [anon_sym_inf] = ACTIONS(1953), - [anon_sym_DASHinf] = ACTIONS(1953), - [anon_sym_NaN] = ACTIONS(1953), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1953), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1953), - [anon_sym_CARET] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(3), - }, - [633] = { - [sym_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(855), - [anon_sym_export] = ACTIONS(853), - [anon_sym_alias] = ACTIONS(853), - [anon_sym_let] = ACTIONS(853), - [anon_sym_let_DASHenv] = ACTIONS(853), - [anon_sym_mut] = ACTIONS(853), - [anon_sym_const] = ACTIONS(853), - [anon_sym_SEMI] = ACTIONS(853), - [sym_cmd_identifier] = ACTIONS(853), - [anon_sym_LF] = ACTIONS(855), - [anon_sym_def] = ACTIONS(853), - [anon_sym_def_DASHenv] = ACTIONS(853), - [anon_sym_export_DASHenv] = ACTIONS(853), - [anon_sym_extern] = ACTIONS(853), - [anon_sym_module] = ACTIONS(853), - [anon_sym_use] = ACTIONS(853), - [anon_sym_LBRACK] = ACTIONS(853), - [anon_sym_LPAREN] = ACTIONS(853), - [anon_sym_DOLLAR] = ACTIONS(853), - [anon_sym_error] = ACTIONS(853), - [anon_sym_DASH] = ACTIONS(853), - [anon_sym_break] = ACTIONS(853), - [anon_sym_continue] = ACTIONS(853), - [anon_sym_for] = ACTIONS(853), - [anon_sym_loop] = ACTIONS(853), - [anon_sym_while] = ACTIONS(853), - [anon_sym_do] = ACTIONS(853), - [anon_sym_if] = ACTIONS(853), - [anon_sym_match] = ACTIONS(853), - [anon_sym_LBRACE] = ACTIONS(853), - [anon_sym_try] = ACTIONS(853), - [anon_sym_return] = ACTIONS(853), - [anon_sym_source] = ACTIONS(853), - [anon_sym_source_DASHenv] = ACTIONS(853), - [anon_sym_register] = ACTIONS(853), - [anon_sym_hide] = ACTIONS(853), - [anon_sym_hide_DASHenv] = ACTIONS(853), - [anon_sym_overlay] = ACTIONS(853), - [anon_sym_where] = ACTIONS(853), - [anon_sym_not] = ACTIONS(853), - [anon_sym_DOT_DOT_LT] = ACTIONS(853), - [anon_sym_DOT_DOT] = ACTIONS(853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(853), - [sym_val_nothing] = ACTIONS(853), - [anon_sym_true] = ACTIONS(853), - [anon_sym_false] = ACTIONS(853), - [aux_sym_val_number_token1] = ACTIONS(853), - [aux_sym_val_number_token2] = ACTIONS(853), - [aux_sym_val_number_token3] = ACTIONS(853), - [aux_sym_val_number_token4] = ACTIONS(853), - [aux_sym_val_number_token5] = ACTIONS(853), - [anon_sym_inf] = ACTIONS(853), - [anon_sym_DASHinf] = ACTIONS(853), - [anon_sym_NaN] = ACTIONS(853), - [anon_sym_0b] = ACTIONS(853), - [anon_sym_0o] = ACTIONS(853), - [anon_sym_0x] = ACTIONS(853), - [sym_val_date] = ACTIONS(853), - [anon_sym_DQUOTE] = ACTIONS(853), - [sym__str_single_quotes] = ACTIONS(853), - [sym__str_back_ticks] = ACTIONS(853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(853), - [anon_sym_CARET] = ACTIONS(853), - [anon_sym_POUND] = ACTIONS(3), - }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_EQ] = ACTIONS(764), - [anon_sym_SEMI] = ACTIONS(766), - [sym_cmd_identifier] = ACTIONS(764), - [anon_sym_COLON] = ACTIONS(766), - [anon_sym_LBRACK] = ACTIONS(766), - [anon_sym_COMMA] = ACTIONS(766), - [anon_sym_RBRACK] = ACTIONS(766), - [anon_sym_LPAREN] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(764), - [anon_sym_GT] = ACTIONS(764), - [anon_sym_DASH] = ACTIONS(764), - [anon_sym_in] = ACTIONS(764), - [anon_sym_LBRACE] = ACTIONS(766), - [anon_sym_DOT] = ACTIONS(764), - [anon_sym_STAR] = ACTIONS(764), - [anon_sym_QMARK2] = ACTIONS(766), - [anon_sym_STAR_STAR] = ACTIONS(766), - [anon_sym_PLUS_PLUS] = ACTIONS(766), - [anon_sym_SLASH] = ACTIONS(764), - [anon_sym_mod] = ACTIONS(764), - [anon_sym_SLASH_SLASH] = ACTIONS(766), - [anon_sym_PLUS] = ACTIONS(764), - [anon_sym_bit_DASHshl] = ACTIONS(764), - [anon_sym_bit_DASHshr] = ACTIONS(764), - [anon_sym_EQ_EQ] = ACTIONS(766), - [anon_sym_BANG_EQ] = ACTIONS(766), - [anon_sym_LT2] = ACTIONS(764), - [anon_sym_LT_EQ] = ACTIONS(766), - [anon_sym_GT_EQ] = ACTIONS(766), - [anon_sym_not_DASHin] = ACTIONS(764), - [anon_sym_starts_DASHwith] = ACTIONS(764), - [anon_sym_ends_DASHwith] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(766), - [anon_sym_BANG_TILDE] = ACTIONS(766), - [anon_sym_bit_DASHand] = ACTIONS(764), - [anon_sym_bit_DASHxor] = ACTIONS(764), - [anon_sym_bit_DASHor] = ACTIONS(764), - [anon_sym_and] = ACTIONS(764), - [anon_sym_xor] = ACTIONS(764), - [anon_sym_or] = ACTIONS(764), - [anon_sym_not] = ACTIONS(764), - [anon_sym_DOT_DOT_LT] = ACTIONS(766), - [anon_sym_DOT_DOT] = ACTIONS(764), - [anon_sym_DOT_DOT_EQ] = ACTIONS(766), - [sym_val_nothing] = ACTIONS(764), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_val_number_token1] = ACTIONS(764), - [aux_sym_val_number_token2] = ACTIONS(764), - [aux_sym_val_number_token3] = ACTIONS(766), - [aux_sym_val_number_token4] = ACTIONS(766), - [aux_sym_val_number_token5] = ACTIONS(766), - [anon_sym_inf] = ACTIONS(764), - [anon_sym_DASHinf] = ACTIONS(766), - [anon_sym_NaN] = ACTIONS(764), - [anon_sym_0b] = ACTIONS(764), - [anon_sym_0o] = ACTIONS(764), - [anon_sym_0x] = ACTIONS(764), - [sym_val_date] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [sym__str_single_quotes] = ACTIONS(766), - [sym__str_back_ticks] = ACTIONS(766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(766), - [anon_sym_POUND] = ACTIONS(143), - }, - [635] = { - [sym_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(1875), - [anon_sym_export] = ACTIONS(1873), - [anon_sym_alias] = ACTIONS(1873), - [anon_sym_let] = ACTIONS(1873), - [anon_sym_let_DASHenv] = ACTIONS(1873), - [anon_sym_mut] = ACTIONS(1873), - [anon_sym_const] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [sym_cmd_identifier] = ACTIONS(1873), - [anon_sym_LF] = ACTIONS(1875), - [anon_sym_def] = ACTIONS(1873), - [anon_sym_def_DASHenv] = ACTIONS(1873), - [anon_sym_export_DASHenv] = ACTIONS(1873), - [anon_sym_extern] = ACTIONS(1873), - [anon_sym_module] = ACTIONS(1873), - [anon_sym_use] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1873), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_break] = ACTIONS(1873), - [anon_sym_continue] = ACTIONS(1873), - [anon_sym_for] = ACTIONS(1873), - [anon_sym_loop] = ACTIONS(1873), - [anon_sym_while] = ACTIONS(1873), - [anon_sym_do] = ACTIONS(1873), - [anon_sym_if] = ACTIONS(1873), - [anon_sym_match] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1873), - [anon_sym_return] = ACTIONS(1873), - [anon_sym_source] = ACTIONS(1873), - [anon_sym_source_DASHenv] = ACTIONS(1873), - [anon_sym_register] = ACTIONS(1873), - [anon_sym_hide] = ACTIONS(1873), - [anon_sym_hide_DASHenv] = ACTIONS(1873), - [anon_sym_overlay] = ACTIONS(1873), - [anon_sym_where] = ACTIONS(1873), - [anon_sym_not] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1873), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [sym_val_nothing] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym_val_number_token1] = ACTIONS(1873), - [aux_sym_val_number_token2] = ACTIONS(1873), - [aux_sym_val_number_token3] = ACTIONS(1873), - [aux_sym_val_number_token4] = ACTIONS(1873), - [aux_sym_val_number_token5] = ACTIONS(1873), - [anon_sym_inf] = ACTIONS(1873), - [anon_sym_DASHinf] = ACTIONS(1873), - [anon_sym_NaN] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1873), - [anon_sym_0o] = ACTIONS(1873), - [anon_sym_0x] = ACTIONS(1873), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_CARET] = ACTIONS(1873), + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_def_DASHenv] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [sym_val_nothing] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym_val_number_token1] = ACTIONS(1999), + [aux_sym_val_number_token2] = ACTIONS(1999), + [aux_sym_val_number_token3] = ACTIONS(1999), + [aux_sym_val_number_token4] = ACTIONS(1999), + [aux_sym_val_number_token5] = ACTIONS(1999), + [anon_sym_inf] = ACTIONS(1999), + [anon_sym_DASHinf] = ACTIONS(1999), + [anon_sym_NaN] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), [anon_sym_POUND] = ACTIONS(3), }, - [636] = { - [sym_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(1849), - [anon_sym_export] = ACTIONS(1847), - [anon_sym_alias] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_let_DASHenv] = ACTIONS(1847), - [anon_sym_mut] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1847), - [sym_cmd_identifier] = ACTIONS(1847), - [anon_sym_LF] = ACTIONS(1849), - [anon_sym_def] = ACTIONS(1847), - [anon_sym_def_DASHenv] = ACTIONS(1847), - [anon_sym_export_DASHenv] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_LBRACK] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1847), - [anon_sym_DOLLAR] = ACTIONS(1847), - [anon_sym_error] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_do] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_source] = ACTIONS(1847), - [anon_sym_source_DASHenv] = ACTIONS(1847), - [anon_sym_register] = ACTIONS(1847), - [anon_sym_hide] = ACTIONS(1847), - [anon_sym_hide_DASHenv] = ACTIONS(1847), - [anon_sym_overlay] = ACTIONS(1847), - [anon_sym_where] = ACTIONS(1847), - [anon_sym_not] = ACTIONS(1847), - [anon_sym_DOT_DOT_LT] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1847), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), - [sym_val_nothing] = ACTIONS(1847), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [aux_sym_val_number_token1] = ACTIONS(1847), - [aux_sym_val_number_token2] = ACTIONS(1847), - [aux_sym_val_number_token3] = ACTIONS(1847), - [aux_sym_val_number_token4] = ACTIONS(1847), - [aux_sym_val_number_token5] = ACTIONS(1847), - [anon_sym_inf] = ACTIONS(1847), - [anon_sym_DASHinf] = ACTIONS(1847), - [anon_sym_NaN] = ACTIONS(1847), - [anon_sym_0b] = ACTIONS(1847), - [anon_sym_0o] = ACTIONS(1847), - [anon_sym_0x] = ACTIONS(1847), - [sym_val_date] = ACTIONS(1847), - [anon_sym_DQUOTE] = ACTIONS(1847), - [sym__str_single_quotes] = ACTIONS(1847), - [sym__str_back_ticks] = ACTIONS(1847), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1847), + [619] = { + [sym_comment] = STATE(619), + [ts_builtin_sym_end] = ACTIONS(1889), + [anon_sym_export] = ACTIONS(1887), + [anon_sym_alias] = ACTIONS(1887), + [anon_sym_let] = ACTIONS(1887), + [anon_sym_let_DASHenv] = ACTIONS(1887), + [anon_sym_mut] = ACTIONS(1887), + [anon_sym_const] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [sym_cmd_identifier] = ACTIONS(1887), + [anon_sym_LF] = ACTIONS(1889), + [anon_sym_def] = ACTIONS(1887), + [anon_sym_def_DASHenv] = ACTIONS(1887), + [anon_sym_export_DASHenv] = ACTIONS(1887), + [anon_sym_extern] = ACTIONS(1887), + [anon_sym_module] = ACTIONS(1887), + [anon_sym_use] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1887), + [anon_sym_DASH] = ACTIONS(1887), + [anon_sym_break] = ACTIONS(1887), + [anon_sym_continue] = ACTIONS(1887), + [anon_sym_for] = ACTIONS(1887), + [anon_sym_loop] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1887), + [anon_sym_do] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_match] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1887), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_source] = ACTIONS(1887), + [anon_sym_source_DASHenv] = ACTIONS(1887), + [anon_sym_register] = ACTIONS(1887), + [anon_sym_hide] = ACTIONS(1887), + [anon_sym_hide_DASHenv] = ACTIONS(1887), + [anon_sym_overlay] = ACTIONS(1887), + [anon_sym_where] = ACTIONS(1887), + [anon_sym_not] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1887), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [sym_val_nothing] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym_val_number_token1] = ACTIONS(1887), + [aux_sym_val_number_token2] = ACTIONS(1887), + [aux_sym_val_number_token3] = ACTIONS(1887), + [aux_sym_val_number_token4] = ACTIONS(1887), + [aux_sym_val_number_token5] = ACTIONS(1887), + [anon_sym_inf] = ACTIONS(1887), + [anon_sym_DASHinf] = ACTIONS(1887), + [anon_sym_NaN] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1887), + [anon_sym_0o] = ACTIONS(1887), + [anon_sym_0x] = ACTIONS(1887), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_CARET] = ACTIONS(1887), [anon_sym_POUND] = ACTIONS(3), }, - [637] = { - [sym_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1819), - [anon_sym_alias] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_let_DASHenv] = ACTIONS(1819), - [anon_sym_mut] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_cmd_identifier] = ACTIONS(1819), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1819), - [anon_sym_def_DASHenv] = ACTIONS(1819), - [anon_sym_export_DASHenv] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym_module] = ACTIONS(1819), - [anon_sym_use] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_error] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_loop] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_match] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_source] = ACTIONS(1819), - [anon_sym_source_DASHenv] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_hide] = ACTIONS(1819), - [anon_sym_hide_DASHenv] = ACTIONS(1819), - [anon_sym_overlay] = ACTIONS(1819), - [anon_sym_where] = ACTIONS(1819), - [anon_sym_not] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [sym_val_nothing] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym_val_number_token1] = ACTIONS(1819), - [aux_sym_val_number_token2] = ACTIONS(1819), - [aux_sym_val_number_token3] = ACTIONS(1819), - [aux_sym_val_number_token4] = ACTIONS(1819), - [aux_sym_val_number_token5] = ACTIONS(1819), - [anon_sym_inf] = ACTIONS(1819), - [anon_sym_DASHinf] = ACTIONS(1819), - [anon_sym_NaN] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1819), - [anon_sym_0o] = ACTIONS(1819), - [anon_sym_0x] = ACTIONS(1819), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1819), + [620] = { + [sym_comment] = STATE(620), + [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(2005), + [sym_cmd_identifier] = ACTIONS(2003), + [anon_sym_LF] = ACTIONS(2008), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_def_DASHenv] = 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(2003), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2003), + [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_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_not] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [sym_val_nothing] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2003), + [anon_sym_DASHinf] = ACTIONS(2003), + [anon_sym_NaN] = 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(3), }, - [638] = { - [sym_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1819), - [anon_sym_alias] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_let_DASHenv] = ACTIONS(1819), - [anon_sym_mut] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1819), - [sym_cmd_identifier] = ACTIONS(1819), - [anon_sym_LF] = ACTIONS(1821), - [anon_sym_def] = ACTIONS(1819), - [anon_sym_def_DASHenv] = ACTIONS(1819), - [anon_sym_export_DASHenv] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym_module] = ACTIONS(1819), - [anon_sym_use] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_DOLLAR] = ACTIONS(1819), - [anon_sym_error] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_loop] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_do] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_match] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_source] = ACTIONS(1819), - [anon_sym_source_DASHenv] = ACTIONS(1819), - [anon_sym_register] = ACTIONS(1819), - [anon_sym_hide] = ACTIONS(1819), - [anon_sym_hide_DASHenv] = ACTIONS(1819), - [anon_sym_overlay] = ACTIONS(1819), - [anon_sym_where] = ACTIONS(1819), - [anon_sym_not] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [sym_val_nothing] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [aux_sym_val_number_token1] = ACTIONS(1819), - [aux_sym_val_number_token2] = ACTIONS(1819), - [aux_sym_val_number_token3] = ACTIONS(1819), - [aux_sym_val_number_token4] = ACTIONS(1819), - [aux_sym_val_number_token5] = ACTIONS(1819), - [anon_sym_inf] = ACTIONS(1819), - [anon_sym_DASHinf] = ACTIONS(1819), - [anon_sym_NaN] = ACTIONS(1819), - [anon_sym_0b] = ACTIONS(1819), - [anon_sym_0o] = ACTIONS(1819), - [anon_sym_0x] = ACTIONS(1819), - [sym_val_date] = ACTIONS(1819), - [anon_sym_DQUOTE] = ACTIONS(1819), - [sym__str_single_quotes] = ACTIONS(1819), - [sym__str_back_ticks] = ACTIONS(1819), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), - [anon_sym_CARET] = ACTIONS(1819), + [621] = { + [sym_comment] = STATE(621), + [ts_builtin_sym_end] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [anon_sym_SEMI] = ACTIONS(1843), + [sym_cmd_identifier] = ACTIONS(1843), + [anon_sym_LF] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_def_DASHenv] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_where] = ACTIONS(1843), + [anon_sym_not] = ACTIONS(1843), + [anon_sym_DOT_DOT_LT] = ACTIONS(1843), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1843), + [sym_val_nothing] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(1843), + [anon_sym_false] = ACTIONS(1843), + [aux_sym_val_number_token1] = ACTIONS(1843), + [aux_sym_val_number_token2] = ACTIONS(1843), + [aux_sym_val_number_token3] = ACTIONS(1843), + [aux_sym_val_number_token4] = ACTIONS(1843), + [aux_sym_val_number_token5] = ACTIONS(1843), + [anon_sym_inf] = ACTIONS(1843), + [anon_sym_DASHinf] = ACTIONS(1843), + [anon_sym_NaN] = ACTIONS(1843), + [anon_sym_0b] = ACTIONS(1843), + [anon_sym_0o] = ACTIONS(1843), + [anon_sym_0x] = ACTIONS(1843), + [sym_val_date] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1843), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1843), + [anon_sym_CARET] = ACTIONS(1843), [anon_sym_POUND] = ACTIONS(3), }, - [639] = { - [sym_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(1907), - [anon_sym_export] = ACTIONS(1905), - [anon_sym_alias] = ACTIONS(1905), - [anon_sym_let] = ACTIONS(1905), - [anon_sym_let_DASHenv] = ACTIONS(1905), - [anon_sym_mut] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_SEMI] = ACTIONS(1905), - [sym_cmd_identifier] = ACTIONS(1905), - [anon_sym_LF] = ACTIONS(1907), - [anon_sym_def] = ACTIONS(1905), - [anon_sym_def_DASHenv] = ACTIONS(1905), - [anon_sym_export_DASHenv] = ACTIONS(1905), - [anon_sym_extern] = ACTIONS(1905), - [anon_sym_module] = ACTIONS(1905), - [anon_sym_use] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1905), - [anon_sym_error] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_do] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_source] = ACTIONS(1905), - [anon_sym_source_DASHenv] = ACTIONS(1905), - [anon_sym_register] = ACTIONS(1905), - [anon_sym_hide] = ACTIONS(1905), - [anon_sym_hide_DASHenv] = ACTIONS(1905), - [anon_sym_overlay] = ACTIONS(1905), - [anon_sym_where] = ACTIONS(1905), - [anon_sym_not] = ACTIONS(1905), - [anon_sym_DOT_DOT_LT] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1905), - [sym_val_nothing] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [aux_sym_val_number_token1] = ACTIONS(1905), - [aux_sym_val_number_token2] = ACTIONS(1905), - [aux_sym_val_number_token3] = ACTIONS(1905), - [aux_sym_val_number_token4] = ACTIONS(1905), - [aux_sym_val_number_token5] = ACTIONS(1905), - [anon_sym_inf] = ACTIONS(1905), - [anon_sym_DASHinf] = ACTIONS(1905), - [anon_sym_NaN] = ACTIONS(1905), - [anon_sym_0b] = ACTIONS(1905), - [anon_sym_0o] = ACTIONS(1905), - [anon_sym_0x] = ACTIONS(1905), - [sym_val_date] = ACTIONS(1905), - [anon_sym_DQUOTE] = ACTIONS(1905), - [sym__str_single_quotes] = ACTIONS(1905), - [sym__str_back_ticks] = ACTIONS(1905), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1905), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1905), - [anon_sym_CARET] = ACTIONS(1905), + [622] = { + [sym_ctrl_do] = STATE(2865), + [sym_ctrl_if] = STATE(2865), + [sym_ctrl_match] = STATE(2865), + [sym_ctrl_try] = STATE(2865), + [sym__expression] = STATE(2159), + [sym_expr_unary] = STATE(2151), + [sym_expr_binary] = STATE(2151), + [sym_expr_parenthesized] = STATE(1782), + [sym_val_range] = STATE(2151), + [sym__value] = STATE(2151), + [sym_val_bool] = STATE(2253), + [sym_val_variable] = STATE(2253), + [sym__var] = STATE(1790), + [sym_val_number] = STATE(106), + [sym_val_duration] = STATE(2253), + [sym_val_filesize] = STATE(2253), + [sym_val_binary] = STATE(2253), + [sym_val_string] = STATE(2253), + [sym__str_double_quotes] = STATE(2103), + [sym_val_interpolated] = STATE(2253), + [sym__inter_single_quotes] = STATE(2232), + [sym__inter_double_quotes] = STATE(2228), + [sym_val_list] = STATE(2253), + [sym_val_record] = STATE(2253), + [sym_val_table] = STATE(2253), + [sym_val_closure] = STATE(2253), + [sym_comment] = STATE(622), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2013), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(971), + [anon_sym_DASH] = ACTIONS(189), + [anon_sym_do] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_match] = ACTIONS(205), + [anon_sym_LBRACE] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(211), + [anon_sym_not] = ACTIONS(227), + [anon_sym_DOT_DOT_LT] = ACTIONS(231), + [anon_sym_DOT_DOT] = ACTIONS(231), + [anon_sym_DOT_DOT_EQ] = ACTIONS(231), + [sym_val_nothing] = ACTIONS(233), + [anon_sym_true] = ACTIONS(235), + [anon_sym_false] = ACTIONS(235), + [aux_sym_val_number_token1] = ACTIONS(237), + [aux_sym_val_number_token2] = ACTIONS(237), + [aux_sym_val_number_token3] = ACTIONS(237), + [aux_sym_val_number_token4] = ACTIONS(237), + [aux_sym_val_number_token5] = ACTIONS(237), + [anon_sym_inf] = ACTIONS(237), + [anon_sym_DASHinf] = ACTIONS(237), + [anon_sym_NaN] = ACTIONS(237), + [anon_sym_0b] = ACTIONS(241), + [anon_sym_0o] = ACTIONS(241), + [anon_sym_0x] = ACTIONS(241), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2025), + [sym__str_back_ticks] = ACTIONS(2025), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2027), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2029), [anon_sym_POUND] = ACTIONS(3), }, - [640] = { - [sym_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(1769), - [anon_sym_export] = ACTIONS(1767), - [anon_sym_alias] = ACTIONS(1767), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_let_DASHenv] = ACTIONS(1767), - [anon_sym_mut] = ACTIONS(1767), - [anon_sym_const] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [sym_cmd_identifier] = ACTIONS(1767), - [anon_sym_LF] = ACTIONS(1769), - [anon_sym_def] = ACTIONS(1767), - [anon_sym_def_DASHenv] = ACTIONS(1767), - [anon_sym_export_DASHenv] = ACTIONS(1767), - [anon_sym_extern] = ACTIONS(1767), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_use] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_break] = ACTIONS(1767), - [anon_sym_continue] = ACTIONS(1767), - [anon_sym_for] = ACTIONS(1767), - [anon_sym_loop] = ACTIONS(1767), - [anon_sym_while] = ACTIONS(1767), - [anon_sym_do] = ACTIONS(1767), - [anon_sym_if] = ACTIONS(1767), - [anon_sym_match] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1767), - [anon_sym_return] = ACTIONS(1767), - [anon_sym_source] = ACTIONS(1767), - [anon_sym_source_DASHenv] = ACTIONS(1767), - [anon_sym_register] = ACTIONS(1767), - [anon_sym_hide] = ACTIONS(1767), - [anon_sym_hide_DASHenv] = ACTIONS(1767), - [anon_sym_overlay] = ACTIONS(1767), - [anon_sym_where] = ACTIONS(1767), - [anon_sym_not] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [sym_val_nothing] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym_val_number_token1] = ACTIONS(1767), - [aux_sym_val_number_token2] = ACTIONS(1767), - [aux_sym_val_number_token3] = ACTIONS(1767), - [aux_sym_val_number_token4] = ACTIONS(1767), - [aux_sym_val_number_token5] = ACTIONS(1767), - [anon_sym_inf] = ACTIONS(1767), - [anon_sym_DASHinf] = ACTIONS(1767), - [anon_sym_NaN] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1767), - [anon_sym_0o] = ACTIONS(1767), - [anon_sym_0x] = ACTIONS(1767), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_CARET] = ACTIONS(1767), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_alias] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_let_DASHenv] = ACTIONS(2031), + [anon_sym_mut] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2033), + [sym_cmd_identifier] = ACTIONS(2031), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_def] = ACTIONS(2031), + [anon_sym_def_DASHenv] = ACTIONS(2031), + [anon_sym_export_DASHenv] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2031), + [anon_sym_module] = ACTIONS(2031), + [anon_sym_use] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2039), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_loop] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_do] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_source] = ACTIONS(2031), + [anon_sym_source_DASHenv] = ACTIONS(2031), + [anon_sym_register] = ACTIONS(2031), + [anon_sym_hide] = ACTIONS(2031), + [anon_sym_hide_DASHenv] = ACTIONS(2031), + [anon_sym_overlay] = ACTIONS(2031), + [anon_sym_where] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2031), + [sym_val_nothing] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [aux_sym_val_number_token1] = ACTIONS(2031), + [aux_sym_val_number_token2] = ACTIONS(2031), + [aux_sym_val_number_token3] = ACTIONS(2031), + [aux_sym_val_number_token4] = ACTIONS(2031), + [aux_sym_val_number_token5] = ACTIONS(2031), + [anon_sym_inf] = ACTIONS(2031), + [anon_sym_DASHinf] = ACTIONS(2031), + [anon_sym_NaN] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2031), + [anon_sym_0o] = ACTIONS(2031), + [anon_sym_0x] = ACTIONS(2031), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2007), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2010), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), + [624] = { + [sym_comment] = STATE(624), + [ts_builtin_sym_end] = ACTIONS(2041), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [anon_sym_SEMI] = ACTIONS(1751), + [sym_cmd_identifier] = ACTIONS(1749), + [anon_sym_LF] = ACTIONS(1754), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_def_DASHenv] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_where] = ACTIONS(1749), + [anon_sym_not] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [sym_val_nothing] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1749), + [anon_sym_false] = ACTIONS(1749), + [aux_sym_val_number_token1] = ACTIONS(1749), + [aux_sym_val_number_token2] = ACTIONS(1749), + [aux_sym_val_number_token3] = ACTIONS(1749), + [aux_sym_val_number_token4] = ACTIONS(1749), + [aux_sym_val_number_token5] = ACTIONS(1749), + [anon_sym_inf] = ACTIONS(1749), + [anon_sym_DASHinf] = ACTIONS(1749), + [anon_sym_NaN] = ACTIONS(1749), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), + [anon_sym_CARET] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(3), }, - [642] = { - [sym_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(1781), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_alias] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_let_DASHenv] = ACTIONS(1779), - [anon_sym_mut] = ACTIONS(1779), - [anon_sym_const] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(1779), - [sym_cmd_identifier] = ACTIONS(1779), - [anon_sym_LF] = ACTIONS(1781), - [anon_sym_def] = ACTIONS(1779), - [anon_sym_def_DASHenv] = ACTIONS(1779), - [anon_sym_export_DASHenv] = ACTIONS(1779), - [anon_sym_extern] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_use] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(1779), - [anon_sym_error] = ACTIONS(1779), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_break] = ACTIONS(1779), - [anon_sym_continue] = ACTIONS(1779), - [anon_sym_for] = ACTIONS(1779), - [anon_sym_loop] = ACTIONS(1779), - [anon_sym_while] = ACTIONS(1779), - [anon_sym_do] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(1779), - [anon_sym_match] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_try] = ACTIONS(1779), - [anon_sym_return] = ACTIONS(1779), - [anon_sym_source] = ACTIONS(1779), - [anon_sym_source_DASHenv] = ACTIONS(1779), - [anon_sym_register] = ACTIONS(1779), - [anon_sym_hide] = ACTIONS(1779), - [anon_sym_hide_DASHenv] = ACTIONS(1779), - [anon_sym_overlay] = ACTIONS(1779), - [anon_sym_where] = ACTIONS(1779), - [anon_sym_not] = ACTIONS(1779), - [anon_sym_DOT_DOT_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1779), - [sym_val_nothing] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1779), - [anon_sym_false] = ACTIONS(1779), - [aux_sym_val_number_token1] = ACTIONS(1779), - [aux_sym_val_number_token2] = ACTIONS(1779), - [aux_sym_val_number_token3] = ACTIONS(1779), - [aux_sym_val_number_token4] = ACTIONS(1779), - [aux_sym_val_number_token5] = ACTIONS(1779), - [anon_sym_inf] = ACTIONS(1779), - [anon_sym_DASHinf] = ACTIONS(1779), - [anon_sym_NaN] = ACTIONS(1779), - [anon_sym_0b] = ACTIONS(1779), - [anon_sym_0o] = ACTIONS(1779), - [anon_sym_0x] = ACTIONS(1779), - [sym_val_date] = ACTIONS(1779), - [anon_sym_DQUOTE] = ACTIONS(1779), - [sym__str_single_quotes] = ACTIONS(1779), - [sym__str_back_ticks] = ACTIONS(1779), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1779), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1779), - [anon_sym_CARET] = ACTIONS(1779), + [625] = { + [sym_comment] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(2043), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_alias] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_let_DASHenv] = ACTIONS(1725), + [anon_sym_mut] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1727), + [sym_cmd_identifier] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(1730), + [anon_sym_def] = ACTIONS(1725), + [anon_sym_def_DASHenv] = ACTIONS(1725), + [anon_sym_export_DASHenv] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_use] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_error] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_loop] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_source] = ACTIONS(1725), + [anon_sym_source_DASHenv] = ACTIONS(1725), + [anon_sym_register] = ACTIONS(1725), + [anon_sym_hide] = ACTIONS(1725), + [anon_sym_hide_DASHenv] = ACTIONS(1725), + [anon_sym_overlay] = ACTIONS(1725), + [anon_sym_where] = ACTIONS(1725), + [anon_sym_not] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), + [sym_val_nothing] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym_val_number_token1] = ACTIONS(1725), + [aux_sym_val_number_token2] = ACTIONS(1725), + [aux_sym_val_number_token3] = ACTIONS(1725), + [aux_sym_val_number_token4] = ACTIONS(1725), + [aux_sym_val_number_token5] = ACTIONS(1725), + [anon_sym_inf] = ACTIONS(1725), + [anon_sym_DASHinf] = ACTIONS(1725), + [anon_sym_NaN] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1725), + [anon_sym_0x] = ACTIONS(1725), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), }, - [643] = { - [sym_comment] = STATE(643), + [626] = { + [sym_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(1723), [anon_sym_export] = ACTIONS(1721), [anon_sym_alias] = ACTIONS(1721), @@ -97142,960 +96063,1164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(3), }, - [644] = { - [sym_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(1951), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [anon_sym_SEMI] = ACTIONS(1949), - [sym_cmd_identifier] = ACTIONS(1949), - [anon_sym_LF] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_def_DASHenv] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_where] = ACTIONS(1949), - [anon_sym_not] = ACTIONS(1949), - [anon_sym_DOT_DOT_LT] = ACTIONS(1949), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1949), - [sym_val_nothing] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [aux_sym_val_number_token1] = ACTIONS(1949), - [aux_sym_val_number_token2] = ACTIONS(1949), - [aux_sym_val_number_token3] = ACTIONS(1949), - [aux_sym_val_number_token4] = ACTIONS(1949), - [aux_sym_val_number_token5] = ACTIONS(1949), - [anon_sym_inf] = ACTIONS(1949), - [anon_sym_DASHinf] = ACTIONS(1949), - [anon_sym_NaN] = ACTIONS(1949), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1949), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1949), - [anon_sym_CARET] = ACTIONS(1949), + [627] = { + [sym_comment] = STATE(627), + [ts_builtin_sym_end] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [sym_cmd_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_def_DASHenv] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_where] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [sym_val_nothing] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_val_number_token1] = ACTIONS(1799), + [aux_sym_val_number_token2] = ACTIONS(1799), + [aux_sym_val_number_token3] = ACTIONS(1799), + [aux_sym_val_number_token4] = ACTIONS(1799), + [aux_sym_val_number_token5] = ACTIONS(1799), + [anon_sym_inf] = ACTIONS(1799), + [anon_sym_DASHinf] = ACTIONS(1799), + [anon_sym_NaN] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), }, - [645] = { - [sym_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1721), - [sym_cmd_identifier] = ACTIONS(1721), - [anon_sym_LF] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_def_DASHenv] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LBRACK] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_where] = ACTIONS(1721), - [anon_sym_not] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [sym_val_nothing] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [aux_sym_val_number_token1] = ACTIONS(1721), - [aux_sym_val_number_token2] = ACTIONS(1721), - [aux_sym_val_number_token3] = ACTIONS(1721), - [aux_sym_val_number_token4] = ACTIONS(1721), - [aux_sym_val_number_token5] = ACTIONS(1721), - [anon_sym_inf] = ACTIONS(1721), - [anon_sym_DASHinf] = ACTIONS(1721), - [anon_sym_NaN] = ACTIONS(1721), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1721), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1721), - [anon_sym_CARET] = ACTIONS(1721), + [628] = { + [sym_comment] = STATE(628), + [ts_builtin_sym_end] = ACTIONS(2045), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1983), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_def_DASHenv] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_DOT_DOT_LT] = ACTIONS(1981), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), + [sym_val_nothing] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym_val_number_token1] = ACTIONS(1981), + [aux_sym_val_number_token2] = ACTIONS(1981), + [aux_sym_val_number_token3] = ACTIONS(1981), + [aux_sym_val_number_token4] = ACTIONS(1981), + [aux_sym_val_number_token5] = ACTIONS(1981), + [anon_sym_inf] = ACTIONS(1981), + [anon_sym_DASHinf] = ACTIONS(1981), + [anon_sym_NaN] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), [anon_sym_POUND] = ACTIONS(3), }, - [646] = { - [sym_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [629] = { + [sym_comment] = STATE(629), + [ts_builtin_sym_end] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1799), + [anon_sym_alias] = ACTIONS(1799), + [anon_sym_let] = ACTIONS(1799), + [anon_sym_let_DASHenv] = ACTIONS(1799), + [anon_sym_mut] = ACTIONS(1799), + [anon_sym_const] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1799), + [sym_cmd_identifier] = ACTIONS(1799), + [anon_sym_LF] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1799), + [anon_sym_def_DASHenv] = ACTIONS(1799), + [anon_sym_export_DASHenv] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_module] = ACTIONS(1799), + [anon_sym_use] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1799), + [anon_sym_DOLLAR] = ACTIONS(1799), + [anon_sym_error] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_loop] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_match] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1799), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_source] = ACTIONS(1799), + [anon_sym_source_DASHenv] = ACTIONS(1799), + [anon_sym_register] = ACTIONS(1799), + [anon_sym_hide] = ACTIONS(1799), + [anon_sym_hide_DASHenv] = ACTIONS(1799), + [anon_sym_overlay] = ACTIONS(1799), + [anon_sym_where] = ACTIONS(1799), + [anon_sym_not] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT] = ACTIONS(1799), + [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1799), + [sym_val_nothing] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_val_number_token1] = ACTIONS(1799), + [aux_sym_val_number_token2] = ACTIONS(1799), + [aux_sym_val_number_token3] = ACTIONS(1799), + [aux_sym_val_number_token4] = ACTIONS(1799), + [aux_sym_val_number_token5] = ACTIONS(1799), + [anon_sym_inf] = ACTIONS(1799), + [anon_sym_DASHinf] = ACTIONS(1799), + [anon_sym_NaN] = ACTIONS(1799), + [anon_sym_0b] = ACTIONS(1799), + [anon_sym_0o] = ACTIONS(1799), + [anon_sym_0x] = ACTIONS(1799), + [sym_val_date] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1799), + [sym__str_single_quotes] = ACTIONS(1799), + [sym__str_back_ticks] = ACTIONS(1799), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1799), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1799), [anon_sym_POUND] = ACTIONS(3), }, - [647] = { - [sym_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(1727), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1725), - [sym_cmd_identifier] = ACTIONS(1725), - [anon_sym_LF] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_def_DASHenv] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_where] = ACTIONS(1725), - [anon_sym_not] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [sym_val_nothing] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [aux_sym_val_number_token1] = ACTIONS(1725), - [aux_sym_val_number_token2] = ACTIONS(1725), - [aux_sym_val_number_token3] = ACTIONS(1725), - [aux_sym_val_number_token4] = ACTIONS(1725), - [aux_sym_val_number_token5] = ACTIONS(1725), - [anon_sym_inf] = ACTIONS(1725), - [anon_sym_DASHinf] = ACTIONS(1725), - [anon_sym_NaN] = ACTIONS(1725), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), - [anon_sym_CARET] = ACTIONS(1725), + [630] = { + [sym_comment] = STATE(630), + [ts_builtin_sym_end] = ACTIONS(1797), + [anon_sym_export] = ACTIONS(1795), + [anon_sym_alias] = ACTIONS(1795), + [anon_sym_let] = ACTIONS(1795), + [anon_sym_let_DASHenv] = ACTIONS(1795), + [anon_sym_mut] = ACTIONS(1795), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_SEMI] = ACTIONS(1795), + [sym_cmd_identifier] = ACTIONS(1795), + [anon_sym_LF] = ACTIONS(1797), + [anon_sym_def] = ACTIONS(1795), + [anon_sym_def_DASHenv] = ACTIONS(1795), + [anon_sym_export_DASHenv] = ACTIONS(1795), + [anon_sym_extern] = ACTIONS(1795), + [anon_sym_module] = ACTIONS(1795), + [anon_sym_use] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1795), + [anon_sym_DOLLAR] = ACTIONS(1795), + [anon_sym_error] = ACTIONS(1795), + [anon_sym_DASH] = ACTIONS(1795), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_for] = ACTIONS(1795), + [anon_sym_loop] = ACTIONS(1795), + [anon_sym_while] = ACTIONS(1795), + [anon_sym_do] = ACTIONS(1795), + [anon_sym_if] = ACTIONS(1795), + [anon_sym_match] = ACTIONS(1795), + [anon_sym_LBRACE] = ACTIONS(1795), + [anon_sym_try] = ACTIONS(1795), + [anon_sym_return] = ACTIONS(1795), + [anon_sym_source] = ACTIONS(1795), + [anon_sym_source_DASHenv] = ACTIONS(1795), + [anon_sym_register] = ACTIONS(1795), + [anon_sym_hide] = ACTIONS(1795), + [anon_sym_hide_DASHenv] = ACTIONS(1795), + [anon_sym_overlay] = ACTIONS(1795), + [anon_sym_where] = ACTIONS(1795), + [anon_sym_not] = ACTIONS(1795), + [anon_sym_DOT_DOT_LT] = ACTIONS(1795), + [anon_sym_DOT_DOT] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1795), + [sym_val_nothing] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(1795), + [anon_sym_false] = ACTIONS(1795), + [aux_sym_val_number_token1] = ACTIONS(1795), + [aux_sym_val_number_token2] = ACTIONS(1795), + [aux_sym_val_number_token3] = ACTIONS(1795), + [aux_sym_val_number_token4] = ACTIONS(1795), + [aux_sym_val_number_token5] = ACTIONS(1795), + [anon_sym_inf] = ACTIONS(1795), + [anon_sym_DASHinf] = ACTIONS(1795), + [anon_sym_NaN] = ACTIONS(1795), + [anon_sym_0b] = ACTIONS(1795), + [anon_sym_0o] = ACTIONS(1795), + [anon_sym_0x] = ACTIONS(1795), + [sym_val_date] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(1795), + [sym__str_single_quotes] = ACTIONS(1795), + [sym__str_back_ticks] = ACTIONS(1795), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1795), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1795), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_POUND] = ACTIONS(3), + }, + [631] = { + [sym_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(1737), + [anon_sym_export] = ACTIONS(1735), + [anon_sym_alias] = ACTIONS(1735), + [anon_sym_let] = ACTIONS(1735), + [anon_sym_let_DASHenv] = ACTIONS(1735), + [anon_sym_mut] = ACTIONS(1735), + [anon_sym_const] = ACTIONS(1735), + [anon_sym_SEMI] = ACTIONS(1735), + [sym_cmd_identifier] = ACTIONS(1735), + [anon_sym_LF] = ACTIONS(1737), + [anon_sym_def] = ACTIONS(1735), + [anon_sym_def_DASHenv] = ACTIONS(1735), + [anon_sym_export_DASHenv] = ACTIONS(1735), + [anon_sym_extern] = ACTIONS(1735), + [anon_sym_module] = ACTIONS(1735), + [anon_sym_use] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_LPAREN] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_error] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_for] = ACTIONS(1735), + [anon_sym_loop] = ACTIONS(1735), + [anon_sym_while] = ACTIONS(1735), + [anon_sym_do] = ACTIONS(1735), + [anon_sym_if] = ACTIONS(1735), + [anon_sym_match] = ACTIONS(1735), + [anon_sym_LBRACE] = ACTIONS(1735), + [anon_sym_try] = ACTIONS(1735), + [anon_sym_return] = ACTIONS(1735), + [anon_sym_source] = ACTIONS(1735), + [anon_sym_source_DASHenv] = ACTIONS(1735), + [anon_sym_register] = ACTIONS(1735), + [anon_sym_hide] = ACTIONS(1735), + [anon_sym_hide_DASHenv] = ACTIONS(1735), + [anon_sym_overlay] = ACTIONS(1735), + [anon_sym_where] = ACTIONS(1735), + [anon_sym_not] = ACTIONS(1735), + [anon_sym_DOT_DOT_LT] = ACTIONS(1735), + [anon_sym_DOT_DOT] = ACTIONS(1735), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1735), + [sym_val_nothing] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(1735), + [anon_sym_false] = ACTIONS(1735), + [aux_sym_val_number_token1] = ACTIONS(1735), + [aux_sym_val_number_token2] = ACTIONS(1735), + [aux_sym_val_number_token3] = ACTIONS(1735), + [aux_sym_val_number_token4] = ACTIONS(1735), + [aux_sym_val_number_token5] = ACTIONS(1735), + [anon_sym_inf] = ACTIONS(1735), + [anon_sym_DASHinf] = ACTIONS(1735), + [anon_sym_NaN] = ACTIONS(1735), + [anon_sym_0b] = ACTIONS(1735), + [anon_sym_0o] = ACTIONS(1735), + [anon_sym_0x] = ACTIONS(1735), + [sym_val_date] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(1735), + [sym__str_single_quotes] = ACTIONS(1735), + [sym__str_back_ticks] = ACTIONS(1735), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_POUND] = ACTIONS(3), + }, + [632] = { + [sym_comment] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1827), + [anon_sym_alias] = ACTIONS(1827), + [anon_sym_let] = ACTIONS(1827), + [anon_sym_let_DASHenv] = ACTIONS(1827), + [anon_sym_mut] = ACTIONS(1827), + [anon_sym_const] = ACTIONS(1827), + [anon_sym_SEMI] = ACTIONS(1827), + [sym_cmd_identifier] = ACTIONS(1827), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_def] = ACTIONS(1827), + [anon_sym_def_DASHenv] = ACTIONS(1827), + [anon_sym_export_DASHenv] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_module] = ACTIONS(1827), + [anon_sym_use] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_error] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_loop] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_match] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_source] = ACTIONS(1827), + [anon_sym_source_DASHenv] = ACTIONS(1827), + [anon_sym_register] = ACTIONS(1827), + [anon_sym_hide] = ACTIONS(1827), + [anon_sym_hide_DASHenv] = ACTIONS(1827), + [anon_sym_overlay] = ACTIONS(1827), + [anon_sym_where] = ACTIONS(1827), + [anon_sym_not] = ACTIONS(1827), + [anon_sym_DOT_DOT_LT] = ACTIONS(1827), + [anon_sym_DOT_DOT] = ACTIONS(1827), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), + [sym_val_nothing] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym_val_number_token1] = ACTIONS(1827), + [aux_sym_val_number_token2] = ACTIONS(1827), + [aux_sym_val_number_token3] = ACTIONS(1827), + [aux_sym_val_number_token4] = ACTIONS(1827), + [aux_sym_val_number_token5] = ACTIONS(1827), + [anon_sym_inf] = ACTIONS(1827), + [anon_sym_DASHinf] = ACTIONS(1827), + [anon_sym_NaN] = ACTIONS(1827), + [anon_sym_0b] = ACTIONS(1827), + [anon_sym_0o] = ACTIONS(1827), + [anon_sym_0x] = ACTIONS(1827), + [sym_val_date] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), }, - [648] = { - [sym_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(1883), - [anon_sym_export] = ACTIONS(1881), - [anon_sym_alias] = ACTIONS(1881), - [anon_sym_let] = ACTIONS(1881), - [anon_sym_let_DASHenv] = ACTIONS(1881), - [anon_sym_mut] = ACTIONS(1881), - [anon_sym_const] = ACTIONS(1881), - [anon_sym_SEMI] = ACTIONS(1881), - [sym_cmd_identifier] = ACTIONS(1881), - [anon_sym_LF] = ACTIONS(1883), - [anon_sym_def] = ACTIONS(1881), - [anon_sym_def_DASHenv] = ACTIONS(1881), - [anon_sym_export_DASHenv] = ACTIONS(1881), - [anon_sym_extern] = ACTIONS(1881), - [anon_sym_module] = ACTIONS(1881), - [anon_sym_use] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_DOLLAR] = ACTIONS(1881), - [anon_sym_error] = ACTIONS(1881), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_break] = ACTIONS(1881), - [anon_sym_continue] = ACTIONS(1881), - [anon_sym_for] = ACTIONS(1881), - [anon_sym_loop] = ACTIONS(1881), - [anon_sym_while] = ACTIONS(1881), - [anon_sym_do] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(1881), - [anon_sym_match] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_try] = ACTIONS(1881), - [anon_sym_return] = ACTIONS(1881), - [anon_sym_source] = ACTIONS(1881), - [anon_sym_source_DASHenv] = ACTIONS(1881), - [anon_sym_register] = ACTIONS(1881), - [anon_sym_hide] = ACTIONS(1881), - [anon_sym_hide_DASHenv] = ACTIONS(1881), - [anon_sym_overlay] = ACTIONS(1881), - [anon_sym_where] = ACTIONS(1881), - [anon_sym_not] = ACTIONS(1881), - [anon_sym_DOT_DOT_LT] = ACTIONS(1881), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), - [sym_val_nothing] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1881), - [anon_sym_false] = ACTIONS(1881), - [aux_sym_val_number_token1] = ACTIONS(1881), - [aux_sym_val_number_token2] = ACTIONS(1881), - [aux_sym_val_number_token3] = ACTIONS(1881), - [aux_sym_val_number_token4] = ACTIONS(1881), - [aux_sym_val_number_token5] = ACTIONS(1881), - [anon_sym_inf] = ACTIONS(1881), - [anon_sym_DASHinf] = ACTIONS(1881), - [anon_sym_NaN] = ACTIONS(1881), - [anon_sym_0b] = ACTIONS(1881), - [anon_sym_0o] = ACTIONS(1881), - [anon_sym_0x] = ACTIONS(1881), - [sym_val_date] = ACTIONS(1881), - [anon_sym_DQUOTE] = ACTIONS(1881), - [sym__str_single_quotes] = ACTIONS(1881), - [sym__str_back_ticks] = ACTIONS(1881), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), - [anon_sym_CARET] = ACTIONS(1881), + [633] = { + [sym_comment] = STATE(633), + [ts_builtin_sym_end] = ACTIONS(1793), + [anon_sym_export] = ACTIONS(1791), + [anon_sym_alias] = ACTIONS(1791), + [anon_sym_let] = ACTIONS(1791), + [anon_sym_let_DASHenv] = ACTIONS(1791), + [anon_sym_mut] = ACTIONS(1791), + [anon_sym_const] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [sym_cmd_identifier] = ACTIONS(1791), + [anon_sym_LF] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1791), + [anon_sym_def_DASHenv] = ACTIONS(1791), + [anon_sym_export_DASHenv] = ACTIONS(1791), + [anon_sym_extern] = ACTIONS(1791), + [anon_sym_module] = ACTIONS(1791), + [anon_sym_use] = ACTIONS(1791), + [anon_sym_LBRACK] = ACTIONS(1791), + [anon_sym_LPAREN] = ACTIONS(1791), + [anon_sym_DOLLAR] = ACTIONS(1791), + [anon_sym_error] = ACTIONS(1791), + [anon_sym_DASH] = ACTIONS(1791), + [anon_sym_break] = ACTIONS(1791), + [anon_sym_continue] = ACTIONS(1791), + [anon_sym_for] = ACTIONS(1791), + [anon_sym_loop] = ACTIONS(1791), + [anon_sym_while] = ACTIONS(1791), + [anon_sym_do] = ACTIONS(1791), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_match] = ACTIONS(1791), + [anon_sym_LBRACE] = ACTIONS(1791), + [anon_sym_try] = ACTIONS(1791), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_source] = ACTIONS(1791), + [anon_sym_source_DASHenv] = ACTIONS(1791), + [anon_sym_register] = ACTIONS(1791), + [anon_sym_hide] = ACTIONS(1791), + [anon_sym_hide_DASHenv] = ACTIONS(1791), + [anon_sym_overlay] = ACTIONS(1791), + [anon_sym_where] = ACTIONS(1791), + [anon_sym_not] = ACTIONS(1791), + [anon_sym_DOT_DOT_LT] = ACTIONS(1791), + [anon_sym_DOT_DOT] = ACTIONS(1791), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1791), + [sym_val_nothing] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(1791), + [anon_sym_false] = ACTIONS(1791), + [aux_sym_val_number_token1] = ACTIONS(1791), + [aux_sym_val_number_token2] = ACTIONS(1791), + [aux_sym_val_number_token3] = ACTIONS(1791), + [aux_sym_val_number_token4] = ACTIONS(1791), + [aux_sym_val_number_token5] = ACTIONS(1791), + [anon_sym_inf] = ACTIONS(1791), + [anon_sym_DASHinf] = ACTIONS(1791), + [anon_sym_NaN] = ACTIONS(1791), + [anon_sym_0b] = ACTIONS(1791), + [anon_sym_0o] = ACTIONS(1791), + [anon_sym_0x] = ACTIONS(1791), + [sym_val_date] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym__str_single_quotes] = ACTIONS(1791), + [sym__str_back_ticks] = ACTIONS(1791), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1791), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1791), + [anon_sym_CARET] = ACTIONS(1791), [anon_sym_POUND] = ACTIONS(3), }, - [649] = { - [sym_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1947), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [anon_sym_SEMI] = ACTIONS(1945), - [sym_cmd_identifier] = ACTIONS(1945), - [anon_sym_LF] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_def_DASHenv] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_where] = ACTIONS(1945), - [anon_sym_not] = ACTIONS(1945), - [anon_sym_DOT_DOT_LT] = ACTIONS(1945), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1945), - [sym_val_nothing] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [aux_sym_val_number_token1] = ACTIONS(1945), - [aux_sym_val_number_token2] = ACTIONS(1945), - [aux_sym_val_number_token3] = ACTIONS(1945), - [aux_sym_val_number_token4] = ACTIONS(1945), - [aux_sym_val_number_token5] = ACTIONS(1945), - [anon_sym_inf] = ACTIONS(1945), - [anon_sym_DASHinf] = ACTIONS(1945), - [anon_sym_NaN] = ACTIONS(1945), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1945), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1945), - [anon_sym_CARET] = ACTIONS(1945), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2049), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2052), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_RPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), [anon_sym_POUND] = ACTIONS(3), }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2017), - [sym_cmd_identifier] = ACTIONS(2015), - [anon_sym_LF] = ACTIONS(2020), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_def_DASHenv] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_RPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_where] = ACTIONS(2015), - [anon_sym_not] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [sym_val_nothing] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [aux_sym_val_number_token1] = ACTIONS(2015), - [aux_sym_val_number_token2] = ACTIONS(2015), - [aux_sym_val_number_token3] = ACTIONS(2015), - [aux_sym_val_number_token4] = ACTIONS(2015), - [aux_sym_val_number_token5] = ACTIONS(2015), - [anon_sym_inf] = ACTIONS(2015), - [anon_sym_DASHinf] = ACTIONS(2015), - [anon_sym_NaN] = ACTIONS(2015), - [anon_sym_0b] = ACTIONS(2015), - [anon_sym_0o] = ACTIONS(2015), - [anon_sym_0x] = ACTIONS(2015), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), + [635] = { + [sym_comment] = STATE(635), + [ts_builtin_sym_end] = ACTIONS(1761), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_alias] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_let_DASHenv] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_cmd_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1759), + [anon_sym_def_DASHenv] = ACTIONS(1759), + [anon_sym_export_DASHenv] = ACTIONS(1759), + [anon_sym_extern] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_use] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_error] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_loop] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_source] = ACTIONS(1759), + [anon_sym_source_DASHenv] = ACTIONS(1759), + [anon_sym_register] = ACTIONS(1759), + [anon_sym_hide] = ACTIONS(1759), + [anon_sym_hide_DASHenv] = ACTIONS(1759), + [anon_sym_overlay] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_not] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), + [sym_val_nothing] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [aux_sym_val_number_token1] = ACTIONS(1759), + [aux_sym_val_number_token2] = ACTIONS(1759), + [aux_sym_val_number_token3] = ACTIONS(1759), + [aux_sym_val_number_token4] = ACTIONS(1759), + [aux_sym_val_number_token5] = ACTIONS(1759), + [anon_sym_inf] = ACTIONS(1759), + [anon_sym_DASHinf] = ACTIONS(1759), + [anon_sym_NaN] = ACTIONS(1759), + [anon_sym_0b] = ACTIONS(1759), + [anon_sym_0o] = ACTIONS(1759), + [anon_sym_0x] = ACTIONS(1759), + [sym_val_date] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [sym__str_single_quotes] = ACTIONS(1759), + [sym__str_back_ticks] = ACTIONS(1759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(3), }, - [651] = { - [sym_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(1743), - [anon_sym_export] = ACTIONS(1741), - [anon_sym_alias] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_let_DASHenv] = ACTIONS(1741), - [anon_sym_mut] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1741), - [sym_cmd_identifier] = ACTIONS(1741), - [anon_sym_LF] = ACTIONS(1743), - [anon_sym_def] = ACTIONS(1741), - [anon_sym_def_DASHenv] = ACTIONS(1741), - [anon_sym_export_DASHenv] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_module] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_LPAREN] = ACTIONS(1741), - [anon_sym_DOLLAR] = ACTIONS(1741), - [anon_sym_error] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_do] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_LBRACE] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_source] = ACTIONS(1741), - [anon_sym_source_DASHenv] = ACTIONS(1741), - [anon_sym_register] = ACTIONS(1741), - [anon_sym_hide] = ACTIONS(1741), - [anon_sym_hide_DASHenv] = ACTIONS(1741), - [anon_sym_overlay] = ACTIONS(1741), - [anon_sym_where] = ACTIONS(1741), - [anon_sym_not] = ACTIONS(1741), - [anon_sym_DOT_DOT_LT] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1741), - [sym_val_nothing] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [aux_sym_val_number_token1] = ACTIONS(1741), - [aux_sym_val_number_token2] = ACTIONS(1741), - [aux_sym_val_number_token3] = ACTIONS(1741), - [aux_sym_val_number_token4] = ACTIONS(1741), - [aux_sym_val_number_token5] = ACTIONS(1741), - [anon_sym_inf] = ACTIONS(1741), - [anon_sym_DASHinf] = ACTIONS(1741), - [anon_sym_NaN] = ACTIONS(1741), - [anon_sym_0b] = ACTIONS(1741), - [anon_sym_0o] = ACTIONS(1741), - [anon_sym_0x] = ACTIONS(1741), - [sym_val_date] = ACTIONS(1741), - [anon_sym_DQUOTE] = ACTIONS(1741), - [sym__str_single_quotes] = ACTIONS(1741), - [sym__str_back_ticks] = ACTIONS(1741), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1741), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1741), - [anon_sym_CARET] = ACTIONS(1741), + [636] = { + [sym_comment] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(1761), + [anon_sym_export] = ACTIONS(1759), + [anon_sym_alias] = ACTIONS(1759), + [anon_sym_let] = ACTIONS(1759), + [anon_sym_let_DASHenv] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [sym_cmd_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_def] = ACTIONS(1759), + [anon_sym_def_DASHenv] = ACTIONS(1759), + [anon_sym_export_DASHenv] = ACTIONS(1759), + [anon_sym_extern] = ACTIONS(1759), + [anon_sym_module] = ACTIONS(1759), + [anon_sym_use] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_error] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_loop] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_source] = ACTIONS(1759), + [anon_sym_source_DASHenv] = ACTIONS(1759), + [anon_sym_register] = ACTIONS(1759), + [anon_sym_hide] = ACTIONS(1759), + [anon_sym_hide_DASHenv] = ACTIONS(1759), + [anon_sym_overlay] = ACTIONS(1759), + [anon_sym_where] = ACTIONS(1759), + [anon_sym_not] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), + [sym_val_nothing] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [aux_sym_val_number_token1] = ACTIONS(1759), + [aux_sym_val_number_token2] = ACTIONS(1759), + [aux_sym_val_number_token3] = ACTIONS(1759), + [aux_sym_val_number_token4] = ACTIONS(1759), + [aux_sym_val_number_token5] = ACTIONS(1759), + [anon_sym_inf] = ACTIONS(1759), + [anon_sym_DASHinf] = ACTIONS(1759), + [anon_sym_NaN] = ACTIONS(1759), + [anon_sym_0b] = ACTIONS(1759), + [anon_sym_0o] = ACTIONS(1759), + [anon_sym_0x] = ACTIONS(1759), + [sym_val_date] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [sym__str_single_quotes] = ACTIONS(1759), + [sym__str_back_ticks] = ACTIONS(1759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(3), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2027), - [sym_cmd_identifier] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2030), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_def_DASHenv] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_where] = ACTIONS(2025), - [anon_sym_not] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [sym_val_nothing] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [aux_sym_val_number_token1] = ACTIONS(2025), - [aux_sym_val_number_token2] = ACTIONS(2025), - [aux_sym_val_number_token3] = ACTIONS(2025), - [aux_sym_val_number_token4] = ACTIONS(2025), - [aux_sym_val_number_token5] = ACTIONS(2025), - [anon_sym_inf] = ACTIONS(2025), - [anon_sym_DASHinf] = ACTIONS(2025), - [anon_sym_NaN] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_CARET] = ACTIONS(2025), + [637] = { + [sym_comment] = STATE(637), + [ts_builtin_sym_end] = ACTIONS(1789), + [anon_sym_export] = ACTIONS(1787), + [anon_sym_alias] = ACTIONS(1787), + [anon_sym_let] = ACTIONS(1787), + [anon_sym_let_DASHenv] = ACTIONS(1787), + [anon_sym_mut] = ACTIONS(1787), + [anon_sym_const] = ACTIONS(1787), + [anon_sym_SEMI] = ACTIONS(1787), + [sym_cmd_identifier] = ACTIONS(1787), + [anon_sym_LF] = ACTIONS(1789), + [anon_sym_def] = ACTIONS(1787), + [anon_sym_def_DASHenv] = ACTIONS(1787), + [anon_sym_export_DASHenv] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_module] = ACTIONS(1787), + [anon_sym_use] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1787), + [anon_sym_DOLLAR] = ACTIONS(1787), + [anon_sym_error] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_loop] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_match] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1787), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_source] = ACTIONS(1787), + [anon_sym_source_DASHenv] = ACTIONS(1787), + [anon_sym_register] = ACTIONS(1787), + [anon_sym_hide] = ACTIONS(1787), + [anon_sym_hide_DASHenv] = ACTIONS(1787), + [anon_sym_overlay] = ACTIONS(1787), + [anon_sym_where] = ACTIONS(1787), + [anon_sym_not] = ACTIONS(1787), + [anon_sym_DOT_DOT_LT] = ACTIONS(1787), + [anon_sym_DOT_DOT] = ACTIONS(1787), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), + [sym_val_nothing] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_val_number_token1] = ACTIONS(1787), + [aux_sym_val_number_token2] = ACTIONS(1787), + [aux_sym_val_number_token3] = ACTIONS(1787), + [aux_sym_val_number_token4] = ACTIONS(1787), + [aux_sym_val_number_token5] = ACTIONS(1787), + [anon_sym_inf] = ACTIONS(1787), + [anon_sym_DASHinf] = ACTIONS(1787), + [anon_sym_NaN] = ACTIONS(1787), + [anon_sym_0b] = ACTIONS(1787), + [anon_sym_0o] = ACTIONS(1787), + [anon_sym_0x] = ACTIONS(1787), + [sym_val_date] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1787), + [sym__str_single_quotes] = ACTIONS(1787), + [sym__str_back_ticks] = ACTIONS(1787), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1787), [anon_sym_POUND] = ACTIONS(3), }, - [653] = { - [sym_ctrl_do] = STATE(3041), - [sym_ctrl_if] = STATE(3041), - [sym_ctrl_match] = STATE(3041), - [sym_ctrl_try] = STATE(3041), - [sym__expression] = STATE(2229), - [sym_expr_unary] = STATE(2203), - [sym_expr_binary] = STATE(2203), - [sym_expr_parenthesized] = STATE(1779), - [sym_val_range] = STATE(2203), - [sym__value] = STATE(2203), - [sym_val_bool] = STATE(2257), - [sym_val_variable] = STATE(2257), - [sym__var] = STATE(1830), - [sym_val_number] = STATE(105), - [sym_val_duration] = STATE(2257), - [sym_val_filesize] = STATE(2257), - [sym_val_binary] = STATE(2257), - [sym_val_string] = STATE(2257), - [sym__str_double_quotes] = STATE(2070), - [sym_val_interpolated] = STATE(2257), - [sym__inter_single_quotes] = STATE(2260), - [sym__inter_double_quotes] = STATE(2261), - [sym_val_list] = STATE(2257), - [sym_val_record] = STATE(2257), - [sym_val_table] = STATE(2257), - [sym_val_closure] = STATE(2257), - [sym_comment] = STATE(653), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_LF] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(189), - [anon_sym_do] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_match] = ACTIONS(205), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(211), - [anon_sym_not] = ACTIONS(227), - [anon_sym_DOT_DOT_LT] = ACTIONS(231), - [anon_sym_DOT_DOT] = ACTIONS(231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(231), - [sym_val_nothing] = ACTIONS(233), - [anon_sym_true] = ACTIONS(235), - [anon_sym_false] = ACTIONS(235), - [aux_sym_val_number_token1] = ACTIONS(237), - [aux_sym_val_number_token2] = ACTIONS(237), - [aux_sym_val_number_token3] = ACTIONS(237), - [aux_sym_val_number_token4] = ACTIONS(237), - [aux_sym_val_number_token5] = ACTIONS(237), - [anon_sym_inf] = ACTIONS(237), - [anon_sym_DASHinf] = ACTIONS(237), - [anon_sym_NaN] = ACTIONS(237), - [anon_sym_0b] = ACTIONS(241), - [anon_sym_0o] = ACTIONS(241), - [anon_sym_0x] = ACTIONS(241), - [sym_val_date] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(2045), - [sym__str_single_quotes] = ACTIONS(2047), - [sym__str_back_ticks] = ACTIONS(2047), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2051), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [sym_cmd_identifier] = ACTIONS(779), + [anon_sym_COLON] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(781), + [anon_sym_COMMA] = ACTIONS(781), + [anon_sym_RBRACK] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_in] = ACTIONS(779), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_QMARK2] = ACTIONS(781), + [anon_sym_STAR_STAR] = ACTIONS(781), + [anon_sym_PLUS_PLUS] = ACTIONS(781), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(781), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_bit_DASHshl] = ACTIONS(779), + [anon_sym_bit_DASHshr] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(781), + [anon_sym_LT2] = ACTIONS(779), + [anon_sym_LT_EQ] = ACTIONS(781), + [anon_sym_GT_EQ] = ACTIONS(781), + [anon_sym_not_DASHin] = ACTIONS(779), + [anon_sym_starts_DASHwith] = ACTIONS(779), + [anon_sym_ends_DASHwith] = ACTIONS(779), + [anon_sym_EQ_TILDE] = ACTIONS(781), + [anon_sym_BANG_TILDE] = ACTIONS(781), + [anon_sym_bit_DASHand] = ACTIONS(779), + [anon_sym_bit_DASHxor] = ACTIONS(779), + [anon_sym_bit_DASHor] = ACTIONS(779), + [anon_sym_and] = ACTIONS(779), + [anon_sym_xor] = ACTIONS(779), + [anon_sym_or] = ACTIONS(779), + [anon_sym_not] = ACTIONS(779), + [anon_sym_DOT_DOT_LT] = ACTIONS(781), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_EQ] = ACTIONS(781), + [sym_val_nothing] = ACTIONS(779), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [aux_sym_val_number_token1] = ACTIONS(779), + [aux_sym_val_number_token2] = ACTIONS(779), + [aux_sym_val_number_token3] = ACTIONS(781), + [aux_sym_val_number_token4] = ACTIONS(781), + [aux_sym_val_number_token5] = ACTIONS(781), + [anon_sym_inf] = ACTIONS(779), + [anon_sym_DASHinf] = ACTIONS(781), + [anon_sym_NaN] = ACTIONS(779), + [anon_sym_0b] = ACTIONS(779), + [anon_sym_0o] = ACTIONS(779), + [anon_sym_0x] = ACTIONS(779), + [sym_val_date] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(781), + [sym__str_single_quotes] = ACTIONS(781), + [sym__str_back_ticks] = ACTIONS(781), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(781), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(145), + }, + [639] = { + [sym_comment] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1741), + [anon_sym_export] = ACTIONS(1739), + [anon_sym_alias] = ACTIONS(1739), + [anon_sym_let] = ACTIONS(1739), + [anon_sym_let_DASHenv] = ACTIONS(1739), + [anon_sym_mut] = ACTIONS(1739), + [anon_sym_const] = ACTIONS(1739), + [anon_sym_SEMI] = ACTIONS(1739), + [sym_cmd_identifier] = ACTIONS(1739), + [anon_sym_LF] = ACTIONS(1741), + [anon_sym_def] = ACTIONS(1739), + [anon_sym_def_DASHenv] = ACTIONS(1739), + [anon_sym_export_DASHenv] = ACTIONS(1739), + [anon_sym_extern] = ACTIONS(1739), + [anon_sym_module] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1739), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_LPAREN] = ACTIONS(1739), + [anon_sym_DOLLAR] = ACTIONS(1739), + [anon_sym_error] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_break] = ACTIONS(1739), + [anon_sym_continue] = ACTIONS(1739), + [anon_sym_for] = ACTIONS(1739), + [anon_sym_loop] = ACTIONS(1739), + [anon_sym_while] = ACTIONS(1739), + [anon_sym_do] = ACTIONS(1739), + [anon_sym_if] = ACTIONS(1739), + [anon_sym_match] = ACTIONS(1739), + [anon_sym_LBRACE] = ACTIONS(1739), + [anon_sym_try] = ACTIONS(1739), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_source] = ACTIONS(1739), + [anon_sym_source_DASHenv] = ACTIONS(1739), + [anon_sym_register] = ACTIONS(1739), + [anon_sym_hide] = ACTIONS(1739), + [anon_sym_hide_DASHenv] = ACTIONS(1739), + [anon_sym_overlay] = ACTIONS(1739), + [anon_sym_where] = ACTIONS(1739), + [anon_sym_not] = ACTIONS(1739), + [anon_sym_DOT_DOT_LT] = ACTIONS(1739), + [anon_sym_DOT_DOT] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1739), + [sym_val_nothing] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(1739), + [anon_sym_false] = ACTIONS(1739), + [aux_sym_val_number_token1] = ACTIONS(1739), + [aux_sym_val_number_token2] = ACTIONS(1739), + [aux_sym_val_number_token3] = ACTIONS(1739), + [aux_sym_val_number_token4] = ACTIONS(1739), + [aux_sym_val_number_token5] = ACTIONS(1739), + [anon_sym_inf] = ACTIONS(1739), + [anon_sym_DASHinf] = ACTIONS(1739), + [anon_sym_NaN] = ACTIONS(1739), + [anon_sym_0b] = ACTIONS(1739), + [anon_sym_0o] = ACTIONS(1739), + [anon_sym_0x] = ACTIONS(1739), + [sym_val_date] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1739), + [sym__str_single_quotes] = ACTIONS(1739), + [sym__str_back_ticks] = ACTIONS(1739), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1739), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1739), + [anon_sym_CARET] = ACTIONS(1739), [anon_sym_POUND] = ACTIONS(3), }, - [654] = { - [sym_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), + [640] = { + [sym_comment] = STATE(640), + [ts_builtin_sym_end] = ACTIONS(1865), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [anon_sym_SEMI] = ACTIONS(1863), + [sym_cmd_identifier] = ACTIONS(1863), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_def_DASHenv] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_where] = ACTIONS(1863), + [anon_sym_not] = ACTIONS(1863), + [anon_sym_DOT_DOT_LT] = ACTIONS(1863), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), + [sym_val_nothing] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [aux_sym_val_number_token1] = ACTIONS(1863), + [aux_sym_val_number_token2] = ACTIONS(1863), + [aux_sym_val_number_token3] = ACTIONS(1863), + [aux_sym_val_number_token4] = ACTIONS(1863), + [aux_sym_val_number_token5] = ACTIONS(1863), + [anon_sym_inf] = ACTIONS(1863), + [anon_sym_DASHinf] = ACTIONS(1863), + [anon_sym_NaN] = ACTIONS(1863), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1863), [anon_sym_POUND] = ACTIONS(3), }, - [655] = { - [sym_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(1731), - [anon_sym_export] = ACTIONS(1729), - [anon_sym_alias] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_let_DASHenv] = ACTIONS(1729), - [anon_sym_mut] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1729), - [sym_cmd_identifier] = ACTIONS(1729), - [anon_sym_LF] = ACTIONS(1731), - [anon_sym_def] = ACTIONS(1729), - [anon_sym_def_DASHenv] = ACTIONS(1729), - [anon_sym_export_DASHenv] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_module] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_DOLLAR] = ACTIONS(1729), - [anon_sym_error] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_do] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_source] = ACTIONS(1729), - [anon_sym_source_DASHenv] = ACTIONS(1729), - [anon_sym_register] = ACTIONS(1729), - [anon_sym_hide] = ACTIONS(1729), - [anon_sym_hide_DASHenv] = ACTIONS(1729), - [anon_sym_overlay] = ACTIONS(1729), - [anon_sym_where] = ACTIONS(1729), - [anon_sym_not] = ACTIONS(1729), - [anon_sym_DOT_DOT_LT] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1729), - [sym_val_nothing] = ACTIONS(1729), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [aux_sym_val_number_token1] = ACTIONS(1729), - [aux_sym_val_number_token2] = ACTIONS(1729), - [aux_sym_val_number_token3] = ACTIONS(1729), - [aux_sym_val_number_token4] = ACTIONS(1729), - [aux_sym_val_number_token5] = ACTIONS(1729), - [anon_sym_inf] = ACTIONS(1729), - [anon_sym_DASHinf] = ACTIONS(1729), - [anon_sym_NaN] = ACTIONS(1729), - [anon_sym_0b] = ACTIONS(1729), - [anon_sym_0o] = ACTIONS(1729), - [anon_sym_0x] = ACTIONS(1729), - [sym_val_date] = ACTIONS(1729), - [anon_sym_DQUOTE] = ACTIONS(1729), - [sym__str_single_quotes] = ACTIONS(1729), - [sym__str_back_ticks] = ACTIONS(1729), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), + [641] = { + [sym_comment] = STATE(641), + [ts_builtin_sym_end] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [sym_cmd_identifier] = ACTIONS(1839), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_def_DASHenv] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_where] = ACTIONS(1839), + [anon_sym_not] = ACTIONS(1839), + [anon_sym_DOT_DOT_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), + [sym_val_nothing] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [aux_sym_val_number_token1] = ACTIONS(1839), + [aux_sym_val_number_token2] = ACTIONS(1839), + [aux_sym_val_number_token3] = ACTIONS(1839), + [aux_sym_val_number_token4] = ACTIONS(1839), + [aux_sym_val_number_token5] = ACTIONS(1839), + [anon_sym_inf] = ACTIONS(1839), + [anon_sym_DASHinf] = ACTIONS(1839), + [anon_sym_NaN] = ACTIONS(1839), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), + [anon_sym_CARET] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, - [656] = { - [sym_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [sym_cmd_identifier] = ACTIONS(1933), - [anon_sym_LF] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_def_DASHenv] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_where] = ACTIONS(1933), - [anon_sym_not] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [sym_val_nothing] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [aux_sym_val_number_token1] = ACTIONS(1933), - [aux_sym_val_number_token2] = ACTIONS(1933), - [aux_sym_val_number_token3] = ACTIONS(1933), - [aux_sym_val_number_token4] = ACTIONS(1933), - [aux_sym_val_number_token5] = ACTIONS(1933), - [anon_sym_inf] = ACTIONS(1933), - [anon_sym_DASHinf] = ACTIONS(1933), - [anon_sym_NaN] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1933), + [642] = { + [sym_comment] = STATE(642), + [ts_builtin_sym_end] = ACTIONS(1841), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [anon_sym_SEMI] = ACTIONS(1839), + [sym_cmd_identifier] = ACTIONS(1839), + [anon_sym_LF] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_def_DASHenv] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_where] = ACTIONS(1839), + [anon_sym_not] = ACTIONS(1839), + [anon_sym_DOT_DOT_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), + [sym_val_nothing] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1839), + [anon_sym_false] = ACTIONS(1839), + [aux_sym_val_number_token1] = ACTIONS(1839), + [aux_sym_val_number_token2] = ACTIONS(1839), + [aux_sym_val_number_token3] = ACTIONS(1839), + [aux_sym_val_number_token4] = ACTIONS(1839), + [aux_sym_val_number_token5] = ACTIONS(1839), + [anon_sym_inf] = ACTIONS(1839), + [anon_sym_DASHinf] = ACTIONS(1839), + [anon_sym_NaN] = ACTIONS(1839), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), + [anon_sym_CARET] = ACTIONS(1839), [anon_sym_POUND] = ACTIONS(3), }, - [657] = { - [sym_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(1735), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [sym_cmd_identifier] = ACTIONS(1733), - [anon_sym_LF] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_def_DASHenv] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_where] = ACTIONS(1733), - [anon_sym_not] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [sym_val_nothing] = ACTIONS(1733), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [aux_sym_val_number_token1] = ACTIONS(1733), - [aux_sym_val_number_token2] = ACTIONS(1733), - [aux_sym_val_number_token3] = ACTIONS(1733), - [aux_sym_val_number_token4] = ACTIONS(1733), - [aux_sym_val_number_token5] = ACTIONS(1733), - [anon_sym_inf] = ACTIONS(1733), - [anon_sym_DASHinf] = ACTIONS(1733), - [anon_sym_NaN] = ACTIONS(1733), - [anon_sym_0b] = ACTIONS(1733), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), - [anon_sym_CARET] = ACTIONS(1733), + [643] = { + [sym_comment] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(1993), + [anon_sym_export] = ACTIONS(1991), + [anon_sym_alias] = ACTIONS(1991), + [anon_sym_let] = ACTIONS(1991), + [anon_sym_let_DASHenv] = ACTIONS(1991), + [anon_sym_mut] = ACTIONS(1991), + [anon_sym_const] = ACTIONS(1991), + [anon_sym_SEMI] = ACTIONS(1991), + [sym_cmd_identifier] = ACTIONS(1991), + [anon_sym_LF] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1991), + [anon_sym_def_DASHenv] = ACTIONS(1991), + [anon_sym_export_DASHenv] = ACTIONS(1991), + [anon_sym_extern] = ACTIONS(1991), + [anon_sym_module] = ACTIONS(1991), + [anon_sym_use] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_DOLLAR] = ACTIONS(1991), + [anon_sym_error] = ACTIONS(1991), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_break] = ACTIONS(1991), + [anon_sym_continue] = ACTIONS(1991), + [anon_sym_for] = ACTIONS(1991), + [anon_sym_loop] = ACTIONS(1991), + [anon_sym_while] = ACTIONS(1991), + [anon_sym_do] = ACTIONS(1991), + [anon_sym_if] = ACTIONS(1991), + [anon_sym_match] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_try] = ACTIONS(1991), + [anon_sym_return] = ACTIONS(1991), + [anon_sym_source] = ACTIONS(1991), + [anon_sym_source_DASHenv] = ACTIONS(1991), + [anon_sym_register] = ACTIONS(1991), + [anon_sym_hide] = ACTIONS(1991), + [anon_sym_hide_DASHenv] = ACTIONS(1991), + [anon_sym_overlay] = ACTIONS(1991), + [anon_sym_where] = ACTIONS(1991), + [anon_sym_not] = ACTIONS(1991), + [anon_sym_DOT_DOT_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), + [sym_val_nothing] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1991), + [anon_sym_false] = ACTIONS(1991), + [aux_sym_val_number_token1] = ACTIONS(1991), + [aux_sym_val_number_token2] = ACTIONS(1991), + [aux_sym_val_number_token3] = ACTIONS(1991), + [aux_sym_val_number_token4] = ACTIONS(1991), + [aux_sym_val_number_token5] = ACTIONS(1991), + [anon_sym_inf] = ACTIONS(1991), + [anon_sym_DASHinf] = ACTIONS(1991), + [anon_sym_NaN] = ACTIONS(1991), + [anon_sym_0b] = ACTIONS(1991), + [anon_sym_0o] = ACTIONS(1991), + [anon_sym_0x] = ACTIONS(1991), + [sym_val_date] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(1991), + [sym__str_single_quotes] = ACTIONS(1991), + [sym__str_back_ticks] = ACTIONS(1991), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), + [anon_sym_CARET] = ACTIONS(1991), [anon_sym_POUND] = ACTIONS(3), }, - [658] = { - [sym_comment] = STATE(658), + [644] = { + [sym_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(1861), [anon_sym_export] = ACTIONS(1859), [anon_sym_alias] = ACTIONS(1859), @@ -98162,8 +97287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1859), [anon_sym_POUND] = ACTIONS(3), }, - [659] = { - [sym_comment] = STATE(659), + [645] = { + [sym_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(1857), [anon_sym_export] = ACTIONS(1855), [anon_sym_alias] = ACTIONS(1855), @@ -98230,154 +97355,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1855), [anon_sym_POUND] = ACTIONS(3), }, - [660] = { - [sym_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(1841), - [anon_sym_export] = ACTIONS(1839), - [anon_sym_alias] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_let_DASHenv] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1839), - [sym_cmd_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1841), - [anon_sym_def] = ACTIONS(1839), - [anon_sym_def_DASHenv] = ACTIONS(1839), - [anon_sym_export_DASHenv] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_module] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_DOLLAR] = ACTIONS(1839), - [anon_sym_error] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_do] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_source] = ACTIONS(1839), - [anon_sym_source_DASHenv] = ACTIONS(1839), - [anon_sym_register] = ACTIONS(1839), - [anon_sym_hide] = ACTIONS(1839), - [anon_sym_hide_DASHenv] = ACTIONS(1839), - [anon_sym_overlay] = ACTIONS(1839), - [anon_sym_where] = ACTIONS(1839), - [anon_sym_not] = ACTIONS(1839), - [anon_sym_DOT_DOT_LT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1839), - [sym_val_nothing] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [aux_sym_val_number_token1] = ACTIONS(1839), - [aux_sym_val_number_token2] = ACTIONS(1839), - [aux_sym_val_number_token3] = ACTIONS(1839), - [aux_sym_val_number_token4] = ACTIONS(1839), - [aux_sym_val_number_token5] = ACTIONS(1839), - [anon_sym_inf] = ACTIONS(1839), - [anon_sym_DASHinf] = ACTIONS(1839), - [anon_sym_NaN] = ACTIONS(1839), - [anon_sym_0b] = ACTIONS(1839), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1839), - [anon_sym_DQUOTE] = ACTIONS(1839), - [sym__str_single_quotes] = ACTIONS(1839), - [sym__str_back_ticks] = ACTIONS(1839), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1839), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1839), + [646] = { + [sym_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(1931), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_alias] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_let_DASHenv] = ACTIONS(1929), + [anon_sym_mut] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [sym_cmd_identifier] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1929), + [anon_sym_def_DASHenv] = ACTIONS(1929), + [anon_sym_export_DASHenv] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_error] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_do] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_source] = ACTIONS(1929), + [anon_sym_source_DASHenv] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1929), + [anon_sym_hide] = ACTIONS(1929), + [anon_sym_hide_DASHenv] = ACTIONS(1929), + [anon_sym_overlay] = ACTIONS(1929), + [anon_sym_where] = ACTIONS(1929), + [anon_sym_not] = ACTIONS(1929), + [anon_sym_DOT_DOT_LT] = ACTIONS(1929), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), + [sym_val_nothing] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [aux_sym_val_number_token1] = ACTIONS(1929), + [aux_sym_val_number_token2] = ACTIONS(1929), + [aux_sym_val_number_token3] = ACTIONS(1929), + [aux_sym_val_number_token4] = ACTIONS(1929), + [aux_sym_val_number_token5] = ACTIONS(1929), + [anon_sym_inf] = ACTIONS(1929), + [anon_sym_DASHinf] = ACTIONS(1929), + [anon_sym_NaN] = ACTIONS(1929), + [anon_sym_0b] = ACTIONS(1929), + [anon_sym_0o] = ACTIONS(1929), + [anon_sym_0x] = ACTIONS(1929), + [sym_val_date] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), + [anon_sym_CARET] = ACTIONS(1929), [anon_sym_POUND] = ACTIONS(3), }, - [661] = { - [sym_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(1825), - [anon_sym_export] = ACTIONS(1823), - [anon_sym_alias] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_let_DASHenv] = ACTIONS(1823), - [anon_sym_mut] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [sym_cmd_identifier] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_def] = ACTIONS(1823), - [anon_sym_def_DASHenv] = ACTIONS(1823), - [anon_sym_export_DASHenv] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_module] = ACTIONS(1823), - [anon_sym_use] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [anon_sym_error] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_loop] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_match] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_source] = ACTIONS(1823), - [anon_sym_source_DASHenv] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_hide] = ACTIONS(1823), - [anon_sym_hide_DASHenv] = ACTIONS(1823), - [anon_sym_overlay] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(1823), - [anon_sym_not] = ACTIONS(1823), - [anon_sym_DOT_DOT_LT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), - [sym_val_nothing] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [aux_sym_val_number_token1] = ACTIONS(1823), - [aux_sym_val_number_token2] = ACTIONS(1823), - [aux_sym_val_number_token3] = ACTIONS(1823), - [aux_sym_val_number_token4] = ACTIONS(1823), - [aux_sym_val_number_token5] = ACTIONS(1823), - [anon_sym_inf] = ACTIONS(1823), - [anon_sym_DASHinf] = ACTIONS(1823), - [anon_sym_NaN] = ACTIONS(1823), - [anon_sym_0b] = ACTIONS(1823), - [anon_sym_0o] = ACTIONS(1823), - [anon_sym_0x] = ACTIONS(1823), - [sym_val_date] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [sym__str_single_quotes] = ACTIONS(1823), - [sym__str_back_ticks] = ACTIONS(1823), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1823), - [anon_sym_CARET] = ACTIONS(1823), + [647] = { + [sym_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_alias] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_let_DASHenv] = ACTIONS(1925), + [anon_sym_mut] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(1925), + [sym_cmd_identifier] = ACTIONS(1925), + [anon_sym_LF] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1925), + [anon_sym_def_DASHenv] = ACTIONS(1925), + [anon_sym_export_DASHenv] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(1925), + [anon_sym_error] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_do] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_source] = ACTIONS(1925), + [anon_sym_source_DASHenv] = ACTIONS(1925), + [anon_sym_register] = ACTIONS(1925), + [anon_sym_hide] = ACTIONS(1925), + [anon_sym_hide_DASHenv] = ACTIONS(1925), + [anon_sym_overlay] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1925), + [anon_sym_not] = ACTIONS(1925), + [anon_sym_DOT_DOT_LT] = ACTIONS(1925), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), + [sym_val_nothing] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [aux_sym_val_number_token1] = ACTIONS(1925), + [aux_sym_val_number_token2] = ACTIONS(1925), + [aux_sym_val_number_token3] = ACTIONS(1925), + [aux_sym_val_number_token4] = ACTIONS(1925), + [aux_sym_val_number_token5] = ACTIONS(1925), + [anon_sym_inf] = ACTIONS(1925), + [anon_sym_DASHinf] = ACTIONS(1925), + [anon_sym_NaN] = ACTIONS(1925), + [anon_sym_0b] = ACTIONS(1925), + [anon_sym_0o] = ACTIONS(1925), + [anon_sym_0x] = ACTIONS(1925), + [sym_val_date] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1925), + [sym__str_single_quotes] = ACTIONS(1925), + [sym__str_back_ticks] = ACTIONS(1925), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), + [anon_sym_CARET] = ACTIONS(1925), + [anon_sym_POUND] = ACTIONS(3), + }, + [648] = { + [sym_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2001), + [anon_sym_export] = ACTIONS(1999), + [anon_sym_alias] = ACTIONS(1999), + [anon_sym_let] = ACTIONS(1999), + [anon_sym_let_DASHenv] = ACTIONS(1999), + [anon_sym_mut] = ACTIONS(1999), + [anon_sym_const] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [sym_cmd_identifier] = ACTIONS(1999), + [anon_sym_LF] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(1999), + [anon_sym_def_DASHenv] = ACTIONS(1999), + [anon_sym_export_DASHenv] = ACTIONS(1999), + [anon_sym_extern] = ACTIONS(1999), + [anon_sym_module] = ACTIONS(1999), + [anon_sym_use] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_break] = ACTIONS(1999), + [anon_sym_continue] = ACTIONS(1999), + [anon_sym_for] = ACTIONS(1999), + [anon_sym_loop] = ACTIONS(1999), + [anon_sym_while] = ACTIONS(1999), + [anon_sym_do] = ACTIONS(1999), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_match] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1999), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_source] = ACTIONS(1999), + [anon_sym_source_DASHenv] = ACTIONS(1999), + [anon_sym_register] = ACTIONS(1999), + [anon_sym_hide] = ACTIONS(1999), + [anon_sym_hide_DASHenv] = ACTIONS(1999), + [anon_sym_overlay] = ACTIONS(1999), + [anon_sym_where] = ACTIONS(1999), + [anon_sym_not] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [sym_val_nothing] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [aux_sym_val_number_token1] = ACTIONS(1999), + [aux_sym_val_number_token2] = ACTIONS(1999), + [aux_sym_val_number_token3] = ACTIONS(1999), + [aux_sym_val_number_token4] = ACTIONS(1999), + [aux_sym_val_number_token5] = ACTIONS(1999), + [anon_sym_inf] = ACTIONS(1999), + [anon_sym_DASHinf] = ACTIONS(1999), + [anon_sym_NaN] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1999), + [anon_sym_0o] = ACTIONS(1999), + [anon_sym_0x] = ACTIONS(1999), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_CARET] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(3), + }, + [649] = { + [sym_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_alias] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_let_DASHenv] = ACTIONS(1851), + [anon_sym_mut] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [anon_sym_SEMI] = ACTIONS(1851), + [sym_cmd_identifier] = ACTIONS(1851), + [anon_sym_LF] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_def_DASHenv] = ACTIONS(1851), + [anon_sym_export_DASHenv] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_error] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_source] = ACTIONS(1851), + [anon_sym_source_DASHenv] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1851), + [anon_sym_hide] = ACTIONS(1851), + [anon_sym_hide_DASHenv] = ACTIONS(1851), + [anon_sym_overlay] = ACTIONS(1851), + [anon_sym_where] = ACTIONS(1851), + [anon_sym_not] = ACTIONS(1851), + [anon_sym_DOT_DOT_LT] = ACTIONS(1851), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1851), + [sym_val_nothing] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [aux_sym_val_number_token1] = ACTIONS(1851), + [aux_sym_val_number_token2] = ACTIONS(1851), + [aux_sym_val_number_token3] = ACTIONS(1851), + [aux_sym_val_number_token4] = ACTIONS(1851), + [aux_sym_val_number_token5] = ACTIONS(1851), + [anon_sym_inf] = ACTIONS(1851), + [anon_sym_DASHinf] = ACTIONS(1851), + [anon_sym_NaN] = ACTIONS(1851), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0o] = ACTIONS(1851), + [anon_sym_0x] = ACTIONS(1851), + [sym_val_date] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1851), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), [anon_sym_POUND] = ACTIONS(3), }, - [662] = { - [sym_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2053), + [650] = { + [sym_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(1849), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [anon_sym_SEMI] = ACTIONS(1847), + [sym_cmd_identifier] = ACTIONS(1847), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_def_DASHenv] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_where] = ACTIONS(1847), + [anon_sym_not] = ACTIONS(1847), + [anon_sym_DOT_DOT_LT] = ACTIONS(1847), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1847), + [sym_val_nothing] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [aux_sym_val_number_token1] = ACTIONS(1847), + [aux_sym_val_number_token2] = ACTIONS(1847), + [aux_sym_val_number_token3] = ACTIONS(1847), + [aux_sym_val_number_token4] = ACTIONS(1847), + [aux_sym_val_number_token5] = ACTIONS(1847), + [anon_sym_inf] = ACTIONS(1847), + [anon_sym_DASHinf] = ACTIONS(1847), + [anon_sym_NaN] = ACTIONS(1847), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(3), + }, + [651] = { + [sym_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(1967), [anon_sym_export] = ACTIONS(1965), [anon_sym_alias] = ACTIONS(1965), [anon_sym_let] = ACTIONS(1965), [anon_sym_let_DASHenv] = ACTIONS(1965), [anon_sym_mut] = ACTIONS(1965), [anon_sym_const] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1967), + [anon_sym_SEMI] = ACTIONS(1965), [sym_cmd_identifier] = ACTIONS(1965), - [anon_sym_LF] = ACTIONS(1970), + [anon_sym_LF] = ACTIONS(1967), [anon_sym_def] = ACTIONS(1965), [anon_sym_def_DASHenv] = ACTIONS(1965), [anon_sym_export_DASHenv] = ACTIONS(1965), @@ -98434,552 +97763,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), }, - [663] = { - [sym_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(1903), - [anon_sym_export] = ACTIONS(1901), - [anon_sym_alias] = ACTIONS(1901), - [anon_sym_let] = ACTIONS(1901), - [anon_sym_let_DASHenv] = ACTIONS(1901), - [anon_sym_mut] = ACTIONS(1901), - [anon_sym_const] = ACTIONS(1901), - [anon_sym_SEMI] = ACTIONS(1901), - [sym_cmd_identifier] = ACTIONS(1901), - [anon_sym_LF] = ACTIONS(1903), - [anon_sym_def] = ACTIONS(1901), - [anon_sym_def_DASHenv] = ACTIONS(1901), - [anon_sym_export_DASHenv] = ACTIONS(1901), - [anon_sym_extern] = ACTIONS(1901), - [anon_sym_module] = ACTIONS(1901), - [anon_sym_use] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_DOLLAR] = ACTIONS(1901), - [anon_sym_error] = ACTIONS(1901), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_break] = ACTIONS(1901), - [anon_sym_continue] = ACTIONS(1901), - [anon_sym_for] = ACTIONS(1901), - [anon_sym_loop] = ACTIONS(1901), - [anon_sym_while] = ACTIONS(1901), - [anon_sym_do] = ACTIONS(1901), - [anon_sym_if] = ACTIONS(1901), - [anon_sym_match] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_try] = ACTIONS(1901), - [anon_sym_return] = ACTIONS(1901), - [anon_sym_source] = ACTIONS(1901), - [anon_sym_source_DASHenv] = ACTIONS(1901), - [anon_sym_register] = ACTIONS(1901), - [anon_sym_hide] = ACTIONS(1901), - [anon_sym_hide_DASHenv] = ACTIONS(1901), - [anon_sym_overlay] = ACTIONS(1901), - [anon_sym_where] = ACTIONS(1901), - [anon_sym_not] = ACTIONS(1901), - [anon_sym_DOT_DOT_LT] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1901), - [sym_val_nothing] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1901), - [anon_sym_false] = ACTIONS(1901), - [aux_sym_val_number_token1] = ACTIONS(1901), - [aux_sym_val_number_token2] = ACTIONS(1901), - [aux_sym_val_number_token3] = ACTIONS(1901), - [aux_sym_val_number_token4] = ACTIONS(1901), - [aux_sym_val_number_token5] = ACTIONS(1901), - [anon_sym_inf] = ACTIONS(1901), - [anon_sym_DASHinf] = ACTIONS(1901), - [anon_sym_NaN] = ACTIONS(1901), - [anon_sym_0b] = ACTIONS(1901), - [anon_sym_0o] = ACTIONS(1901), - [anon_sym_0x] = ACTIONS(1901), - [sym_val_date] = ACTIONS(1901), - [anon_sym_DQUOTE] = ACTIONS(1901), - [sym__str_single_quotes] = ACTIONS(1901), - [sym__str_back_ticks] = ACTIONS(1901), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1901), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(3), - }, - [664] = { - [sym_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(1985), - [anon_sym_export] = ACTIONS(1983), - [anon_sym_alias] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_let_DASHenv] = ACTIONS(1983), - [anon_sym_mut] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [sym_cmd_identifier] = ACTIONS(1983), - [anon_sym_LF] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1983), - [anon_sym_def_DASHenv] = ACTIONS(1983), - [anon_sym_export_DASHenv] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_module] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_do] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_source] = ACTIONS(1983), - [anon_sym_source_DASHenv] = ACTIONS(1983), - [anon_sym_register] = ACTIONS(1983), - [anon_sym_hide] = ACTIONS(1983), - [anon_sym_hide_DASHenv] = ACTIONS(1983), - [anon_sym_overlay] = ACTIONS(1983), - [anon_sym_where] = ACTIONS(1983), - [anon_sym_not] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [sym_val_nothing] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [aux_sym_val_number_token1] = ACTIONS(1983), - [aux_sym_val_number_token2] = ACTIONS(1983), - [aux_sym_val_number_token3] = ACTIONS(1983), - [aux_sym_val_number_token4] = ACTIONS(1983), - [aux_sym_val_number_token5] = ACTIONS(1983), - [anon_sym_inf] = ACTIONS(1983), - [anon_sym_DASHinf] = ACTIONS(1983), - [anon_sym_NaN] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1983), - [anon_sym_0o] = ACTIONS(1983), - [anon_sym_0x] = ACTIONS(1983), - [sym_val_date] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_CARET] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(3), - }, - [665] = { - [sym_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1761), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_alias] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_let_DASHenv] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [sym_cmd_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_def] = ACTIONS(1759), - [anon_sym_def_DASHenv] = ACTIONS(1759), - [anon_sym_export_DASHenv] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_use] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_loop] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_source] = ACTIONS(1759), - [anon_sym_source_DASHenv] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_hide] = ACTIONS(1759), - [anon_sym_hide_DASHenv] = ACTIONS(1759), - [anon_sym_overlay] = ACTIONS(1759), - [anon_sym_where] = ACTIONS(1759), - [anon_sym_not] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [sym_val_nothing] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym_val_number_token1] = ACTIONS(1759), - [aux_sym_val_number_token2] = ACTIONS(1759), - [aux_sym_val_number_token3] = ACTIONS(1759), - [aux_sym_val_number_token4] = ACTIONS(1759), - [aux_sym_val_number_token5] = ACTIONS(1759), - [anon_sym_inf] = ACTIONS(1759), - [anon_sym_DASHinf] = ACTIONS(1759), - [anon_sym_NaN] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1759), - [anon_sym_0o] = ACTIONS(1759), - [anon_sym_0x] = ACTIONS(1759), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(3), - }, - [666] = { - [sym_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [anon_sym_SEMI] = ACTIONS(1933), - [sym_cmd_identifier] = ACTIONS(1933), - [anon_sym_LF] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_def_DASHenv] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_where] = ACTIONS(1933), - [anon_sym_not] = ACTIONS(1933), - [anon_sym_DOT_DOT_LT] = ACTIONS(1933), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), - [sym_val_nothing] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [aux_sym_val_number_token1] = ACTIONS(1933), - [aux_sym_val_number_token2] = ACTIONS(1933), - [aux_sym_val_number_token3] = ACTIONS(1933), - [aux_sym_val_number_token4] = ACTIONS(1933), - [aux_sym_val_number_token5] = ACTIONS(1933), - [anon_sym_inf] = ACTIONS(1933), - [anon_sym_DASHinf] = ACTIONS(1933), - [anon_sym_NaN] = ACTIONS(1933), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), - [anon_sym_CARET] = ACTIONS(1933), + [652] = { + [sym_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(1965), + [anon_sym_alias] = ACTIONS(1965), + [anon_sym_let] = ACTIONS(1965), + [anon_sym_let_DASHenv] = ACTIONS(1965), + [anon_sym_mut] = ACTIONS(1965), + [anon_sym_const] = ACTIONS(1965), + [anon_sym_SEMI] = ACTIONS(1965), + [sym_cmd_identifier] = ACTIONS(1965), + [anon_sym_LF] = ACTIONS(1967), + [anon_sym_def] = ACTIONS(1965), + [anon_sym_def_DASHenv] = ACTIONS(1965), + [anon_sym_export_DASHenv] = ACTIONS(1965), + [anon_sym_extern] = ACTIONS(1965), + [anon_sym_module] = ACTIONS(1965), + [anon_sym_use] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1965), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_error] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_for] = ACTIONS(1965), + [anon_sym_loop] = ACTIONS(1965), + [anon_sym_while] = ACTIONS(1965), + [anon_sym_do] = ACTIONS(1965), + [anon_sym_if] = ACTIONS(1965), + [anon_sym_match] = ACTIONS(1965), + [anon_sym_LBRACE] = ACTIONS(1965), + [anon_sym_try] = ACTIONS(1965), + [anon_sym_return] = ACTIONS(1965), + [anon_sym_source] = ACTIONS(1965), + [anon_sym_source_DASHenv] = ACTIONS(1965), + [anon_sym_register] = ACTIONS(1965), + [anon_sym_hide] = ACTIONS(1965), + [anon_sym_hide_DASHenv] = ACTIONS(1965), + [anon_sym_overlay] = ACTIONS(1965), + [anon_sym_where] = ACTIONS(1965), + [anon_sym_not] = ACTIONS(1965), + [anon_sym_DOT_DOT_LT] = ACTIONS(1965), + [anon_sym_DOT_DOT] = ACTIONS(1965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), + [sym_val_nothing] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(1965), + [anon_sym_false] = ACTIONS(1965), + [aux_sym_val_number_token1] = ACTIONS(1965), + [aux_sym_val_number_token2] = ACTIONS(1965), + [aux_sym_val_number_token3] = ACTIONS(1965), + [aux_sym_val_number_token4] = ACTIONS(1965), + [aux_sym_val_number_token5] = ACTIONS(1965), + [anon_sym_inf] = ACTIONS(1965), + [anon_sym_DASHinf] = ACTIONS(1965), + [anon_sym_NaN] = ACTIONS(1965), + [anon_sym_0b] = ACTIONS(1965), + [anon_sym_0o] = ACTIONS(1965), + [anon_sym_0x] = ACTIONS(1965), + [sym_val_date] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1965), + [sym__str_single_quotes] = ACTIONS(1965), + [sym__str_back_ticks] = ACTIONS(1965), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), [anon_sym_POUND] = ACTIONS(3), }, - [667] = { - [sym_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1895), - [anon_sym_export] = ACTIONS(1893), - [anon_sym_alias] = ACTIONS(1893), - [anon_sym_let] = ACTIONS(1893), - [anon_sym_let_DASHenv] = ACTIONS(1893), - [anon_sym_mut] = ACTIONS(1893), - [anon_sym_const] = ACTIONS(1893), - [anon_sym_SEMI] = ACTIONS(1893), - [sym_cmd_identifier] = ACTIONS(1893), - [anon_sym_LF] = ACTIONS(1895), - [anon_sym_def] = ACTIONS(1893), - [anon_sym_def_DASHenv] = ACTIONS(1893), - [anon_sym_export_DASHenv] = ACTIONS(1893), - [anon_sym_extern] = ACTIONS(1893), - [anon_sym_module] = ACTIONS(1893), - [anon_sym_use] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_DOLLAR] = ACTIONS(1893), - [anon_sym_error] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_break] = ACTIONS(1893), - [anon_sym_continue] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(1893), - [anon_sym_loop] = ACTIONS(1893), - [anon_sym_while] = ACTIONS(1893), - [anon_sym_do] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(1893), - [anon_sym_match] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_try] = ACTIONS(1893), - [anon_sym_return] = ACTIONS(1893), - [anon_sym_source] = ACTIONS(1893), - [anon_sym_source_DASHenv] = ACTIONS(1893), - [anon_sym_register] = ACTIONS(1893), - [anon_sym_hide] = ACTIONS(1893), - [anon_sym_hide_DASHenv] = ACTIONS(1893), - [anon_sym_overlay] = ACTIONS(1893), - [anon_sym_where] = ACTIONS(1893), - [anon_sym_not] = ACTIONS(1893), - [anon_sym_DOT_DOT_LT] = ACTIONS(1893), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1893), - [sym_val_nothing] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1893), - [anon_sym_false] = ACTIONS(1893), - [aux_sym_val_number_token1] = ACTIONS(1893), - [aux_sym_val_number_token2] = ACTIONS(1893), - [aux_sym_val_number_token3] = ACTIONS(1893), - [aux_sym_val_number_token4] = ACTIONS(1893), - [aux_sym_val_number_token5] = ACTIONS(1893), - [anon_sym_inf] = ACTIONS(1893), - [anon_sym_DASHinf] = ACTIONS(1893), - [anon_sym_NaN] = ACTIONS(1893), - [anon_sym_0b] = ACTIONS(1893), - [anon_sym_0o] = ACTIONS(1893), - [anon_sym_0x] = ACTIONS(1893), - [sym_val_date] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym__str_single_quotes] = ACTIONS(1893), - [sym__str_back_ticks] = ACTIONS(1893), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1893), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1893), - [anon_sym_CARET] = ACTIONS(1893), + [653] = { + [sym_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(1963), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1961), + [sym_cmd_identifier] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_def_DASHenv] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_where] = ACTIONS(1961), + [anon_sym_not] = ACTIONS(1961), + [anon_sym_DOT_DOT_LT] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), + [sym_val_nothing] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [aux_sym_val_number_token1] = ACTIONS(1961), + [aux_sym_val_number_token2] = ACTIONS(1961), + [aux_sym_val_number_token3] = ACTIONS(1961), + [aux_sym_val_number_token4] = ACTIONS(1961), + [aux_sym_val_number_token5] = ACTIONS(1961), + [anon_sym_inf] = ACTIONS(1961), + [anon_sym_DASHinf] = ACTIONS(1961), + [anon_sym_NaN] = ACTIONS(1961), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym__str_single_quotes] = ACTIONS(1961), + [sym__str_back_ticks] = ACTIONS(1961), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), }, - [668] = { - [sym_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(1943), - [anon_sym_export] = ACTIONS(1941), - [anon_sym_alias] = ACTIONS(1941), - [anon_sym_let] = ACTIONS(1941), - [anon_sym_let_DASHenv] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1941), - [anon_sym_const] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1941), - [sym_cmd_identifier] = ACTIONS(1941), - [anon_sym_LF] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1941), - [anon_sym_def_DASHenv] = ACTIONS(1941), - [anon_sym_export_DASHenv] = ACTIONS(1941), - [anon_sym_extern] = ACTIONS(1941), - [anon_sym_module] = ACTIONS(1941), - [anon_sym_use] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1941), - [anon_sym_error] = ACTIONS(1941), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_break] = ACTIONS(1941), - [anon_sym_continue] = ACTIONS(1941), - [anon_sym_for] = ACTIONS(1941), - [anon_sym_loop] = ACTIONS(1941), - [anon_sym_while] = ACTIONS(1941), - [anon_sym_do] = ACTIONS(1941), - [anon_sym_if] = ACTIONS(1941), - [anon_sym_match] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_try] = ACTIONS(1941), - [anon_sym_return] = ACTIONS(1941), - [anon_sym_source] = ACTIONS(1941), - [anon_sym_source_DASHenv] = ACTIONS(1941), - [anon_sym_register] = ACTIONS(1941), - [anon_sym_hide] = ACTIONS(1941), - [anon_sym_hide_DASHenv] = ACTIONS(1941), - [anon_sym_overlay] = ACTIONS(1941), - [anon_sym_where] = ACTIONS(1941), - [anon_sym_not] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [sym_val_nothing] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [aux_sym_val_number_token1] = ACTIONS(1941), - [aux_sym_val_number_token2] = ACTIONS(1941), - [aux_sym_val_number_token3] = ACTIONS(1941), - [aux_sym_val_number_token4] = ACTIONS(1941), - [aux_sym_val_number_token5] = ACTIONS(1941), - [anon_sym_inf] = ACTIONS(1941), - [anon_sym_DASHinf] = ACTIONS(1941), - [anon_sym_NaN] = ACTIONS(1941), - [anon_sym_0b] = ACTIONS(1941), - [anon_sym_0o] = ACTIONS(1941), - [anon_sym_0x] = ACTIONS(1941), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), - [anon_sym_CARET] = ACTIONS(1941), + [654] = { + [sym_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(1963), + [anon_sym_export] = ACTIONS(1961), + [anon_sym_alias] = ACTIONS(1961), + [anon_sym_let] = ACTIONS(1961), + [anon_sym_let_DASHenv] = ACTIONS(1961), + [anon_sym_mut] = ACTIONS(1961), + [anon_sym_const] = ACTIONS(1961), + [anon_sym_SEMI] = ACTIONS(1961), + [sym_cmd_identifier] = ACTIONS(1961), + [anon_sym_LF] = ACTIONS(1963), + [anon_sym_def] = ACTIONS(1961), + [anon_sym_def_DASHenv] = ACTIONS(1961), + [anon_sym_export_DASHenv] = ACTIONS(1961), + [anon_sym_extern] = ACTIONS(1961), + [anon_sym_module] = ACTIONS(1961), + [anon_sym_use] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1961), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(1961), + [anon_sym_error] = ACTIONS(1961), + [anon_sym_DASH] = ACTIONS(1961), + [anon_sym_break] = ACTIONS(1961), + [anon_sym_continue] = ACTIONS(1961), + [anon_sym_for] = ACTIONS(1961), + [anon_sym_loop] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1961), + [anon_sym_do] = ACTIONS(1961), + [anon_sym_if] = ACTIONS(1961), + [anon_sym_match] = ACTIONS(1961), + [anon_sym_LBRACE] = ACTIONS(1961), + [anon_sym_try] = ACTIONS(1961), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_source] = ACTIONS(1961), + [anon_sym_source_DASHenv] = ACTIONS(1961), + [anon_sym_register] = ACTIONS(1961), + [anon_sym_hide] = ACTIONS(1961), + [anon_sym_hide_DASHenv] = ACTIONS(1961), + [anon_sym_overlay] = ACTIONS(1961), + [anon_sym_where] = ACTIONS(1961), + [anon_sym_not] = ACTIONS(1961), + [anon_sym_DOT_DOT_LT] = ACTIONS(1961), + [anon_sym_DOT_DOT] = ACTIONS(1961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1961), + [sym_val_nothing] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(1961), + [anon_sym_false] = ACTIONS(1961), + [aux_sym_val_number_token1] = ACTIONS(1961), + [aux_sym_val_number_token2] = ACTIONS(1961), + [aux_sym_val_number_token3] = ACTIONS(1961), + [aux_sym_val_number_token4] = ACTIONS(1961), + [aux_sym_val_number_token5] = ACTIONS(1961), + [anon_sym_inf] = ACTIONS(1961), + [anon_sym_DASHinf] = ACTIONS(1961), + [anon_sym_NaN] = ACTIONS(1961), + [anon_sym_0b] = ACTIONS(1961), + [anon_sym_0o] = ACTIONS(1961), + [anon_sym_0x] = ACTIONS(1961), + [sym_val_date] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1961), + [sym__str_single_quotes] = ACTIONS(1961), + [sym__str_back_ticks] = ACTIONS(1961), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1961), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1961), + [anon_sym_CARET] = ACTIONS(1961), [anon_sym_POUND] = ACTIONS(3), }, - [669] = { - [sym_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1827), - [anon_sym_alias] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_let_DASHenv] = ACTIONS(1827), - [anon_sym_mut] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1827), - [sym_cmd_identifier] = ACTIONS(1827), - [anon_sym_LF] = ACTIONS(1829), - [anon_sym_def] = ACTIONS(1827), - [anon_sym_def_DASHenv] = ACTIONS(1827), - [anon_sym_export_DASHenv] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym_module] = ACTIONS(1827), - [anon_sym_use] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_DOLLAR] = ACTIONS(1827), - [anon_sym_error] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_loop] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_do] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_match] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_source] = ACTIONS(1827), - [anon_sym_source_DASHenv] = ACTIONS(1827), - [anon_sym_register] = ACTIONS(1827), - [anon_sym_hide] = ACTIONS(1827), - [anon_sym_hide_DASHenv] = ACTIONS(1827), - [anon_sym_overlay] = ACTIONS(1827), - [anon_sym_where] = ACTIONS(1827), - [anon_sym_not] = ACTIONS(1827), - [anon_sym_DOT_DOT_LT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1827), - [sym_val_nothing] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [aux_sym_val_number_token1] = ACTIONS(1827), - [aux_sym_val_number_token2] = ACTIONS(1827), - [aux_sym_val_number_token3] = ACTIONS(1827), - [aux_sym_val_number_token4] = ACTIONS(1827), - [aux_sym_val_number_token5] = ACTIONS(1827), - [anon_sym_inf] = ACTIONS(1827), - [anon_sym_DASHinf] = ACTIONS(1827), - [anon_sym_NaN] = ACTIONS(1827), - [anon_sym_0b] = ACTIONS(1827), - [anon_sym_0o] = ACTIONS(1827), - [anon_sym_0x] = ACTIONS(1827), - [sym_val_date] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1827), - [sym__str_single_quotes] = ACTIONS(1827), - [sym__str_back_ticks] = ACTIONS(1827), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1827), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1827), - [anon_sym_CARET] = ACTIONS(1827), + [655] = { + [sym_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(925), + [anon_sym_export] = ACTIONS(923), + [anon_sym_alias] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_let_DASHenv] = ACTIONS(923), + [anon_sym_mut] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(923), + [sym_cmd_identifier] = ACTIONS(923), + [anon_sym_LF] = ACTIONS(925), + [anon_sym_def] = ACTIONS(923), + [anon_sym_def_DASHenv] = ACTIONS(923), + [anon_sym_export_DASHenv] = ACTIONS(923), + [anon_sym_extern] = ACTIONS(923), + [anon_sym_module] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_error] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_try] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_source] = ACTIONS(923), + [anon_sym_source_DASHenv] = ACTIONS(923), + [anon_sym_register] = ACTIONS(923), + [anon_sym_hide] = ACTIONS(923), + [anon_sym_hide_DASHenv] = ACTIONS(923), + [anon_sym_overlay] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_not] = ACTIONS(923), + [anon_sym_DOT_DOT_LT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [sym_val_nothing] = ACTIONS(923), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [aux_sym_val_number_token1] = ACTIONS(923), + [aux_sym_val_number_token2] = ACTIONS(923), + [aux_sym_val_number_token3] = ACTIONS(923), + [aux_sym_val_number_token4] = ACTIONS(923), + [aux_sym_val_number_token5] = ACTIONS(923), + [anon_sym_inf] = ACTIONS(923), + [anon_sym_DASHinf] = ACTIONS(923), + [anon_sym_NaN] = ACTIONS(923), + [anon_sym_0b] = ACTIONS(923), + [anon_sym_0o] = ACTIONS(923), + [anon_sym_0x] = ACTIONS(923), + [sym_val_date] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym__str_single_quotes] = ACTIONS(923), + [sym__str_back_ticks] = ACTIONS(923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), [anon_sym_POUND] = ACTIONS(3), }, - [670] = { - [sym_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(1993), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [sym_cmd_identifier] = ACTIONS(1991), - [anon_sym_LF] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_def_DASHenv] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_where] = ACTIONS(1991), - [anon_sym_not] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [sym_val_nothing] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [aux_sym_val_number_token1] = ACTIONS(1991), - [aux_sym_val_number_token2] = ACTIONS(1991), - [aux_sym_val_number_token3] = ACTIONS(1991), - [aux_sym_val_number_token4] = ACTIONS(1991), - [aux_sym_val_number_token5] = ACTIONS(1991), - [anon_sym_inf] = ACTIONS(1991), - [anon_sym_DASHinf] = ACTIONS(1991), - [anon_sym_NaN] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_CARET] = ACTIONS(1991), + [656] = { + [sym_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(1893), + [anon_sym_export] = ACTIONS(1891), + [anon_sym_alias] = ACTIONS(1891), + [anon_sym_let] = ACTIONS(1891), + [anon_sym_let_DASHenv] = ACTIONS(1891), + [anon_sym_mut] = ACTIONS(1891), + [anon_sym_const] = ACTIONS(1891), + [anon_sym_SEMI] = ACTIONS(1891), + [sym_cmd_identifier] = ACTIONS(1891), + [anon_sym_LF] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1891), + [anon_sym_def_DASHenv] = ACTIONS(1891), + [anon_sym_export_DASHenv] = ACTIONS(1891), + [anon_sym_extern] = ACTIONS(1891), + [anon_sym_module] = ACTIONS(1891), + [anon_sym_use] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1891), + [anon_sym_error] = ACTIONS(1891), + [anon_sym_DASH] = ACTIONS(1891), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_for] = ACTIONS(1891), + [anon_sym_loop] = ACTIONS(1891), + [anon_sym_while] = ACTIONS(1891), + [anon_sym_do] = ACTIONS(1891), + [anon_sym_if] = ACTIONS(1891), + [anon_sym_match] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_try] = ACTIONS(1891), + [anon_sym_return] = ACTIONS(1891), + [anon_sym_source] = ACTIONS(1891), + [anon_sym_source_DASHenv] = ACTIONS(1891), + [anon_sym_register] = ACTIONS(1891), + [anon_sym_hide] = ACTIONS(1891), + [anon_sym_hide_DASHenv] = ACTIONS(1891), + [anon_sym_overlay] = ACTIONS(1891), + [anon_sym_where] = ACTIONS(1891), + [anon_sym_not] = ACTIONS(1891), + [anon_sym_DOT_DOT_LT] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1891), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1891), + [sym_val_nothing] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(1891), + [anon_sym_false] = ACTIONS(1891), + [aux_sym_val_number_token1] = ACTIONS(1891), + [aux_sym_val_number_token2] = ACTIONS(1891), + [aux_sym_val_number_token3] = ACTIONS(1891), + [aux_sym_val_number_token4] = ACTIONS(1891), + [aux_sym_val_number_token5] = ACTIONS(1891), + [anon_sym_inf] = ACTIONS(1891), + [anon_sym_DASHinf] = ACTIONS(1891), + [anon_sym_NaN] = ACTIONS(1891), + [anon_sym_0b] = ACTIONS(1891), + [anon_sym_0o] = ACTIONS(1891), + [anon_sym_0x] = ACTIONS(1891), + [sym_val_date] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(1891), + [sym__str_single_quotes] = ACTIONS(1891), + [sym__str_back_ticks] = ACTIONS(1891), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1891), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1891), + [anon_sym_CARET] = ACTIONS(1891), [anon_sym_POUND] = ACTIONS(3), }, - [671] = { - [sym_comment] = STATE(671), + [657] = { + [sym_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(1939), [anon_sym_export] = ACTIONS(1937), [anon_sym_alias] = ACTIONS(1937), @@ -99046,552 +98171,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1937), [anon_sym_POUND] = ACTIONS(3), }, - [672] = { - [sym_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(1977), - [anon_sym_export] = ACTIONS(1975), - [anon_sym_alias] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_let_DASHenv] = ACTIONS(1975), - [anon_sym_mut] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [sym_cmd_identifier] = ACTIONS(1975), - [anon_sym_LF] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1975), - [anon_sym_def_DASHenv] = ACTIONS(1975), - [anon_sym_export_DASHenv] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_module] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_do] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_source] = ACTIONS(1975), - [anon_sym_source_DASHenv] = ACTIONS(1975), - [anon_sym_register] = ACTIONS(1975), - [anon_sym_hide] = ACTIONS(1975), - [anon_sym_hide_DASHenv] = ACTIONS(1975), - [anon_sym_overlay] = ACTIONS(1975), - [anon_sym_where] = ACTIONS(1975), - [anon_sym_not] = ACTIONS(1975), - [anon_sym_DOT_DOT_LT] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), - [sym_val_nothing] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [aux_sym_val_number_token1] = ACTIONS(1975), - [aux_sym_val_number_token2] = ACTIONS(1975), - [aux_sym_val_number_token3] = ACTIONS(1975), - [aux_sym_val_number_token4] = ACTIONS(1975), - [aux_sym_val_number_token5] = ACTIONS(1975), - [anon_sym_inf] = ACTIONS(1975), - [anon_sym_DASHinf] = ACTIONS(1975), - [anon_sym_NaN] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1975), - [anon_sym_0o] = ACTIONS(1975), - [anon_sym_0x] = ACTIONS(1975), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_POUND] = ACTIONS(3), - }, - [673] = { - [sym_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(1715), - [anon_sym_export] = ACTIONS(1713), - [anon_sym_alias] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_let_DASHenv] = ACTIONS(1713), - [anon_sym_mut] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [sym_cmd_identifier] = ACTIONS(1713), - [anon_sym_LF] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1713), - [anon_sym_def_DASHenv] = ACTIONS(1713), - [anon_sym_export_DASHenv] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_module] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_source] = ACTIONS(1713), - [anon_sym_source_DASHenv] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_hide_DASHenv] = ACTIONS(1713), - [anon_sym_overlay] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(1713), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [sym_val_nothing] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym_val_number_token1] = ACTIONS(1713), - [aux_sym_val_number_token2] = ACTIONS(1713), - [aux_sym_val_number_token3] = ACTIONS(1713), - [aux_sym_val_number_token4] = ACTIONS(1713), - [aux_sym_val_number_token5] = ACTIONS(1713), - [anon_sym_inf] = ACTIONS(1713), - [anon_sym_DASHinf] = ACTIONS(1713), - [anon_sym_NaN] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1713), - [anon_sym_0x] = ACTIONS(1713), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - }, - [674] = { - [sym_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(1761), - [anon_sym_export] = ACTIONS(1759), - [anon_sym_alias] = ACTIONS(1759), - [anon_sym_let] = ACTIONS(1759), - [anon_sym_let_DASHenv] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [sym_cmd_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1761), - [anon_sym_def] = ACTIONS(1759), - [anon_sym_def_DASHenv] = ACTIONS(1759), - [anon_sym_export_DASHenv] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1759), - [anon_sym_module] = ACTIONS(1759), - [anon_sym_use] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_loop] = ACTIONS(1759), - [anon_sym_while] = ACTIONS(1759), - [anon_sym_do] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_source] = ACTIONS(1759), - [anon_sym_source_DASHenv] = ACTIONS(1759), - [anon_sym_register] = ACTIONS(1759), - [anon_sym_hide] = ACTIONS(1759), - [anon_sym_hide_DASHenv] = ACTIONS(1759), - [anon_sym_overlay] = ACTIONS(1759), - [anon_sym_where] = ACTIONS(1759), - [anon_sym_not] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [sym_val_nothing] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym_val_number_token1] = ACTIONS(1759), - [aux_sym_val_number_token2] = ACTIONS(1759), - [aux_sym_val_number_token3] = ACTIONS(1759), - [aux_sym_val_number_token4] = ACTIONS(1759), - [aux_sym_val_number_token5] = ACTIONS(1759), - [anon_sym_inf] = ACTIONS(1759), - [anon_sym_DASHinf] = ACTIONS(1759), - [anon_sym_NaN] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1759), - [anon_sym_0o] = ACTIONS(1759), - [anon_sym_0x] = ACTIONS(1759), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(3), - }, - [675] = { - [sym_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1987), - [anon_sym_alias] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1987), - [anon_sym_let_DASHenv] = ACTIONS(1987), - [anon_sym_mut] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [sym_cmd_identifier] = ACTIONS(1987), - [anon_sym_LF] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1987), - [anon_sym_def_DASHenv] = ACTIONS(1987), - [anon_sym_export_DASHenv] = ACTIONS(1987), - [anon_sym_extern] = ACTIONS(1987), - [anon_sym_module] = ACTIONS(1987), - [anon_sym_use] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_do] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_source] = ACTIONS(1987), - [anon_sym_source_DASHenv] = ACTIONS(1987), - [anon_sym_register] = ACTIONS(1987), - [anon_sym_hide] = ACTIONS(1987), - [anon_sym_hide_DASHenv] = ACTIONS(1987), - [anon_sym_overlay] = ACTIONS(1987), - [anon_sym_where] = ACTIONS(1987), - [anon_sym_not] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [sym_val_nothing] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [aux_sym_val_number_token1] = ACTIONS(1987), - [aux_sym_val_number_token2] = ACTIONS(1987), - [aux_sym_val_number_token3] = ACTIONS(1987), - [aux_sym_val_number_token4] = ACTIONS(1987), - [aux_sym_val_number_token5] = ACTIONS(1987), - [anon_sym_inf] = ACTIONS(1987), - [anon_sym_DASHinf] = ACTIONS(1987), - [anon_sym_NaN] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1987), - [anon_sym_0o] = ACTIONS(1987), - [anon_sym_0x] = ACTIONS(1987), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_CARET] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(3), - }, - [676] = { - [sym_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1739), - [anon_sym_export] = ACTIONS(1737), - [anon_sym_alias] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_let_DASHenv] = ACTIONS(1737), - [anon_sym_mut] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1737), - [sym_cmd_identifier] = ACTIONS(1737), - [anon_sym_LF] = ACTIONS(1739), - [anon_sym_def] = ACTIONS(1737), - [anon_sym_def_DASHenv] = ACTIONS(1737), - [anon_sym_export_DASHenv] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_module] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_LBRACK] = ACTIONS(1737), - [anon_sym_LPAREN] = ACTIONS(1737), - [anon_sym_DOLLAR] = ACTIONS(1737), - [anon_sym_error] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_do] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_source] = ACTIONS(1737), - [anon_sym_source_DASHenv] = ACTIONS(1737), - [anon_sym_register] = ACTIONS(1737), - [anon_sym_hide] = ACTIONS(1737), - [anon_sym_hide_DASHenv] = ACTIONS(1737), - [anon_sym_overlay] = ACTIONS(1737), - [anon_sym_where] = ACTIONS(1737), - [anon_sym_not] = ACTIONS(1737), - [anon_sym_DOT_DOT_LT] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1737), - [sym_val_nothing] = ACTIONS(1737), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [aux_sym_val_number_token1] = ACTIONS(1737), - [aux_sym_val_number_token2] = ACTIONS(1737), - [aux_sym_val_number_token3] = ACTIONS(1737), - [aux_sym_val_number_token4] = ACTIONS(1737), - [aux_sym_val_number_token5] = ACTIONS(1737), - [anon_sym_inf] = ACTIONS(1737), - [anon_sym_DASHinf] = ACTIONS(1737), - [anon_sym_NaN] = ACTIONS(1737), - [anon_sym_0b] = ACTIONS(1737), - [anon_sym_0o] = ACTIONS(1737), - [anon_sym_0x] = ACTIONS(1737), - [sym_val_date] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1737), - [sym__str_single_quotes] = ACTIONS(1737), - [sym__str_back_ticks] = ACTIONS(1737), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1737), - [anon_sym_CARET] = ACTIONS(1737), + [658] = { + [sym_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(1825), + [anon_sym_export] = ACTIONS(1823), + [anon_sym_alias] = ACTIONS(1823), + [anon_sym_let] = ACTIONS(1823), + [anon_sym_let_DASHenv] = ACTIONS(1823), + [anon_sym_mut] = ACTIONS(1823), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_SEMI] = ACTIONS(1823), + [sym_cmd_identifier] = ACTIONS(1823), + [anon_sym_LF] = ACTIONS(1825), + [anon_sym_def] = ACTIONS(1823), + [anon_sym_def_DASHenv] = ACTIONS(1823), + [anon_sym_export_DASHenv] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_module] = ACTIONS(1823), + [anon_sym_use] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1823), + [anon_sym_DOLLAR] = ACTIONS(1823), + [anon_sym_error] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_loop] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_match] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_source] = ACTIONS(1823), + [anon_sym_source_DASHenv] = ACTIONS(1823), + [anon_sym_register] = ACTIONS(1823), + [anon_sym_hide] = ACTIONS(1823), + [anon_sym_hide_DASHenv] = ACTIONS(1823), + [anon_sym_overlay] = ACTIONS(1823), + [anon_sym_where] = ACTIONS(1823), + [anon_sym_not] = ACTIONS(1823), + [anon_sym_DOT_DOT_LT] = ACTIONS(1823), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1823), + [sym_val_nothing] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [aux_sym_val_number_token1] = ACTIONS(1823), + [aux_sym_val_number_token2] = ACTIONS(1823), + [aux_sym_val_number_token3] = ACTIONS(1823), + [aux_sym_val_number_token4] = ACTIONS(1823), + [aux_sym_val_number_token5] = ACTIONS(1823), + [anon_sym_inf] = ACTIONS(1823), + [anon_sym_DASHinf] = ACTIONS(1823), + [anon_sym_NaN] = ACTIONS(1823), + [anon_sym_0b] = ACTIONS(1823), + [anon_sym_0o] = ACTIONS(1823), + [anon_sym_0x] = ACTIONS(1823), + [sym_val_date] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym__str_single_quotes] = ACTIONS(1823), + [sym__str_back_ticks] = ACTIONS(1823), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1823), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1823), + [anon_sym_CARET] = ACTIONS(1823), [anon_sym_POUND] = ACTIONS(3), }, - [677] = { - [sym_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(897), - [anon_sym_export] = ACTIONS(895), - [anon_sym_alias] = ACTIONS(895), - [anon_sym_let] = ACTIONS(895), - [anon_sym_let_DASHenv] = ACTIONS(895), - [anon_sym_mut] = ACTIONS(895), - [anon_sym_const] = ACTIONS(895), - [anon_sym_SEMI] = ACTIONS(895), - [sym_cmd_identifier] = ACTIONS(895), - [anon_sym_LF] = ACTIONS(897), - [anon_sym_def] = ACTIONS(895), - [anon_sym_def_DASHenv] = ACTIONS(895), - [anon_sym_export_DASHenv] = ACTIONS(895), - [anon_sym_extern] = ACTIONS(895), - [anon_sym_module] = ACTIONS(895), - [anon_sym_use] = ACTIONS(895), - [anon_sym_LBRACK] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(895), - [anon_sym_DOLLAR] = ACTIONS(895), - [anon_sym_error] = ACTIONS(895), - [anon_sym_DASH] = ACTIONS(895), - [anon_sym_break] = ACTIONS(895), - [anon_sym_continue] = ACTIONS(895), - [anon_sym_for] = ACTIONS(895), - [anon_sym_loop] = ACTIONS(895), - [anon_sym_while] = ACTIONS(895), - [anon_sym_do] = ACTIONS(895), - [anon_sym_if] = ACTIONS(895), - [anon_sym_match] = ACTIONS(895), - [anon_sym_LBRACE] = ACTIONS(895), - [anon_sym_try] = ACTIONS(895), - [anon_sym_return] = ACTIONS(895), - [anon_sym_source] = ACTIONS(895), - [anon_sym_source_DASHenv] = ACTIONS(895), - [anon_sym_register] = ACTIONS(895), - [anon_sym_hide] = ACTIONS(895), - [anon_sym_hide_DASHenv] = ACTIONS(895), - [anon_sym_overlay] = ACTIONS(895), - [anon_sym_where] = ACTIONS(895), - [anon_sym_not] = ACTIONS(895), - [anon_sym_DOT_DOT_LT] = ACTIONS(895), - [anon_sym_DOT_DOT] = ACTIONS(895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(895), - [sym_val_nothing] = ACTIONS(895), - [anon_sym_true] = ACTIONS(895), - [anon_sym_false] = ACTIONS(895), - [aux_sym_val_number_token1] = ACTIONS(895), - [aux_sym_val_number_token2] = ACTIONS(895), - [aux_sym_val_number_token3] = ACTIONS(895), - [aux_sym_val_number_token4] = ACTIONS(895), - [aux_sym_val_number_token5] = ACTIONS(895), - [anon_sym_inf] = ACTIONS(895), - [anon_sym_DASHinf] = ACTIONS(895), - [anon_sym_NaN] = ACTIONS(895), - [anon_sym_0b] = ACTIONS(895), - [anon_sym_0o] = ACTIONS(895), - [anon_sym_0x] = ACTIONS(895), - [sym_val_date] = ACTIONS(895), - [anon_sym_DQUOTE] = ACTIONS(895), - [sym__str_single_quotes] = ACTIONS(895), - [sym__str_back_ticks] = ACTIONS(895), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(895), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(895), - [anon_sym_CARET] = ACTIONS(895), + [659] = { + [sym_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(1817), + [anon_sym_export] = ACTIONS(1815), + [anon_sym_alias] = ACTIONS(1815), + [anon_sym_let] = ACTIONS(1815), + [anon_sym_let_DASHenv] = ACTIONS(1815), + [anon_sym_mut] = ACTIONS(1815), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_SEMI] = ACTIONS(1815), + [sym_cmd_identifier] = ACTIONS(1815), + [anon_sym_LF] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1815), + [anon_sym_def_DASHenv] = ACTIONS(1815), + [anon_sym_export_DASHenv] = ACTIONS(1815), + [anon_sym_extern] = ACTIONS(1815), + [anon_sym_module] = ACTIONS(1815), + [anon_sym_use] = ACTIONS(1815), + [anon_sym_LBRACK] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1815), + [anon_sym_DOLLAR] = ACTIONS(1815), + [anon_sym_error] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1815), + [anon_sym_for] = ACTIONS(1815), + [anon_sym_loop] = ACTIONS(1815), + [anon_sym_while] = ACTIONS(1815), + [anon_sym_do] = ACTIONS(1815), + [anon_sym_if] = ACTIONS(1815), + [anon_sym_match] = ACTIONS(1815), + [anon_sym_LBRACE] = ACTIONS(1815), + [anon_sym_try] = ACTIONS(1815), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_source] = ACTIONS(1815), + [anon_sym_source_DASHenv] = ACTIONS(1815), + [anon_sym_register] = ACTIONS(1815), + [anon_sym_hide] = ACTIONS(1815), + [anon_sym_hide_DASHenv] = ACTIONS(1815), + [anon_sym_overlay] = ACTIONS(1815), + [anon_sym_where] = ACTIONS(1815), + [anon_sym_not] = ACTIONS(1815), + [anon_sym_DOT_DOT_LT] = ACTIONS(1815), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1815), + [sym_val_nothing] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [aux_sym_val_number_token1] = ACTIONS(1815), + [aux_sym_val_number_token2] = ACTIONS(1815), + [aux_sym_val_number_token3] = ACTIONS(1815), + [aux_sym_val_number_token4] = ACTIONS(1815), + [aux_sym_val_number_token5] = ACTIONS(1815), + [anon_sym_inf] = ACTIONS(1815), + [anon_sym_DASHinf] = ACTIONS(1815), + [anon_sym_NaN] = ACTIONS(1815), + [anon_sym_0b] = ACTIONS(1815), + [anon_sym_0o] = ACTIONS(1815), + [anon_sym_0x] = ACTIONS(1815), + [sym_val_date] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(1815), + [sym__str_single_quotes] = ACTIONS(1815), + [sym__str_back_ticks] = ACTIONS(1815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1815), + [anon_sym_CARET] = ACTIONS(1815), [anon_sym_POUND] = ACTIONS(3), }, - [678] = { - [sym_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(1931), - [anon_sym_export] = ACTIONS(1929), - [anon_sym_alias] = ACTIONS(1929), - [anon_sym_let] = ACTIONS(1929), - [anon_sym_let_DASHenv] = ACTIONS(1929), - [anon_sym_mut] = ACTIONS(1929), - [anon_sym_const] = ACTIONS(1929), - [anon_sym_SEMI] = ACTIONS(1929), - [sym_cmd_identifier] = ACTIONS(1929), - [anon_sym_LF] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1929), - [anon_sym_def_DASHenv] = ACTIONS(1929), - [anon_sym_export_DASHenv] = ACTIONS(1929), - [anon_sym_extern] = ACTIONS(1929), - [anon_sym_module] = ACTIONS(1929), - [anon_sym_use] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1929), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_break] = ACTIONS(1929), - [anon_sym_continue] = ACTIONS(1929), - [anon_sym_for] = ACTIONS(1929), - [anon_sym_loop] = ACTIONS(1929), - [anon_sym_while] = ACTIONS(1929), - [anon_sym_do] = ACTIONS(1929), - [anon_sym_if] = ACTIONS(1929), - [anon_sym_match] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1929), - [anon_sym_return] = ACTIONS(1929), - [anon_sym_source] = ACTIONS(1929), - [anon_sym_source_DASHenv] = ACTIONS(1929), - [anon_sym_register] = ACTIONS(1929), - [anon_sym_hide] = ACTIONS(1929), - [anon_sym_hide_DASHenv] = ACTIONS(1929), - [anon_sym_overlay] = ACTIONS(1929), - [anon_sym_where] = ACTIONS(1929), - [anon_sym_not] = ACTIONS(1929), - [anon_sym_DOT_DOT_LT] = ACTIONS(1929), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1929), - [sym_val_nothing] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [aux_sym_val_number_token1] = ACTIONS(1929), - [aux_sym_val_number_token2] = ACTIONS(1929), - [aux_sym_val_number_token3] = ACTIONS(1929), - [aux_sym_val_number_token4] = ACTIONS(1929), - [aux_sym_val_number_token5] = ACTIONS(1929), - [anon_sym_inf] = ACTIONS(1929), - [anon_sym_DASHinf] = ACTIONS(1929), - [anon_sym_NaN] = ACTIONS(1929), - [anon_sym_0b] = ACTIONS(1929), - [anon_sym_0o] = ACTIONS(1929), - [anon_sym_0x] = ACTIONS(1929), - [sym_val_date] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1929), - [anon_sym_CARET] = ACTIONS(1929), + [660] = { + [sym_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(1897), + [anon_sym_export] = ACTIONS(1895), + [anon_sym_alias] = ACTIONS(1895), + [anon_sym_let] = ACTIONS(1895), + [anon_sym_let_DASHenv] = ACTIONS(1895), + [anon_sym_mut] = ACTIONS(1895), + [anon_sym_const] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [sym_cmd_identifier] = ACTIONS(1895), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1895), + [anon_sym_def_DASHenv] = ACTIONS(1895), + [anon_sym_export_DASHenv] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_module] = ACTIONS(1895), + [anon_sym_use] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_loop] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_match] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_source] = ACTIONS(1895), + [anon_sym_source_DASHenv] = ACTIONS(1895), + [anon_sym_register] = ACTIONS(1895), + [anon_sym_hide] = ACTIONS(1895), + [anon_sym_hide_DASHenv] = ACTIONS(1895), + [anon_sym_overlay] = ACTIONS(1895), + [anon_sym_where] = ACTIONS(1895), + [anon_sym_not] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [sym_val_nothing] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym_val_number_token1] = ACTIONS(1895), + [aux_sym_val_number_token2] = ACTIONS(1895), + [aux_sym_val_number_token3] = ACTIONS(1895), + [aux_sym_val_number_token4] = ACTIONS(1895), + [aux_sym_val_number_token5] = ACTIONS(1895), + [anon_sym_inf] = ACTIONS(1895), + [anon_sym_DASHinf] = ACTIONS(1895), + [anon_sym_NaN] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1895), + [anon_sym_0o] = ACTIONS(1895), + [anon_sym_0x] = ACTIONS(1895), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_CARET] = ACTIONS(1895), [anon_sym_POUND] = ACTIONS(3), }, - [679] = { - [sym_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1789), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_def_DASHenv] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [sym_val_nothing] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym_val_number_token1] = ACTIONS(1787), - [aux_sym_val_number_token2] = ACTIONS(1787), - [aux_sym_val_number_token3] = ACTIONS(1787), - [aux_sym_val_number_token4] = ACTIONS(1787), - [aux_sym_val_number_token5] = ACTIONS(1787), - [anon_sym_inf] = ACTIONS(1787), - [anon_sym_DASHinf] = ACTIONS(1787), - [anon_sym_NaN] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), + [661] = { + [sym_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_alias] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_let_DASHenv] = ACTIONS(1811), + [anon_sym_mut] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [sym_cmd_identifier] = ACTIONS(1811), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1811), + [anon_sym_def_DASHenv] = ACTIONS(1811), + [anon_sym_export_DASHenv] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_error] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_source] = ACTIONS(1811), + [anon_sym_source_DASHenv] = ACTIONS(1811), + [anon_sym_register] = ACTIONS(1811), + [anon_sym_hide] = ACTIONS(1811), + [anon_sym_hide_DASHenv] = ACTIONS(1811), + [anon_sym_overlay] = ACTIONS(1811), + [anon_sym_where] = ACTIONS(1811), + [anon_sym_not] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), + [sym_val_nothing] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [aux_sym_val_number_token1] = ACTIONS(1811), + [aux_sym_val_number_token2] = ACTIONS(1811), + [aux_sym_val_number_token3] = ACTIONS(1811), + [aux_sym_val_number_token4] = ACTIONS(1811), + [aux_sym_val_number_token5] = ACTIONS(1811), + [anon_sym_inf] = ACTIONS(1811), + [anon_sym_DASHinf] = ACTIONS(1811), + [anon_sym_NaN] = ACTIONS(1811), + [anon_sym_0b] = ACTIONS(1811), + [anon_sym_0o] = ACTIONS(1811), + [anon_sym_0x] = ACTIONS(1811), + [sym_val_date] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym__str_single_quotes] = ACTIONS(1811), + [sym__str_back_ticks] = ACTIONS(1811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), [anon_sym_POUND] = ACTIONS(3), }, - [680] = { - [sym_comment] = STATE(680), + [662] = { + [sym_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(1809), [anon_sym_export] = ACTIONS(1807), [anon_sym_alias] = ACTIONS(1807), @@ -99658,484 +98511,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1807), [anon_sym_POUND] = ACTIONS(3), }, - [681] = { - [sym_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(1879), - [anon_sym_export] = ACTIONS(1877), - [anon_sym_alias] = ACTIONS(1877), - [anon_sym_let] = ACTIONS(1877), - [anon_sym_let_DASHenv] = ACTIONS(1877), - [anon_sym_mut] = ACTIONS(1877), - [anon_sym_const] = ACTIONS(1877), - [anon_sym_SEMI] = ACTIONS(1877), - [sym_cmd_identifier] = ACTIONS(1877), - [anon_sym_LF] = ACTIONS(1879), - [anon_sym_def] = ACTIONS(1877), - [anon_sym_def_DASHenv] = ACTIONS(1877), - [anon_sym_export_DASHenv] = ACTIONS(1877), - [anon_sym_extern] = ACTIONS(1877), - [anon_sym_module] = ACTIONS(1877), - [anon_sym_use] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(1877), - [anon_sym_error] = ACTIONS(1877), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_break] = ACTIONS(1877), - [anon_sym_continue] = ACTIONS(1877), - [anon_sym_for] = ACTIONS(1877), - [anon_sym_loop] = ACTIONS(1877), - [anon_sym_while] = ACTIONS(1877), - [anon_sym_do] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_try] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1877), - [anon_sym_source] = ACTIONS(1877), - [anon_sym_source_DASHenv] = ACTIONS(1877), - [anon_sym_register] = ACTIONS(1877), - [anon_sym_hide] = ACTIONS(1877), - [anon_sym_hide_DASHenv] = ACTIONS(1877), - [anon_sym_overlay] = ACTIONS(1877), - [anon_sym_where] = ACTIONS(1877), - [anon_sym_not] = ACTIONS(1877), - [anon_sym_DOT_DOT_LT] = ACTIONS(1877), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), - [sym_val_nothing] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1877), - [anon_sym_false] = ACTIONS(1877), - [aux_sym_val_number_token1] = ACTIONS(1877), - [aux_sym_val_number_token2] = ACTIONS(1877), - [aux_sym_val_number_token3] = ACTIONS(1877), - [aux_sym_val_number_token4] = ACTIONS(1877), - [aux_sym_val_number_token5] = ACTIONS(1877), - [anon_sym_inf] = ACTIONS(1877), - [anon_sym_DASHinf] = ACTIONS(1877), - [anon_sym_NaN] = ACTIONS(1877), - [anon_sym_0b] = ACTIONS(1877), - [anon_sym_0o] = ACTIONS(1877), - [anon_sym_0x] = ACTIONS(1877), - [sym_val_date] = ACTIONS(1877), - [anon_sym_DQUOTE] = ACTIONS(1877), - [sym__str_single_quotes] = ACTIONS(1877), - [sym__str_back_ticks] = ACTIONS(1877), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1877), + [663] = { + [sym_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1811), + [anon_sym_alias] = ACTIONS(1811), + [anon_sym_let] = ACTIONS(1811), + [anon_sym_let_DASHenv] = ACTIONS(1811), + [anon_sym_mut] = ACTIONS(1811), + [anon_sym_const] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [sym_cmd_identifier] = ACTIONS(1811), + [anon_sym_LF] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1811), + [anon_sym_def_DASHenv] = ACTIONS(1811), + [anon_sym_export_DASHenv] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_module] = ACTIONS(1811), + [anon_sym_use] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_error] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_loop] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_match] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1811), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_source] = ACTIONS(1811), + [anon_sym_source_DASHenv] = ACTIONS(1811), + [anon_sym_register] = ACTIONS(1811), + [anon_sym_hide] = ACTIONS(1811), + [anon_sym_hide_DASHenv] = ACTIONS(1811), + [anon_sym_overlay] = ACTIONS(1811), + [anon_sym_where] = ACTIONS(1811), + [anon_sym_not] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT] = ACTIONS(1811), + [anon_sym_DOT_DOT] = ACTIONS(1811), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), + [sym_val_nothing] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [aux_sym_val_number_token1] = ACTIONS(1811), + [aux_sym_val_number_token2] = ACTIONS(1811), + [aux_sym_val_number_token3] = ACTIONS(1811), + [aux_sym_val_number_token4] = ACTIONS(1811), + [aux_sym_val_number_token5] = ACTIONS(1811), + [anon_sym_inf] = ACTIONS(1811), + [anon_sym_DASHinf] = ACTIONS(1811), + [anon_sym_NaN] = ACTIONS(1811), + [anon_sym_0b] = ACTIONS(1811), + [anon_sym_0o] = ACTIONS(1811), + [anon_sym_0x] = ACTIONS(1811), + [sym_val_date] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1811), + [sym__str_single_quotes] = ACTIONS(1811), + [sym__str_back_ticks] = ACTIONS(1811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1811), [anon_sym_POUND] = ACTIONS(3), }, - [682] = { - [sym_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1715), - [anon_sym_export] = ACTIONS(1713), - [anon_sym_alias] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_let_DASHenv] = ACTIONS(1713), - [anon_sym_mut] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [sym_cmd_identifier] = ACTIONS(1713), - [anon_sym_LF] = ACTIONS(1715), - [anon_sym_def] = ACTIONS(1713), - [anon_sym_def_DASHenv] = ACTIONS(1713), - [anon_sym_export_DASHenv] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_module] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(1713), - [anon_sym_error] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_do] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_source] = ACTIONS(1713), - [anon_sym_source_DASHenv] = ACTIONS(1713), - [anon_sym_register] = ACTIONS(1713), - [anon_sym_hide] = ACTIONS(1713), - [anon_sym_hide_DASHenv] = ACTIONS(1713), - [anon_sym_overlay] = ACTIONS(1713), - [anon_sym_where] = ACTIONS(1713), - [anon_sym_not] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1713), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [sym_val_nothing] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym_val_number_token1] = ACTIONS(1713), - [aux_sym_val_number_token2] = ACTIONS(1713), - [aux_sym_val_number_token3] = ACTIONS(1713), - [aux_sym_val_number_token4] = ACTIONS(1713), - [aux_sym_val_number_token5] = ACTIONS(1713), - [anon_sym_inf] = ACTIONS(1713), - [anon_sym_DASHinf] = ACTIONS(1713), - [anon_sym_NaN] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1713), - [anon_sym_0o] = ACTIONS(1713), - [anon_sym_0x] = ACTIONS(1713), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_CARET] = ACTIONS(1713), + [664] = { + [sym_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [sym_cmd_identifier] = ACTIONS(1831), + [anon_sym_LF] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_def_DASHenv] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_where] = ACTIONS(1831), + [anon_sym_not] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [sym_val_nothing] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym_val_number_token1] = ACTIONS(1831), + [aux_sym_val_number_token2] = ACTIONS(1831), + [aux_sym_val_number_token3] = ACTIONS(1831), + [aux_sym_val_number_token4] = ACTIONS(1831), + [aux_sym_val_number_token5] = ACTIONS(1831), + [anon_sym_inf] = ACTIONS(1831), + [anon_sym_DASHinf] = ACTIONS(1831), + [anon_sym_NaN] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1831), [anon_sym_POUND] = ACTIONS(3), }, - [683] = { - [sym_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(1927), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [sym_cmd_identifier] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_def_DASHenv] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_where] = ACTIONS(1925), - [anon_sym_not] = ACTIONS(1925), - [anon_sym_DOT_DOT_LT] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1925), - [sym_val_nothing] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1925), - [anon_sym_false] = ACTIONS(1925), - [aux_sym_val_number_token1] = ACTIONS(1925), - [aux_sym_val_number_token2] = ACTIONS(1925), - [aux_sym_val_number_token3] = ACTIONS(1925), - [aux_sym_val_number_token4] = ACTIONS(1925), - [aux_sym_val_number_token5] = ACTIONS(1925), - [anon_sym_inf] = ACTIONS(1925), - [anon_sym_DASHinf] = ACTIONS(1925), - [anon_sym_NaN] = ACTIONS(1925), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1925), - [anon_sym_CARET] = ACTIONS(1925), + [665] = { + [sym_comment] = STATE(665), + [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_def_DASHenv] = 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(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [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_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_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = 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(3), }, - [684] = { - [sym_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [sym_cmd_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_def_DASHenv] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(1921), - [anon_sym_not] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [sym_val_nothing] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [aux_sym_val_number_token1] = ACTIONS(1921), - [aux_sym_val_number_token2] = ACTIONS(1921), - [aux_sym_val_number_token3] = ACTIONS(1921), - [aux_sym_val_number_token4] = ACTIONS(1921), - [aux_sym_val_number_token5] = ACTIONS(1921), - [anon_sym_inf] = ACTIONS(1921), - [anon_sym_DASHinf] = ACTIONS(1921), - [anon_sym_NaN] = ACTIONS(1921), - [anon_sym_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), + [666] = { + [sym_comment] = STATE(666), + [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_def_DASHenv] = 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(1957), + [anon_sym_DOLLAR] = ACTIONS(1957), + [anon_sym_error] = ACTIONS(1957), + [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_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_not] = ACTIONS(1957), + [anon_sym_DOT_DOT_LT] = ACTIONS(1957), + [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1957), + [sym_val_nothing] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1957), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1957), + [anon_sym_DASHinf] = ACTIONS(1957), + [anon_sym_NaN] = 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(3), }, - [685] = { - [sym_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(1923), - [anon_sym_export] = ACTIONS(1921), - [anon_sym_alias] = ACTIONS(1921), - [anon_sym_let] = ACTIONS(1921), - [anon_sym_let_DASHenv] = ACTIONS(1921), - [anon_sym_mut] = ACTIONS(1921), - [anon_sym_const] = ACTIONS(1921), - [anon_sym_SEMI] = ACTIONS(1921), - [sym_cmd_identifier] = ACTIONS(1921), - [anon_sym_LF] = ACTIONS(1923), - [anon_sym_def] = ACTIONS(1921), - [anon_sym_def_DASHenv] = ACTIONS(1921), - [anon_sym_export_DASHenv] = ACTIONS(1921), - [anon_sym_extern] = ACTIONS(1921), - [anon_sym_module] = ACTIONS(1921), - [anon_sym_use] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_DOLLAR] = ACTIONS(1921), - [anon_sym_error] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_break] = ACTIONS(1921), - [anon_sym_continue] = ACTIONS(1921), - [anon_sym_for] = ACTIONS(1921), - [anon_sym_loop] = ACTIONS(1921), - [anon_sym_while] = ACTIONS(1921), - [anon_sym_do] = ACTIONS(1921), - [anon_sym_if] = ACTIONS(1921), - [anon_sym_match] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_try] = ACTIONS(1921), - [anon_sym_return] = ACTIONS(1921), - [anon_sym_source] = ACTIONS(1921), - [anon_sym_source_DASHenv] = ACTIONS(1921), - [anon_sym_register] = ACTIONS(1921), - [anon_sym_hide] = ACTIONS(1921), - [anon_sym_hide_DASHenv] = ACTIONS(1921), - [anon_sym_overlay] = ACTIONS(1921), - [anon_sym_where] = ACTIONS(1921), - [anon_sym_not] = ACTIONS(1921), - [anon_sym_DOT_DOT_LT] = ACTIONS(1921), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), - [sym_val_nothing] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1921), - [anon_sym_false] = ACTIONS(1921), - [aux_sym_val_number_token1] = ACTIONS(1921), - [aux_sym_val_number_token2] = ACTIONS(1921), - [aux_sym_val_number_token3] = ACTIONS(1921), - [aux_sym_val_number_token4] = ACTIONS(1921), - [aux_sym_val_number_token5] = ACTIONS(1921), - [anon_sym_inf] = ACTIONS(1921), - [anon_sym_DASHinf] = ACTIONS(1921), - [anon_sym_NaN] = ACTIONS(1921), - [anon_sym_0b] = ACTIONS(1921), - [anon_sym_0o] = ACTIONS(1921), - [anon_sym_0x] = ACTIONS(1921), - [sym_val_date] = ACTIONS(1921), - [anon_sym_DQUOTE] = ACTIONS(1921), - [sym__str_single_quotes] = ACTIONS(1921), - [sym__str_back_ticks] = ACTIONS(1921), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1921), + [667] = { + [sym_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(1901), + [anon_sym_export] = ACTIONS(1899), + [anon_sym_alias] = ACTIONS(1899), + [anon_sym_let] = ACTIONS(1899), + [anon_sym_let_DASHenv] = ACTIONS(1899), + [anon_sym_mut] = ACTIONS(1899), + [anon_sym_const] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [sym_cmd_identifier] = ACTIONS(1899), + [anon_sym_LF] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1899), + [anon_sym_def_DASHenv] = ACTIONS(1899), + [anon_sym_export_DASHenv] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_module] = ACTIONS(1899), + [anon_sym_use] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_loop] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_match] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_source] = ACTIONS(1899), + [anon_sym_source_DASHenv] = ACTIONS(1899), + [anon_sym_register] = ACTIONS(1899), + [anon_sym_hide] = ACTIONS(1899), + [anon_sym_hide_DASHenv] = ACTIONS(1899), + [anon_sym_overlay] = ACTIONS(1899), + [anon_sym_where] = ACTIONS(1899), + [anon_sym_not] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [sym_val_nothing] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym_val_number_token1] = ACTIONS(1899), + [aux_sym_val_number_token2] = ACTIONS(1899), + [aux_sym_val_number_token3] = ACTIONS(1899), + [aux_sym_val_number_token4] = ACTIONS(1899), + [aux_sym_val_number_token5] = ACTIONS(1899), + [anon_sym_inf] = ACTIONS(1899), + [anon_sym_DASHinf] = ACTIONS(1899), + [anon_sym_NaN] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1899), + [anon_sym_0o] = ACTIONS(1899), + [anon_sym_0x] = ACTIONS(1899), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1899), [anon_sym_POUND] = ACTIONS(3), }, - [686] = { - [sym_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(1777), - [anon_sym_export] = ACTIONS(1775), - [anon_sym_alias] = ACTIONS(1775), - [anon_sym_let] = ACTIONS(1775), - [anon_sym_let_DASHenv] = ACTIONS(1775), - [anon_sym_mut] = ACTIONS(1775), - [anon_sym_const] = ACTIONS(1775), - [anon_sym_SEMI] = ACTIONS(1775), - [sym_cmd_identifier] = ACTIONS(1775), - [anon_sym_LF] = ACTIONS(1777), - [anon_sym_def] = ACTIONS(1775), - [anon_sym_def_DASHenv] = ACTIONS(1775), - [anon_sym_export_DASHenv] = ACTIONS(1775), - [anon_sym_extern] = ACTIONS(1775), - [anon_sym_module] = ACTIONS(1775), - [anon_sym_use] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_DOLLAR] = ACTIONS(1775), - [anon_sym_error] = ACTIONS(1775), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_break] = ACTIONS(1775), - [anon_sym_continue] = ACTIONS(1775), - [anon_sym_for] = ACTIONS(1775), - [anon_sym_loop] = ACTIONS(1775), - [anon_sym_while] = ACTIONS(1775), - [anon_sym_do] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(1775), - [anon_sym_match] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_try] = ACTIONS(1775), - [anon_sym_return] = ACTIONS(1775), - [anon_sym_source] = ACTIONS(1775), - [anon_sym_source_DASHenv] = ACTIONS(1775), - [anon_sym_register] = ACTIONS(1775), - [anon_sym_hide] = ACTIONS(1775), - [anon_sym_hide_DASHenv] = ACTIONS(1775), - [anon_sym_overlay] = ACTIONS(1775), - [anon_sym_where] = ACTIONS(1775), - [anon_sym_not] = ACTIONS(1775), - [anon_sym_DOT_DOT_LT] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1775), - [sym_val_nothing] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1775), - [anon_sym_false] = ACTIONS(1775), - [aux_sym_val_number_token1] = ACTIONS(1775), - [aux_sym_val_number_token2] = ACTIONS(1775), - [aux_sym_val_number_token3] = ACTIONS(1775), - [aux_sym_val_number_token4] = ACTIONS(1775), - [aux_sym_val_number_token5] = ACTIONS(1775), - [anon_sym_inf] = ACTIONS(1775), - [anon_sym_DASHinf] = ACTIONS(1775), - [anon_sym_NaN] = ACTIONS(1775), - [anon_sym_0b] = ACTIONS(1775), - [anon_sym_0o] = ACTIONS(1775), - [anon_sym_0x] = ACTIONS(1775), - [sym_val_date] = ACTIONS(1775), - [anon_sym_DQUOTE] = ACTIONS(1775), - [sym__str_single_quotes] = ACTIONS(1775), - [sym__str_back_ticks] = ACTIONS(1775), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1775), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1775), + [668] = { + [sym_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1953), + [anon_sym_export] = ACTIONS(1951), + [anon_sym_alias] = ACTIONS(1951), + [anon_sym_let] = ACTIONS(1951), + [anon_sym_let_DASHenv] = ACTIONS(1951), + [anon_sym_mut] = ACTIONS(1951), + [anon_sym_const] = ACTIONS(1951), + [anon_sym_SEMI] = ACTIONS(1951), + [sym_cmd_identifier] = ACTIONS(1951), + [anon_sym_LF] = ACTIONS(1953), + [anon_sym_def] = ACTIONS(1951), + [anon_sym_def_DASHenv] = ACTIONS(1951), + [anon_sym_export_DASHenv] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym_module] = ACTIONS(1951), + [anon_sym_use] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_DOLLAR] = ACTIONS(1951), + [anon_sym_error] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_loop] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_do] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_match] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1951), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_source] = ACTIONS(1951), + [anon_sym_source_DASHenv] = ACTIONS(1951), + [anon_sym_register] = ACTIONS(1951), + [anon_sym_hide] = ACTIONS(1951), + [anon_sym_hide_DASHenv] = ACTIONS(1951), + [anon_sym_overlay] = ACTIONS(1951), + [anon_sym_where] = ACTIONS(1951), + [anon_sym_not] = ACTIONS(1951), + [anon_sym_DOT_DOT_LT] = ACTIONS(1951), + [anon_sym_DOT_DOT] = ACTIONS(1951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), + [sym_val_nothing] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym_val_number_token1] = ACTIONS(1951), + [aux_sym_val_number_token2] = ACTIONS(1951), + [aux_sym_val_number_token3] = ACTIONS(1951), + [aux_sym_val_number_token4] = ACTIONS(1951), + [aux_sym_val_number_token5] = ACTIONS(1951), + [anon_sym_inf] = ACTIONS(1951), + [anon_sym_DASHinf] = ACTIONS(1951), + [anon_sym_NaN] = ACTIONS(1951), + [anon_sym_0b] = ACTIONS(1951), + [anon_sym_0o] = ACTIONS(1951), + [anon_sym_0x] = ACTIONS(1951), + [sym_val_date] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(1951), + [sym__str_single_quotes] = ACTIONS(1951), + [sym__str_back_ticks] = ACTIONS(1951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1951), [anon_sym_POUND] = ACTIONS(3), }, - [687] = { - [sym_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [sym_cmd_identifier] = ACTIONS(1745), - [anon_sym_LF] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_def_DASHenv] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_where] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [sym_val_nothing] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym_val_number_token1] = ACTIONS(1745), - [aux_sym_val_number_token2] = ACTIONS(1745), - [aux_sym_val_number_token3] = ACTIONS(1745), - [aux_sym_val_number_token4] = ACTIONS(1745), - [aux_sym_val_number_token5] = ACTIONS(1745), - [anon_sym_inf] = ACTIONS(1745), - [anon_sym_DASHinf] = ACTIONS(1745), - [anon_sym_NaN] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1745), + [669] = { + [sym_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1905), + [anon_sym_export] = ACTIONS(1903), + [anon_sym_alias] = ACTIONS(1903), + [anon_sym_let] = ACTIONS(1903), + [anon_sym_let_DASHenv] = ACTIONS(1903), + [anon_sym_mut] = ACTIONS(1903), + [anon_sym_const] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [sym_cmd_identifier] = ACTIONS(1903), + [anon_sym_LF] = ACTIONS(1905), + [anon_sym_def] = ACTIONS(1903), + [anon_sym_def_DASHenv] = ACTIONS(1903), + [anon_sym_export_DASHenv] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_module] = ACTIONS(1903), + [anon_sym_use] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_error] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_loop] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_match] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_source] = ACTIONS(1903), + [anon_sym_source_DASHenv] = ACTIONS(1903), + [anon_sym_register] = ACTIONS(1903), + [anon_sym_hide] = ACTIONS(1903), + [anon_sym_hide_DASHenv] = ACTIONS(1903), + [anon_sym_overlay] = ACTIONS(1903), + [anon_sym_where] = ACTIONS(1903), + [anon_sym_not] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [sym_val_nothing] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym_val_number_token1] = ACTIONS(1903), + [aux_sym_val_number_token2] = ACTIONS(1903), + [aux_sym_val_number_token3] = ACTIONS(1903), + [aux_sym_val_number_token4] = ACTIONS(1903), + [aux_sym_val_number_token5] = ACTIONS(1903), + [anon_sym_inf] = ACTIONS(1903), + [anon_sym_DASHinf] = ACTIONS(1903), + [anon_sym_NaN] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1903), + [anon_sym_0o] = ACTIONS(1903), + [anon_sym_0x] = ACTIONS(1903), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1903), [anon_sym_POUND] = ACTIONS(3), }, - [688] = { - [sym_comment] = STATE(688), + [670] = { + [sym_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [sym_cmd_identifier] = ACTIONS(1917), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_def_DASHenv] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_where] = ACTIONS(1917), + [anon_sym_not] = ACTIONS(1917), + [anon_sym_DOT_DOT_LT] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), + [sym_val_nothing] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [aux_sym_val_number_token1] = ACTIONS(1917), + [aux_sym_val_number_token2] = ACTIONS(1917), + [aux_sym_val_number_token3] = ACTIONS(1917), + [aux_sym_val_number_token4] = ACTIONS(1917), + [aux_sym_val_number_token5] = ACTIONS(1917), + [anon_sym_inf] = ACTIONS(1917), + [anon_sym_DASHinf] = ACTIONS(1917), + [anon_sym_NaN] = ACTIONS(1917), + [anon_sym_0b] = ACTIONS(1917), + [anon_sym_0o] = ACTIONS(1917), + [anon_sym_0x] = ACTIONS(1917), + [sym_val_date] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_CARET] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(3), + }, + [671] = { + [sym_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(1885), + [anon_sym_export] = ACTIONS(1883), + [anon_sym_alias] = ACTIONS(1883), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_let_DASHenv] = ACTIONS(1883), + [anon_sym_mut] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [sym_cmd_identifier] = ACTIONS(1883), + [anon_sym_LF] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1883), + [anon_sym_def_DASHenv] = ACTIONS(1883), + [anon_sym_export_DASHenv] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_module] = ACTIONS(1883), + [anon_sym_use] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1883), + [anon_sym_error] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_loop] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_match] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_source] = ACTIONS(1883), + [anon_sym_source_DASHenv] = ACTIONS(1883), + [anon_sym_register] = ACTIONS(1883), + [anon_sym_hide] = ACTIONS(1883), + [anon_sym_hide_DASHenv] = ACTIONS(1883), + [anon_sym_overlay] = ACTIONS(1883), + [anon_sym_where] = ACTIONS(1883), + [anon_sym_not] = ACTIONS(1883), + [anon_sym_DOT_DOT_LT] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), + [sym_val_nothing] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym_val_number_token1] = ACTIONS(1883), + [aux_sym_val_number_token2] = ACTIONS(1883), + [aux_sym_val_number_token3] = ACTIONS(1883), + [aux_sym_val_number_token4] = ACTIONS(1883), + [aux_sym_val_number_token5] = ACTIONS(1883), + [anon_sym_inf] = ACTIONS(1883), + [anon_sym_DASHinf] = ACTIONS(1883), + [anon_sym_NaN] = ACTIONS(1883), + [anon_sym_0b] = ACTIONS(1883), + [anon_sym_0o] = ACTIONS(1883), + [anon_sym_0x] = ACTIONS(1883), + [sym_val_date] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(3), + }, + [672] = { + [sym_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1835), [anon_sym_alias] = ACTIONS(1835), @@ -100202,18 +99191,766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1835), [anon_sym_POUND] = ACTIONS(3), }, - [689] = { - [sym_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(1765), + [673] = { + [sym_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(1909), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_alias] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_let_DASHenv] = ACTIONS(1907), + [anon_sym_mut] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_SEMI] = ACTIONS(1907), + [sym_cmd_identifier] = ACTIONS(1907), + [anon_sym_LF] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1907), + [anon_sym_def_DASHenv] = ACTIONS(1907), + [anon_sym_export_DASHenv] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_module] = ACTIONS(1907), + [anon_sym_use] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1907), + [anon_sym_DOLLAR] = ACTIONS(1907), + [anon_sym_error] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_loop] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_match] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_source] = ACTIONS(1907), + [anon_sym_source_DASHenv] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_hide] = ACTIONS(1907), + [anon_sym_hide_DASHenv] = ACTIONS(1907), + [anon_sym_overlay] = ACTIONS(1907), + [anon_sym_where] = ACTIONS(1907), + [anon_sym_not] = ACTIONS(1907), + [anon_sym_DOT_DOT_LT] = ACTIONS(1907), + [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1907), + [sym_val_nothing] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_val_number_token1] = ACTIONS(1907), + [aux_sym_val_number_token2] = ACTIONS(1907), + [aux_sym_val_number_token3] = ACTIONS(1907), + [aux_sym_val_number_token4] = ACTIONS(1907), + [aux_sym_val_number_token5] = ACTIONS(1907), + [anon_sym_inf] = ACTIONS(1907), + [anon_sym_DASHinf] = ACTIONS(1907), + [anon_sym_NaN] = ACTIONS(1907), + [anon_sym_0b] = ACTIONS(1907), + [anon_sym_0o] = ACTIONS(1907), + [anon_sym_0x] = ACTIONS(1907), + [sym_val_date] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1907), + [sym__str_single_quotes] = ACTIONS(1907), + [sym__str_back_ticks] = ACTIONS(1907), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1907), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(3), + }, + [674] = { + [sym_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_alias] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_let_DASHenv] = ACTIONS(1803), + [anon_sym_mut] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1803), + [sym_cmd_identifier] = ACTIONS(1803), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1803), + [anon_sym_def_DASHenv] = ACTIONS(1803), + [anon_sym_export_DASHenv] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(1803), + [anon_sym_error] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_source] = ACTIONS(1803), + [anon_sym_source_DASHenv] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_hide] = ACTIONS(1803), + [anon_sym_hide_DASHenv] = ACTIONS(1803), + [anon_sym_overlay] = ACTIONS(1803), + [anon_sym_where] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1803), + [anon_sym_DOT_DOT_LT] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), + [sym_val_nothing] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_val_number_token1] = ACTIONS(1803), + [aux_sym_val_number_token2] = ACTIONS(1803), + [aux_sym_val_number_token3] = ACTIONS(1803), + [aux_sym_val_number_token4] = ACTIONS(1803), + [aux_sym_val_number_token5] = ACTIONS(1803), + [anon_sym_inf] = ACTIONS(1803), + [anon_sym_DASHinf] = ACTIONS(1803), + [anon_sym_NaN] = ACTIONS(1803), + [anon_sym_0b] = ACTIONS(1803), + [anon_sym_0o] = ACTIONS(1803), + [anon_sym_0x] = ACTIONS(1803), + [sym_val_date] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [sym__str_single_quotes] = ACTIONS(1803), + [sym__str_back_ticks] = ACTIONS(1803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + }, + [675] = { + [sym_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(1919), + [anon_sym_export] = ACTIONS(1917), + [anon_sym_alias] = ACTIONS(1917), + [anon_sym_let] = ACTIONS(1917), + [anon_sym_let_DASHenv] = ACTIONS(1917), + [anon_sym_mut] = ACTIONS(1917), + [anon_sym_const] = ACTIONS(1917), + [anon_sym_SEMI] = ACTIONS(1917), + [sym_cmd_identifier] = ACTIONS(1917), + [anon_sym_LF] = ACTIONS(1919), + [anon_sym_def] = ACTIONS(1917), + [anon_sym_def_DASHenv] = ACTIONS(1917), + [anon_sym_export_DASHenv] = ACTIONS(1917), + [anon_sym_extern] = ACTIONS(1917), + [anon_sym_module] = ACTIONS(1917), + [anon_sym_use] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_DOLLAR] = ACTIONS(1917), + [anon_sym_error] = ACTIONS(1917), + [anon_sym_DASH] = ACTIONS(1917), + [anon_sym_break] = ACTIONS(1917), + [anon_sym_continue] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1917), + [anon_sym_loop] = ACTIONS(1917), + [anon_sym_while] = ACTIONS(1917), + [anon_sym_do] = ACTIONS(1917), + [anon_sym_if] = ACTIONS(1917), + [anon_sym_match] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1917), + [anon_sym_return] = ACTIONS(1917), + [anon_sym_source] = ACTIONS(1917), + [anon_sym_source_DASHenv] = ACTIONS(1917), + [anon_sym_register] = ACTIONS(1917), + [anon_sym_hide] = ACTIONS(1917), + [anon_sym_hide_DASHenv] = ACTIONS(1917), + [anon_sym_overlay] = ACTIONS(1917), + [anon_sym_where] = ACTIONS(1917), + [anon_sym_not] = ACTIONS(1917), + [anon_sym_DOT_DOT_LT] = ACTIONS(1917), + [anon_sym_DOT_DOT] = ACTIONS(1917), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1917), + [sym_val_nothing] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1917), + [anon_sym_false] = ACTIONS(1917), + [aux_sym_val_number_token1] = ACTIONS(1917), + [aux_sym_val_number_token2] = ACTIONS(1917), + [aux_sym_val_number_token3] = ACTIONS(1917), + [aux_sym_val_number_token4] = ACTIONS(1917), + [aux_sym_val_number_token5] = ACTIONS(1917), + [anon_sym_inf] = ACTIONS(1917), + [anon_sym_DASHinf] = ACTIONS(1917), + [anon_sym_NaN] = ACTIONS(1917), + [anon_sym_0b] = ACTIONS(1917), + [anon_sym_0o] = ACTIONS(1917), + [anon_sym_0x] = ACTIONS(1917), + [sym_val_date] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(1917), + [sym__str_single_quotes] = ACTIONS(1917), + [sym__str_back_ticks] = ACTIONS(1917), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1917), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1917), + [anon_sym_CARET] = ACTIONS(1917), + [anon_sym_POUND] = ACTIONS(3), + }, + [676] = { + [sym_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(1969), + [anon_sym_alias] = ACTIONS(1969), + [anon_sym_let] = ACTIONS(1969), + [anon_sym_let_DASHenv] = ACTIONS(1969), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_const] = ACTIONS(1969), + [anon_sym_SEMI] = ACTIONS(1969), + [sym_cmd_identifier] = ACTIONS(1969), + [anon_sym_LF] = ACTIONS(1971), + [anon_sym_def] = ACTIONS(1969), + [anon_sym_def_DASHenv] = ACTIONS(1969), + [anon_sym_export_DASHenv] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_module] = ACTIONS(1969), + [anon_sym_use] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_DOLLAR] = ACTIONS(1969), + [anon_sym_error] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_loop] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_match] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1969), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_source] = ACTIONS(1969), + [anon_sym_source_DASHenv] = ACTIONS(1969), + [anon_sym_register] = ACTIONS(1969), + [anon_sym_hide] = ACTIONS(1969), + [anon_sym_hide_DASHenv] = ACTIONS(1969), + [anon_sym_overlay] = ACTIONS(1969), + [anon_sym_where] = ACTIONS(1969), + [anon_sym_not] = ACTIONS(1969), + [anon_sym_DOT_DOT_LT] = ACTIONS(1969), + [anon_sym_DOT_DOT] = ACTIONS(1969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1969), + [sym_val_nothing] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [aux_sym_val_number_token1] = ACTIONS(1969), + [aux_sym_val_number_token2] = ACTIONS(1969), + [aux_sym_val_number_token3] = ACTIONS(1969), + [aux_sym_val_number_token4] = ACTIONS(1969), + [aux_sym_val_number_token5] = ACTIONS(1969), + [anon_sym_inf] = ACTIONS(1969), + [anon_sym_DASHinf] = ACTIONS(1969), + [anon_sym_NaN] = ACTIONS(1969), + [anon_sym_0b] = ACTIONS(1969), + [anon_sym_0o] = ACTIONS(1969), + [anon_sym_0x] = ACTIONS(1969), + [sym_val_date] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(1969), + [sym__str_single_quotes] = ACTIONS(1969), + [sym__str_back_ticks] = ACTIONS(1969), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1969), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(3), + }, + [677] = { + [sym_comment] = STATE(677), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(777), + [sym_cmd_identifier] = ACTIONS(775), + [anon_sym_COLON] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_in] = ACTIONS(775), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_QMARK2] = ACTIONS(777), + [anon_sym_STAR_STAR] = ACTIONS(777), + [anon_sym_PLUS_PLUS] = ACTIONS(777), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(777), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_bit_DASHshl] = ACTIONS(775), + [anon_sym_bit_DASHshr] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_LT2] = ACTIONS(775), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_not_DASHin] = ACTIONS(775), + [anon_sym_starts_DASHwith] = ACTIONS(775), + [anon_sym_ends_DASHwith] = ACTIONS(775), + [anon_sym_EQ_TILDE] = ACTIONS(777), + [anon_sym_BANG_TILDE] = ACTIONS(777), + [anon_sym_bit_DASHand] = ACTIONS(775), + [anon_sym_bit_DASHxor] = ACTIONS(775), + [anon_sym_bit_DASHor] = ACTIONS(775), + [anon_sym_and] = ACTIONS(775), + [anon_sym_xor] = ACTIONS(775), + [anon_sym_or] = ACTIONS(775), + [anon_sym_not] = ACTIONS(775), + [anon_sym_DOT_DOT_LT] = ACTIONS(777), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_EQ] = ACTIONS(777), + [sym_val_nothing] = ACTIONS(775), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [aux_sym_val_number_token1] = ACTIONS(775), + [aux_sym_val_number_token2] = ACTIONS(775), + [aux_sym_val_number_token3] = ACTIONS(777), + [aux_sym_val_number_token4] = ACTIONS(777), + [aux_sym_val_number_token5] = ACTIONS(777), + [anon_sym_inf] = ACTIONS(775), + [anon_sym_DASHinf] = ACTIONS(777), + [anon_sym_NaN] = ACTIONS(775), + [anon_sym_0b] = ACTIONS(775), + [anon_sym_0o] = ACTIONS(775), + [anon_sym_0x] = ACTIONS(775), + [sym_val_date] = ACTIONS(777), + [anon_sym_DQUOTE] = ACTIONS(777), + [sym__str_single_quotes] = ACTIONS(777), + [sym__str_back_ticks] = ACTIONS(777), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(777), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(145), + }, + [678] = { + [sym_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(1913), + [anon_sym_export] = ACTIONS(1911), + [anon_sym_alias] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_let_DASHenv] = ACTIONS(1911), + [anon_sym_mut] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [sym_cmd_identifier] = ACTIONS(1911), + [anon_sym_LF] = ACTIONS(1913), + [anon_sym_def] = ACTIONS(1911), + [anon_sym_def_DASHenv] = ACTIONS(1911), + [anon_sym_export_DASHenv] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_module] = ACTIONS(1911), + [anon_sym_use] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_loop] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_match] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_source] = ACTIONS(1911), + [anon_sym_source_DASHenv] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_hide] = ACTIONS(1911), + [anon_sym_hide_DASHenv] = ACTIONS(1911), + [anon_sym_overlay] = ACTIONS(1911), + [anon_sym_where] = ACTIONS(1911), + [anon_sym_not] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1911), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [sym_val_nothing] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym_val_number_token1] = ACTIONS(1911), + [aux_sym_val_number_token2] = ACTIONS(1911), + [aux_sym_val_number_token3] = ACTIONS(1911), + [aux_sym_val_number_token4] = ACTIONS(1911), + [aux_sym_val_number_token5] = ACTIONS(1911), + [anon_sym_inf] = ACTIONS(1911), + [anon_sym_DASHinf] = ACTIONS(1911), + [anon_sym_NaN] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1911), + [anon_sym_0o] = ACTIONS(1911), + [anon_sym_0x] = ACTIONS(1911), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(3), + }, + [679] = { + [sym_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(1833), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [anon_sym_SEMI] = ACTIONS(1831), + [sym_cmd_identifier] = ACTIONS(1831), + [anon_sym_LF] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_def_DASHenv] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_where] = ACTIONS(1831), + [anon_sym_not] = ACTIONS(1831), + [anon_sym_DOT_DOT_LT] = ACTIONS(1831), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), + [sym_val_nothing] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym_val_number_token1] = ACTIONS(1831), + [aux_sym_val_number_token2] = ACTIONS(1831), + [aux_sym_val_number_token3] = ACTIONS(1831), + [aux_sym_val_number_token4] = ACTIONS(1831), + [aux_sym_val_number_token5] = ACTIONS(1831), + [anon_sym_inf] = ACTIONS(1831), + [anon_sym_DASHinf] = ACTIONS(1831), + [anon_sym_NaN] = ACTIONS(1831), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1831), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(3), + }, + [680] = { + [sym_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(1805), + [anon_sym_export] = ACTIONS(1803), + [anon_sym_alias] = ACTIONS(1803), + [anon_sym_let] = ACTIONS(1803), + [anon_sym_let_DASHenv] = ACTIONS(1803), + [anon_sym_mut] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_SEMI] = ACTIONS(1803), + [sym_cmd_identifier] = ACTIONS(1803), + [anon_sym_LF] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1803), + [anon_sym_def_DASHenv] = ACTIONS(1803), + [anon_sym_export_DASHenv] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_module] = ACTIONS(1803), + [anon_sym_use] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1803), + [anon_sym_DOLLAR] = ACTIONS(1803), + [anon_sym_error] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_loop] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_match] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1803), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_source] = ACTIONS(1803), + [anon_sym_source_DASHenv] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_hide] = ACTIONS(1803), + [anon_sym_hide_DASHenv] = ACTIONS(1803), + [anon_sym_overlay] = ACTIONS(1803), + [anon_sym_where] = ACTIONS(1803), + [anon_sym_not] = ACTIONS(1803), + [anon_sym_DOT_DOT_LT] = ACTIONS(1803), + [anon_sym_DOT_DOT] = ACTIONS(1803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1803), + [sym_val_nothing] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_val_number_token1] = ACTIONS(1803), + [aux_sym_val_number_token2] = ACTIONS(1803), + [aux_sym_val_number_token3] = ACTIONS(1803), + [aux_sym_val_number_token4] = ACTIONS(1803), + [aux_sym_val_number_token5] = ACTIONS(1803), + [anon_sym_inf] = ACTIONS(1803), + [anon_sym_DASHinf] = ACTIONS(1803), + [anon_sym_NaN] = ACTIONS(1803), + [anon_sym_0b] = ACTIONS(1803), + [anon_sym_0o] = ACTIONS(1803), + [anon_sym_0x] = ACTIONS(1803), + [sym_val_date] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(1803), + [sym__str_single_quotes] = ACTIONS(1803), + [sym__str_back_ticks] = ACTIONS(1803), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1803), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + }, + [681] = { + [sym_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(1881), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_SEMI] = ACTIONS(1879), + [sym_cmd_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_def_DASHenv] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_where] = ACTIONS(1879), + [anon_sym_not] = ACTIONS(1879), + [anon_sym_DOT_DOT_LT] = ACTIONS(1879), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1879), + [sym_val_nothing] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym_val_number_token1] = ACTIONS(1879), + [aux_sym_val_number_token2] = ACTIONS(1879), + [aux_sym_val_number_token3] = ACTIONS(1879), + [aux_sym_val_number_token4] = ACTIONS(1879), + [aux_sym_val_number_token5] = ACTIONS(1879), + [anon_sym_inf] = ACTIONS(1879), + [anon_sym_DASHinf] = ACTIONS(1879), + [anon_sym_NaN] = ACTIONS(1879), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1879), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(3), + }, + [682] = { + [sym_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_alias] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_let_DASHenv] = ACTIONS(1921), + [anon_sym_mut] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_SEMI] = ACTIONS(1921), + [sym_cmd_identifier] = ACTIONS(1921), + [anon_sym_LF] = ACTIONS(1923), + [anon_sym_def] = ACTIONS(1921), + [anon_sym_def_DASHenv] = ACTIONS(1921), + [anon_sym_export_DASHenv] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_module] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_source] = ACTIONS(1921), + [anon_sym_source_DASHenv] = ACTIONS(1921), + [anon_sym_register] = ACTIONS(1921), + [anon_sym_hide] = ACTIONS(1921), + [anon_sym_hide_DASHenv] = ACTIONS(1921), + [anon_sym_overlay] = ACTIONS(1921), + [anon_sym_where] = ACTIONS(1921), + [anon_sym_not] = ACTIONS(1921), + [anon_sym_DOT_DOT_LT] = ACTIONS(1921), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1921), + [sym_val_nothing] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1921), + [anon_sym_false] = ACTIONS(1921), + [aux_sym_val_number_token1] = ACTIONS(1921), + [aux_sym_val_number_token2] = ACTIONS(1921), + [aux_sym_val_number_token3] = ACTIONS(1921), + [aux_sym_val_number_token4] = ACTIONS(1921), + [aux_sym_val_number_token5] = ACTIONS(1921), + [anon_sym_inf] = ACTIONS(1921), + [anon_sym_DASHinf] = ACTIONS(1921), + [anon_sym_NaN] = ACTIONS(1921), + [anon_sym_0b] = ACTIONS(1921), + [anon_sym_0o] = ACTIONS(1921), + [anon_sym_0x] = ACTIONS(1921), + [sym_val_date] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(1921), + [sym__str_single_quotes] = ACTIONS(1921), + [sym__str_back_ticks] = ACTIONS(1921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1921), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_POUND] = ACTIONS(3), + }, + [683] = { + [sym_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(1975), + [anon_sym_export] = ACTIONS(1973), + [anon_sym_alias] = ACTIONS(1973), + [anon_sym_let] = ACTIONS(1973), + [anon_sym_let_DASHenv] = ACTIONS(1973), + [anon_sym_mut] = ACTIONS(1973), + [anon_sym_const] = ACTIONS(1973), + [anon_sym_SEMI] = ACTIONS(1973), + [sym_cmd_identifier] = ACTIONS(1973), + [anon_sym_LF] = ACTIONS(1975), + [anon_sym_def] = ACTIONS(1973), + [anon_sym_def_DASHenv] = ACTIONS(1973), + [anon_sym_export_DASHenv] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_module] = ACTIONS(1973), + [anon_sym_use] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(1973), + [anon_sym_error] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_loop] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_match] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1973), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_source] = ACTIONS(1973), + [anon_sym_source_DASHenv] = ACTIONS(1973), + [anon_sym_register] = ACTIONS(1973), + [anon_sym_hide] = ACTIONS(1973), + [anon_sym_hide_DASHenv] = ACTIONS(1973), + [anon_sym_overlay] = ACTIONS(1973), + [anon_sym_where] = ACTIONS(1973), + [anon_sym_not] = ACTIONS(1973), + [anon_sym_DOT_DOT_LT] = ACTIONS(1973), + [anon_sym_DOT_DOT] = ACTIONS(1973), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1973), + [sym_val_nothing] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [aux_sym_val_number_token1] = ACTIONS(1973), + [aux_sym_val_number_token2] = ACTIONS(1973), + [aux_sym_val_number_token3] = ACTIONS(1973), + [aux_sym_val_number_token4] = ACTIONS(1973), + [aux_sym_val_number_token5] = ACTIONS(1973), + [anon_sym_inf] = ACTIONS(1973), + [anon_sym_DASHinf] = ACTIONS(1973), + [anon_sym_NaN] = ACTIONS(1973), + [anon_sym_0b] = ACTIONS(1973), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(1973), + [sym__str_single_quotes] = ACTIONS(1973), + [sym__str_back_ticks] = ACTIONS(1973), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1973), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(3), + }, + [684] = { + [sym_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2057), [anon_sym_export] = ACTIONS(1763), [anon_sym_alias] = ACTIONS(1763), [anon_sym_let] = ACTIONS(1763), [anon_sym_let_DASHenv] = ACTIONS(1763), [anon_sym_mut] = ACTIONS(1763), [anon_sym_const] = ACTIONS(1763), - [anon_sym_SEMI] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1765), [sym_cmd_identifier] = ACTIONS(1763), - [anon_sym_LF] = ACTIONS(1765), + [anon_sym_LF] = ACTIONS(1768), [anon_sym_def] = ACTIONS(1763), [anon_sym_def_DASHenv] = ACTIONS(1763), [anon_sym_export_DASHenv] = ACTIONS(1763), @@ -100270,552 +100007,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(3), }, - [690] = { - [sym_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(1785), - [anon_sym_export] = ACTIONS(1783), - [anon_sym_alias] = ACTIONS(1783), - [anon_sym_let] = ACTIONS(1783), - [anon_sym_let_DASHenv] = ACTIONS(1783), - [anon_sym_mut] = ACTIONS(1783), - [anon_sym_const] = ACTIONS(1783), - [anon_sym_SEMI] = ACTIONS(1783), - [sym_cmd_identifier] = ACTIONS(1783), - [anon_sym_LF] = ACTIONS(1785), - [anon_sym_def] = ACTIONS(1783), - [anon_sym_def_DASHenv] = ACTIONS(1783), - [anon_sym_export_DASHenv] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1783), - [anon_sym_module] = ACTIONS(1783), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_error] = ACTIONS(1783), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1783), - [anon_sym_for] = ACTIONS(1783), - [anon_sym_loop] = ACTIONS(1783), - [anon_sym_while] = ACTIONS(1783), - [anon_sym_do] = ACTIONS(1783), - [anon_sym_if] = ACTIONS(1783), - [anon_sym_match] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_try] = ACTIONS(1783), - [anon_sym_return] = ACTIONS(1783), - [anon_sym_source] = ACTIONS(1783), - [anon_sym_source_DASHenv] = ACTIONS(1783), - [anon_sym_register] = ACTIONS(1783), - [anon_sym_hide] = ACTIONS(1783), - [anon_sym_hide_DASHenv] = ACTIONS(1783), - [anon_sym_overlay] = ACTIONS(1783), - [anon_sym_where] = ACTIONS(1783), - [anon_sym_not] = ACTIONS(1783), - [anon_sym_DOT_DOT_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1783), - [sym_val_nothing] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1783), - [anon_sym_false] = ACTIONS(1783), - [aux_sym_val_number_token1] = ACTIONS(1783), - [aux_sym_val_number_token2] = ACTIONS(1783), - [aux_sym_val_number_token3] = ACTIONS(1783), - [aux_sym_val_number_token4] = ACTIONS(1783), - [aux_sym_val_number_token5] = ACTIONS(1783), - [anon_sym_inf] = ACTIONS(1783), - [anon_sym_DASHinf] = ACTIONS(1783), - [anon_sym_NaN] = ACTIONS(1783), - [anon_sym_0b] = ACTIONS(1783), - [anon_sym_0o] = ACTIONS(1783), - [anon_sym_0x] = ACTIONS(1783), - [sym_val_date] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(1783), - [sym__str_single_quotes] = ACTIONS(1783), - [sym__str_back_ticks] = ACTIONS(1783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1783), - [anon_sym_CARET] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(3), - }, - [691] = { - [sym_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(1773), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_alias] = ACTIONS(1771), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_let_DASHenv] = ACTIONS(1771), - [anon_sym_mut] = ACTIONS(1771), - [anon_sym_const] = ACTIONS(1771), - [anon_sym_SEMI] = ACTIONS(1771), - [sym_cmd_identifier] = ACTIONS(1771), - [anon_sym_LF] = ACTIONS(1773), - [anon_sym_def] = ACTIONS(1771), - [anon_sym_def_DASHenv] = ACTIONS(1771), - [anon_sym_export_DASHenv] = ACTIONS(1771), - [anon_sym_extern] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_use] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_DOLLAR] = ACTIONS(1771), - [anon_sym_error] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_break] = ACTIONS(1771), - [anon_sym_continue] = ACTIONS(1771), - [anon_sym_for] = ACTIONS(1771), - [anon_sym_loop] = ACTIONS(1771), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1771), - [anon_sym_if] = ACTIONS(1771), - [anon_sym_match] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_try] = ACTIONS(1771), - [anon_sym_return] = ACTIONS(1771), - [anon_sym_source] = ACTIONS(1771), - [anon_sym_source_DASHenv] = ACTIONS(1771), - [anon_sym_register] = ACTIONS(1771), - [anon_sym_hide] = ACTIONS(1771), - [anon_sym_hide_DASHenv] = ACTIONS(1771), - [anon_sym_overlay] = ACTIONS(1771), - [anon_sym_where] = ACTIONS(1771), - [anon_sym_not] = ACTIONS(1771), - [anon_sym_DOT_DOT_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), - [sym_val_nothing] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1771), - [anon_sym_false] = ACTIONS(1771), - [aux_sym_val_number_token1] = ACTIONS(1771), - [aux_sym_val_number_token2] = ACTIONS(1771), - [aux_sym_val_number_token3] = ACTIONS(1771), - [aux_sym_val_number_token4] = ACTIONS(1771), - [aux_sym_val_number_token5] = ACTIONS(1771), - [anon_sym_inf] = ACTIONS(1771), - [anon_sym_DASHinf] = ACTIONS(1771), - [anon_sym_NaN] = ACTIONS(1771), - [anon_sym_0b] = ACTIONS(1771), - [anon_sym_0o] = ACTIONS(1771), - [anon_sym_0x] = ACTIONS(1771), - [sym_val_date] = ACTIONS(1771), - [anon_sym_DQUOTE] = ACTIONS(1771), - [sym__str_single_quotes] = ACTIONS(1771), - [sym__str_back_ticks] = ACTIONS(1771), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), - [anon_sym_CARET] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(3), - }, - [692] = { - [sym_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(1899), - [anon_sym_export] = ACTIONS(1897), - [anon_sym_alias] = ACTIONS(1897), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_let_DASHenv] = ACTIONS(1897), - [anon_sym_mut] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(1897), - [anon_sym_SEMI] = ACTIONS(1897), - [sym_cmd_identifier] = ACTIONS(1897), - [anon_sym_LF] = ACTIONS(1899), - [anon_sym_def] = ACTIONS(1897), - [anon_sym_def_DASHenv] = ACTIONS(1897), - [anon_sym_export_DASHenv] = ACTIONS(1897), - [anon_sym_extern] = ACTIONS(1897), - [anon_sym_module] = ACTIONS(1897), - [anon_sym_use] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_DOLLAR] = ACTIONS(1897), - [anon_sym_error] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_break] = ACTIONS(1897), - [anon_sym_continue] = ACTIONS(1897), - [anon_sym_for] = ACTIONS(1897), - [anon_sym_loop] = ACTIONS(1897), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(1897), - [anon_sym_match] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_try] = ACTIONS(1897), - [anon_sym_return] = ACTIONS(1897), - [anon_sym_source] = ACTIONS(1897), - [anon_sym_source_DASHenv] = ACTIONS(1897), - [anon_sym_register] = ACTIONS(1897), - [anon_sym_hide] = ACTIONS(1897), - [anon_sym_hide_DASHenv] = ACTIONS(1897), - [anon_sym_overlay] = ACTIONS(1897), - [anon_sym_where] = ACTIONS(1897), - [anon_sym_not] = ACTIONS(1897), - [anon_sym_DOT_DOT_LT] = ACTIONS(1897), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1897), - [sym_val_nothing] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1897), - [anon_sym_false] = ACTIONS(1897), - [aux_sym_val_number_token1] = ACTIONS(1897), - [aux_sym_val_number_token2] = ACTIONS(1897), - [aux_sym_val_number_token3] = ACTIONS(1897), - [aux_sym_val_number_token4] = ACTIONS(1897), - [aux_sym_val_number_token5] = ACTIONS(1897), - [anon_sym_inf] = ACTIONS(1897), - [anon_sym_DASHinf] = ACTIONS(1897), - [anon_sym_NaN] = ACTIONS(1897), - [anon_sym_0b] = ACTIONS(1897), - [anon_sym_0o] = ACTIONS(1897), - [anon_sym_0x] = ACTIONS(1897), - [sym_val_date] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym__str_single_quotes] = ACTIONS(1897), - [sym__str_back_ticks] = ACTIONS(1897), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1897), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1897), - [anon_sym_CARET] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(3), - }, - [693] = { - [sym_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(1803), - [anon_sym_export] = ACTIONS(1801), - [anon_sym_alias] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_let_DASHenv] = ACTIONS(1801), - [anon_sym_mut] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1801), - [sym_cmd_identifier] = ACTIONS(1801), - [anon_sym_LF] = ACTIONS(1803), - [anon_sym_def] = ACTIONS(1801), - [anon_sym_def_DASHenv] = ACTIONS(1801), - [anon_sym_export_DASHenv] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_module] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1801), - [anon_sym_error] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_do] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_source] = ACTIONS(1801), - [anon_sym_source_DASHenv] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_hide] = ACTIONS(1801), - [anon_sym_hide_DASHenv] = ACTIONS(1801), - [anon_sym_overlay] = ACTIONS(1801), - [anon_sym_where] = ACTIONS(1801), - [anon_sym_not] = ACTIONS(1801), - [anon_sym_DOT_DOT_LT] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), - [sym_val_nothing] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [aux_sym_val_number_token1] = ACTIONS(1801), - [aux_sym_val_number_token2] = ACTIONS(1801), - [aux_sym_val_number_token3] = ACTIONS(1801), - [aux_sym_val_number_token4] = ACTIONS(1801), - [aux_sym_val_number_token5] = ACTIONS(1801), - [anon_sym_inf] = ACTIONS(1801), - [anon_sym_DASHinf] = ACTIONS(1801), - [anon_sym_NaN] = ACTIONS(1801), - [anon_sym_0b] = ACTIONS(1801), - [anon_sym_0o] = ACTIONS(1801), - [anon_sym_0x] = ACTIONS(1801), - [sym_val_date] = ACTIONS(1801), - [anon_sym_DQUOTE] = ACTIONS(1801), - [sym__str_single_quotes] = ACTIONS(1801), - [sym__str_back_ticks] = ACTIONS(1801), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), - [anon_sym_CARET] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(3), - }, - [694] = { - [sym_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(1887), - [anon_sym_export] = ACTIONS(1885), - [anon_sym_alias] = ACTIONS(1885), - [anon_sym_let] = ACTIONS(1885), - [anon_sym_let_DASHenv] = ACTIONS(1885), - [anon_sym_mut] = ACTIONS(1885), - [anon_sym_const] = ACTIONS(1885), - [anon_sym_SEMI] = ACTIONS(1885), - [sym_cmd_identifier] = ACTIONS(1885), - [anon_sym_LF] = ACTIONS(1887), - [anon_sym_def] = ACTIONS(1885), - [anon_sym_def_DASHenv] = ACTIONS(1885), - [anon_sym_export_DASHenv] = ACTIONS(1885), - [anon_sym_extern] = ACTIONS(1885), - [anon_sym_module] = ACTIONS(1885), - [anon_sym_use] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_DOLLAR] = ACTIONS(1885), - [anon_sym_error] = ACTIONS(1885), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_break] = ACTIONS(1885), - [anon_sym_continue] = ACTIONS(1885), - [anon_sym_for] = ACTIONS(1885), - [anon_sym_loop] = ACTIONS(1885), - [anon_sym_while] = ACTIONS(1885), - [anon_sym_do] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(1885), - [anon_sym_match] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_try] = ACTIONS(1885), - [anon_sym_return] = ACTIONS(1885), - [anon_sym_source] = ACTIONS(1885), - [anon_sym_source_DASHenv] = ACTIONS(1885), - [anon_sym_register] = ACTIONS(1885), - [anon_sym_hide] = ACTIONS(1885), - [anon_sym_hide_DASHenv] = ACTIONS(1885), - [anon_sym_overlay] = ACTIONS(1885), - [anon_sym_where] = ACTIONS(1885), - [anon_sym_not] = ACTIONS(1885), - [anon_sym_DOT_DOT_LT] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1885), - [sym_val_nothing] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1885), - [anon_sym_false] = ACTIONS(1885), - [aux_sym_val_number_token1] = ACTIONS(1885), - [aux_sym_val_number_token2] = ACTIONS(1885), - [aux_sym_val_number_token3] = ACTIONS(1885), - [aux_sym_val_number_token4] = ACTIONS(1885), - [aux_sym_val_number_token5] = ACTIONS(1885), - [anon_sym_inf] = ACTIONS(1885), - [anon_sym_DASHinf] = ACTIONS(1885), - [anon_sym_NaN] = ACTIONS(1885), - [anon_sym_0b] = ACTIONS(1885), - [anon_sym_0o] = ACTIONS(1885), - [anon_sym_0x] = ACTIONS(1885), - [sym_val_date] = ACTIONS(1885), - [anon_sym_DQUOTE] = ACTIONS(1885), - [sym__str_single_quotes] = ACTIONS(1885), - [sym__str_back_ticks] = ACTIONS(1885), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1885), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1885), - [anon_sym_CARET] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(3), - }, - [695] = { - [sym_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2057), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1865), - [sym_cmd_identifier] = ACTIONS(1863), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_def_DASHenv] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(1863), - [anon_sym_not] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [sym_val_nothing] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym_val_number_token1] = ACTIONS(1863), - [aux_sym_val_number_token2] = ACTIONS(1863), - [aux_sym_val_number_token3] = ACTIONS(1863), - [aux_sym_val_number_token4] = ACTIONS(1863), - [aux_sym_val_number_token5] = ACTIONS(1863), - [anon_sym_inf] = ACTIONS(1863), - [anon_sym_DASHinf] = ACTIONS(1863), - [anon_sym_NaN] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), + [685] = { + [sym_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(867), + [anon_sym_export] = ACTIONS(865), + [anon_sym_alias] = ACTIONS(865), + [anon_sym_let] = ACTIONS(865), + [anon_sym_let_DASHenv] = ACTIONS(865), + [anon_sym_mut] = ACTIONS(865), + [anon_sym_const] = ACTIONS(865), + [anon_sym_SEMI] = ACTIONS(865), + [sym_cmd_identifier] = ACTIONS(865), + [anon_sym_LF] = ACTIONS(867), + [anon_sym_def] = ACTIONS(865), + [anon_sym_def_DASHenv] = ACTIONS(865), + [anon_sym_export_DASHenv] = ACTIONS(865), + [anon_sym_extern] = ACTIONS(865), + [anon_sym_module] = ACTIONS(865), + [anon_sym_use] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(865), + [anon_sym_LPAREN] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(865), + [anon_sym_error] = ACTIONS(865), + [anon_sym_DASH] = ACTIONS(865), + [anon_sym_break] = ACTIONS(865), + [anon_sym_continue] = ACTIONS(865), + [anon_sym_for] = ACTIONS(865), + [anon_sym_loop] = ACTIONS(865), + [anon_sym_while] = ACTIONS(865), + [anon_sym_do] = ACTIONS(865), + [anon_sym_if] = ACTIONS(865), + [anon_sym_match] = ACTIONS(865), + [anon_sym_LBRACE] = ACTIONS(865), + [anon_sym_try] = ACTIONS(865), + [anon_sym_return] = ACTIONS(865), + [anon_sym_source] = ACTIONS(865), + [anon_sym_source_DASHenv] = ACTIONS(865), + [anon_sym_register] = ACTIONS(865), + [anon_sym_hide] = ACTIONS(865), + [anon_sym_hide_DASHenv] = ACTIONS(865), + [anon_sym_overlay] = ACTIONS(865), + [anon_sym_where] = ACTIONS(865), + [anon_sym_not] = ACTIONS(865), + [anon_sym_DOT_DOT_LT] = ACTIONS(865), + [anon_sym_DOT_DOT] = ACTIONS(865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(865), + [sym_val_nothing] = ACTIONS(865), + [anon_sym_true] = ACTIONS(865), + [anon_sym_false] = ACTIONS(865), + [aux_sym_val_number_token1] = ACTIONS(865), + [aux_sym_val_number_token2] = ACTIONS(865), + [aux_sym_val_number_token3] = ACTIONS(865), + [aux_sym_val_number_token4] = ACTIONS(865), + [aux_sym_val_number_token5] = ACTIONS(865), + [anon_sym_inf] = ACTIONS(865), + [anon_sym_DASHinf] = ACTIONS(865), + [anon_sym_NaN] = ACTIONS(865), + [anon_sym_0b] = ACTIONS(865), + [anon_sym_0o] = ACTIONS(865), + [anon_sym_0x] = ACTIONS(865), + [sym_val_date] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(865), + [sym__str_single_quotes] = ACTIONS(865), + [sym__str_back_ticks] = ACTIONS(865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(865), + [anon_sym_CARET] = ACTIONS(865), [anon_sym_POUND] = ACTIONS(3), }, - [696] = { - [sym_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(1747), - [anon_sym_export] = ACTIONS(1745), - [anon_sym_alias] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_let_DASHenv] = ACTIONS(1745), - [anon_sym_mut] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1745), - [sym_cmd_identifier] = ACTIONS(1745), - [anon_sym_LF] = ACTIONS(1747), - [anon_sym_def] = ACTIONS(1745), - [anon_sym_def_DASHenv] = ACTIONS(1745), - [anon_sym_export_DASHenv] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_module] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_LBRACK] = ACTIONS(1745), - [anon_sym_LPAREN] = ACTIONS(1745), - [anon_sym_DOLLAR] = ACTIONS(1745), - [anon_sym_error] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_source] = ACTIONS(1745), - [anon_sym_source_DASHenv] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_hide] = ACTIONS(1745), - [anon_sym_hide_DASHenv] = ACTIONS(1745), - [anon_sym_overlay] = ACTIONS(1745), - [anon_sym_where] = ACTIONS(1745), - [anon_sym_not] = ACTIONS(1745), - [anon_sym_DOT_DOT_LT] = ACTIONS(1745), - [anon_sym_DOT_DOT] = ACTIONS(1745), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1745), - [sym_val_nothing] = ACTIONS(1745), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), - [aux_sym_val_number_token1] = ACTIONS(1745), - [aux_sym_val_number_token2] = ACTIONS(1745), - [aux_sym_val_number_token3] = ACTIONS(1745), - [aux_sym_val_number_token4] = ACTIONS(1745), - [aux_sym_val_number_token5] = ACTIONS(1745), - [anon_sym_inf] = ACTIONS(1745), - [anon_sym_DASHinf] = ACTIONS(1745), - [anon_sym_NaN] = ACTIONS(1745), - [anon_sym_0b] = ACTIONS(1745), - [anon_sym_0o] = ACTIONS(1745), - [anon_sym_0x] = ACTIONS(1745), - [sym_val_date] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1745), - [sym__str_single_quotes] = ACTIONS(1745), - [sym__str_back_ticks] = ACTIONS(1745), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1745), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1745), - [anon_sym_CARET] = ACTIONS(1745), + [686] = { + [sym_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(1869), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [anon_sym_SEMI] = ACTIONS(1867), + [sym_cmd_identifier] = ACTIONS(1867), + [anon_sym_LF] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_def_DASHenv] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_where] = ACTIONS(1867), + [anon_sym_not] = ACTIONS(1867), + [anon_sym_DOT_DOT_LT] = ACTIONS(1867), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1867), + [sym_val_nothing] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [aux_sym_val_number_token1] = ACTIONS(1867), + [aux_sym_val_number_token2] = ACTIONS(1867), + [aux_sym_val_number_token3] = ACTIONS(1867), + [aux_sym_val_number_token4] = ACTIONS(1867), + [aux_sym_val_number_token5] = ACTIONS(1867), + [anon_sym_inf] = ACTIONS(1867), + [anon_sym_DASHinf] = ACTIONS(1867), + [anon_sym_NaN] = ACTIONS(1867), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), [anon_sym_POUND] = ACTIONS(3), }, - [697] = { - [sym_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2059), - [anon_sym_export] = ACTIONS(1749), - [anon_sym_alias] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_let_DASHenv] = ACTIONS(1749), - [anon_sym_mut] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1751), - [sym_cmd_identifier] = ACTIONS(1749), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_def] = ACTIONS(1749), - [anon_sym_def_DASHenv] = ACTIONS(1749), - [anon_sym_export_DASHenv] = ACTIONS(1749), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_module] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_LBRACK] = ACTIONS(1749), - [anon_sym_LPAREN] = ACTIONS(1749), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_error] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_loop] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_do] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_LBRACE] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_source] = ACTIONS(1749), - [anon_sym_source_DASHenv] = ACTIONS(1749), - [anon_sym_register] = ACTIONS(1749), - [anon_sym_hide] = ACTIONS(1749), - [anon_sym_hide_DASHenv] = ACTIONS(1749), - [anon_sym_overlay] = ACTIONS(1749), - [anon_sym_where] = ACTIONS(1749), - [anon_sym_not] = ACTIONS(1749), - [anon_sym_DOT_DOT_LT] = ACTIONS(1749), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), - [sym_val_nothing] = ACTIONS(1749), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [aux_sym_val_number_token1] = ACTIONS(1749), - [aux_sym_val_number_token2] = ACTIONS(1749), - [aux_sym_val_number_token3] = ACTIONS(1749), - [aux_sym_val_number_token4] = ACTIONS(1749), - [aux_sym_val_number_token5] = ACTIONS(1749), - [anon_sym_inf] = ACTIONS(1749), - [anon_sym_DASHinf] = ACTIONS(1749), - [anon_sym_NaN] = ACTIONS(1749), - [anon_sym_0b] = ACTIONS(1749), - [anon_sym_0o] = ACTIONS(1749), - [anon_sym_0x] = ACTIONS(1749), - [sym_val_date] = ACTIONS(1749), - [anon_sym_DQUOTE] = ACTIONS(1749), - [sym__str_single_quotes] = ACTIONS(1749), - [sym__str_back_ticks] = ACTIONS(1749), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1749), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1749), - [anon_sym_CARET] = ACTIONS(1749), + [687] = { + [sym_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(1935), + [anon_sym_export] = ACTIONS(1933), + [anon_sym_alias] = ACTIONS(1933), + [anon_sym_let] = ACTIONS(1933), + [anon_sym_let_DASHenv] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_SEMI] = ACTIONS(1933), + [sym_cmd_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1935), + [anon_sym_def] = ACTIONS(1933), + [anon_sym_def_DASHenv] = ACTIONS(1933), + [anon_sym_export_DASHenv] = ACTIONS(1933), + [anon_sym_extern] = ACTIONS(1933), + [anon_sym_module] = ACTIONS(1933), + [anon_sym_use] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_error] = ACTIONS(1933), + [anon_sym_DASH] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_loop] = ACTIONS(1933), + [anon_sym_while] = ACTIONS(1933), + [anon_sym_do] = ACTIONS(1933), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_source] = ACTIONS(1933), + [anon_sym_source_DASHenv] = ACTIONS(1933), + [anon_sym_register] = ACTIONS(1933), + [anon_sym_hide] = ACTIONS(1933), + [anon_sym_hide_DASHenv] = ACTIONS(1933), + [anon_sym_overlay] = ACTIONS(1933), + [anon_sym_where] = ACTIONS(1933), + [anon_sym_not] = ACTIONS(1933), + [anon_sym_DOT_DOT_LT] = ACTIONS(1933), + [anon_sym_DOT_DOT] = ACTIONS(1933), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1933), + [sym_val_nothing] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [aux_sym_val_number_token1] = ACTIONS(1933), + [aux_sym_val_number_token2] = ACTIONS(1933), + [aux_sym_val_number_token3] = ACTIONS(1933), + [aux_sym_val_number_token4] = ACTIONS(1933), + [aux_sym_val_number_token5] = ACTIONS(1933), + [anon_sym_inf] = ACTIONS(1933), + [anon_sym_DASHinf] = ACTIONS(1933), + [anon_sym_NaN] = ACTIONS(1933), + [anon_sym_0b] = ACTIONS(1933), + [anon_sym_0o] = ACTIONS(1933), + [anon_sym_0x] = ACTIONS(1933), + [sym_val_date] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1933), + [sym__str_single_quotes] = ACTIONS(1933), + [sym__str_back_ticks] = ACTIONS(1933), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1933), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(1933), [anon_sym_POUND] = ACTIONS(3), }, - [698] = { - [sym_comment] = STATE(698), + [688] = { + [sym_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(1943), + [anon_sym_export] = ACTIONS(1941), + [anon_sym_alias] = ACTIONS(1941), + [anon_sym_let] = ACTIONS(1941), + [anon_sym_let_DASHenv] = ACTIONS(1941), + [anon_sym_mut] = ACTIONS(1941), + [anon_sym_const] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1941), + [sym_cmd_identifier] = ACTIONS(1941), + [anon_sym_LF] = ACTIONS(1943), + [anon_sym_def] = ACTIONS(1941), + [anon_sym_def_DASHenv] = ACTIONS(1941), + [anon_sym_export_DASHenv] = ACTIONS(1941), + [anon_sym_extern] = ACTIONS(1941), + [anon_sym_module] = ACTIONS(1941), + [anon_sym_use] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_DOLLAR] = ACTIONS(1941), + [anon_sym_error] = ACTIONS(1941), + [anon_sym_DASH] = ACTIONS(1941), + [anon_sym_break] = ACTIONS(1941), + [anon_sym_continue] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1941), + [anon_sym_loop] = ACTIONS(1941), + [anon_sym_while] = ACTIONS(1941), + [anon_sym_do] = ACTIONS(1941), + [anon_sym_if] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1941), + [anon_sym_return] = ACTIONS(1941), + [anon_sym_source] = ACTIONS(1941), + [anon_sym_source_DASHenv] = ACTIONS(1941), + [anon_sym_register] = ACTIONS(1941), + [anon_sym_hide] = ACTIONS(1941), + [anon_sym_hide_DASHenv] = ACTIONS(1941), + [anon_sym_overlay] = ACTIONS(1941), + [anon_sym_where] = ACTIONS(1941), + [anon_sym_not] = ACTIONS(1941), + [anon_sym_DOT_DOT_LT] = ACTIONS(1941), + [anon_sym_DOT_DOT] = ACTIONS(1941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), + [sym_val_nothing] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1941), + [anon_sym_false] = ACTIONS(1941), + [aux_sym_val_number_token1] = ACTIONS(1941), + [aux_sym_val_number_token2] = ACTIONS(1941), + [aux_sym_val_number_token3] = ACTIONS(1941), + [aux_sym_val_number_token4] = ACTIONS(1941), + [aux_sym_val_number_token5] = ACTIONS(1941), + [anon_sym_inf] = ACTIONS(1941), + [anon_sym_DASHinf] = ACTIONS(1941), + [anon_sym_NaN] = ACTIONS(1941), + [anon_sym_0b] = ACTIONS(1941), + [anon_sym_0o] = ACTIONS(1941), + [anon_sym_0x] = ACTIONS(1941), + [sym_val_date] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(1941), + [sym__str_single_quotes] = ACTIONS(1941), + [sym__str_back_ticks] = ACTIONS(1941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_POUND] = ACTIONS(3), + }, + [689] = { + [sym_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(933), [anon_sym_export] = ACTIONS(931), [anon_sym_alias] = ACTIONS(931), @@ -100882,113 +100347,658 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(931), [anon_sym_POUND] = ACTIONS(3), }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(2061), - [anon_sym_alias] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_let_DASHenv] = ACTIONS(2061), - [anon_sym_mut] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), + [690] = { + [sym_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [anon_sym_SEMI] = ACTIONS(1871), + [sym_cmd_identifier] = ACTIONS(1871), + [anon_sym_LF] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_def_DASHenv] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_where] = ACTIONS(1871), + [anon_sym_not] = ACTIONS(1871), + [anon_sym_DOT_DOT_LT] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1871), + [sym_val_nothing] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym_val_number_token1] = ACTIONS(1871), + [aux_sym_val_number_token2] = ACTIONS(1871), + [aux_sym_val_number_token3] = ACTIONS(1871), + [aux_sym_val_number_token4] = ACTIONS(1871), + [aux_sym_val_number_token5] = ACTIONS(1871), + [anon_sym_inf] = ACTIONS(1871), + [anon_sym_DASHinf] = ACTIONS(1871), + [anon_sym_NaN] = ACTIONS(1871), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1871), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(3), + }, + [691] = { + [sym_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(1949), + [anon_sym_export] = ACTIONS(1947), + [anon_sym_alias] = ACTIONS(1947), + [anon_sym_let] = ACTIONS(1947), + [anon_sym_let_DASHenv] = ACTIONS(1947), + [anon_sym_mut] = ACTIONS(1947), + [anon_sym_const] = ACTIONS(1947), + [anon_sym_SEMI] = ACTIONS(1947), + [sym_cmd_identifier] = ACTIONS(1947), + [anon_sym_LF] = ACTIONS(1949), + [anon_sym_def] = ACTIONS(1947), + [anon_sym_def_DASHenv] = ACTIONS(1947), + [anon_sym_export_DASHenv] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_module] = ACTIONS(1947), + [anon_sym_use] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1947), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_error] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_loop] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_match] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1947), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_source] = ACTIONS(1947), + [anon_sym_source_DASHenv] = ACTIONS(1947), + [anon_sym_register] = ACTIONS(1947), + [anon_sym_hide] = ACTIONS(1947), + [anon_sym_hide_DASHenv] = ACTIONS(1947), + [anon_sym_overlay] = ACTIONS(1947), + [anon_sym_where] = ACTIONS(1947), + [anon_sym_not] = ACTIONS(1947), + [anon_sym_DOT_DOT_LT] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), + [sym_val_nothing] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_val_number_token1] = ACTIONS(1947), + [aux_sym_val_number_token2] = ACTIONS(1947), + [aux_sym_val_number_token3] = ACTIONS(1947), + [aux_sym_val_number_token4] = ACTIONS(1947), + [aux_sym_val_number_token5] = ACTIONS(1947), + [anon_sym_inf] = ACTIONS(1947), + [anon_sym_DASHinf] = ACTIONS(1947), + [anon_sym_NaN] = ACTIONS(1947), + [anon_sym_0b] = ACTIONS(1947), + [anon_sym_0o] = ACTIONS(1947), + [anon_sym_0x] = ACTIONS(1947), + [sym_val_date] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(1947), + [sym__str_single_quotes] = ACTIONS(1947), + [sym__str_back_ticks] = ACTIONS(1947), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(3), + }, + [692] = { + [sym_comment] = STATE(692), + [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_def_DASHenv] = 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(1977), + [anon_sym_DOLLAR] = ACTIONS(1977), + [anon_sym_error] = ACTIONS(1977), + [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_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_not] = ACTIONS(1977), + [anon_sym_DOT_DOT_LT] = ACTIONS(1977), + [anon_sym_DOT_DOT] = ACTIONS(1977), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1977), + [sym_val_nothing] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1977), + [anon_sym_DASHinf] = ACTIONS(1977), + [anon_sym_NaN] = 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(3), + }, + [693] = { + [sym_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1819), + [anon_sym_alias] = ACTIONS(1819), + [anon_sym_let] = ACTIONS(1819), + [anon_sym_let_DASHenv] = ACTIONS(1819), + [anon_sym_mut] = ACTIONS(1819), + [anon_sym_const] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [sym_cmd_identifier] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1821), + [anon_sym_def] = ACTIONS(1819), + [anon_sym_def_DASHenv] = ACTIONS(1819), + [anon_sym_export_DASHenv] = ACTIONS(1819), + [anon_sym_extern] = ACTIONS(1819), + [anon_sym_module] = ACTIONS(1819), + [anon_sym_use] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1819), + [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_for] = ACTIONS(1819), + [anon_sym_loop] = ACTIONS(1819), + [anon_sym_while] = ACTIONS(1819), + [anon_sym_do] = ACTIONS(1819), + [anon_sym_if] = ACTIONS(1819), + [anon_sym_match] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1819), + [anon_sym_return] = ACTIONS(1819), + [anon_sym_source] = ACTIONS(1819), + [anon_sym_source_DASHenv] = ACTIONS(1819), + [anon_sym_register] = ACTIONS(1819), + [anon_sym_hide] = ACTIONS(1819), + [anon_sym_hide_DASHenv] = ACTIONS(1819), + [anon_sym_overlay] = ACTIONS(1819), + [anon_sym_where] = ACTIONS(1819), + [anon_sym_not] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), + [sym_val_nothing] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym_val_number_token1] = ACTIONS(1819), + [aux_sym_val_number_token2] = ACTIONS(1819), + [aux_sym_val_number_token3] = ACTIONS(1819), + [aux_sym_val_number_token4] = ACTIONS(1819), + [aux_sym_val_number_token5] = ACTIONS(1819), + [anon_sym_inf] = ACTIONS(1819), + [anon_sym_DASHinf] = ACTIONS(1819), + [anon_sym_NaN] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1819), + [anon_sym_0o] = ACTIONS(1819), + [anon_sym_0x] = ACTIONS(1819), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_CARET] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(3), + }, + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), [anon_sym_SEMI] = ACTIONS(2061), - [sym_cmd_identifier] = ACTIONS(2061), - [anon_sym_LF] = ACTIONS(2063), - [anon_sym_def] = ACTIONS(2061), - [anon_sym_def_DASHenv] = ACTIONS(2061), - [anon_sym_export_DASHenv] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_module] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_DOLLAR] = ACTIONS(2061), - [anon_sym_error] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_do] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_source] = ACTIONS(2061), - [anon_sym_source_DASHenv] = ACTIONS(2061), - [anon_sym_register] = ACTIONS(2061), - [anon_sym_hide] = ACTIONS(2061), - [anon_sym_hide_DASHenv] = ACTIONS(2061), - [anon_sym_overlay] = ACTIONS(2061), - [anon_sym_where] = ACTIONS(2061), - [anon_sym_not] = ACTIONS(2061), - [anon_sym_DOT_DOT_LT] = ACTIONS(2061), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), - [sym_val_nothing] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [aux_sym_val_number_token1] = ACTIONS(2061), - [aux_sym_val_number_token2] = ACTIONS(2061), - [aux_sym_val_number_token3] = ACTIONS(2061), - [aux_sym_val_number_token4] = ACTIONS(2061), - [aux_sym_val_number_token5] = ACTIONS(2061), - [anon_sym_inf] = ACTIONS(2061), - [anon_sym_DASHinf] = ACTIONS(2061), - [anon_sym_NaN] = ACTIONS(2061), - [anon_sym_0b] = ACTIONS(2061), - [anon_sym_0o] = ACTIONS(2061), - [anon_sym_0x] = ACTIONS(2061), - [sym_val_date] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2061), - [sym__str_single_quotes] = ACTIONS(2061), - [sym__str_back_ticks] = ACTIONS(2061), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), - [anon_sym_CARET] = ACTIONS(2061), + [sym_cmd_identifier] = ACTIONS(2059), + [anon_sym_LF] = ACTIONS(2064), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_def_DASHenv] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_where] = ACTIONS(2059), + [anon_sym_not] = ACTIONS(2059), + [anon_sym_DOT_DOT_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), + [sym_val_nothing] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [aux_sym_val_number_token1] = ACTIONS(2059), + [aux_sym_val_number_token2] = ACTIONS(2059), + [aux_sym_val_number_token3] = ACTIONS(2059), + [aux_sym_val_number_token4] = ACTIONS(2059), + [aux_sym_val_number_token5] = ACTIONS(2059), + [anon_sym_inf] = ACTIONS(2059), + [anon_sym_DASHinf] = ACTIONS(2059), + [anon_sym_NaN] = ACTIONS(2059), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), [anon_sym_POUND] = ACTIONS(3), }, - [700] = { - [sym_ctrl_do] = STATE(3289), - [sym_ctrl_if] = STATE(3289), - [sym_ctrl_match] = STATE(3289), - [sym_ctrl_try] = STATE(3289), - [sym__expression] = STATE(2357), - [sym_expr_unary] = STATE(2319), - [sym_expr_binary] = STATE(2319), - [sym_expr_parenthesized] = STATE(1871), - [sym_val_range] = STATE(2319), - [sym__value] = STATE(2319), - [sym_val_bool] = STATE(2408), - [sym_val_variable] = STATE(2408), - [sym__var] = STATE(1930), + [695] = { + [sym_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(1775), + [anon_sym_export] = ACTIONS(1773), + [anon_sym_alias] = ACTIONS(1773), + [anon_sym_let] = ACTIONS(1773), + [anon_sym_let_DASHenv] = ACTIONS(1773), + [anon_sym_mut] = ACTIONS(1773), + [anon_sym_const] = ACTIONS(1773), + [anon_sym_SEMI] = ACTIONS(1773), + [sym_cmd_identifier] = ACTIONS(1773), + [anon_sym_LF] = ACTIONS(1775), + [anon_sym_def] = ACTIONS(1773), + [anon_sym_def_DASHenv] = ACTIONS(1773), + [anon_sym_export_DASHenv] = ACTIONS(1773), + [anon_sym_extern] = ACTIONS(1773), + [anon_sym_module] = ACTIONS(1773), + [anon_sym_use] = ACTIONS(1773), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_DOLLAR] = ACTIONS(1773), + [anon_sym_error] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_break] = ACTIONS(1773), + [anon_sym_continue] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1773), + [anon_sym_loop] = ACTIONS(1773), + [anon_sym_while] = ACTIONS(1773), + [anon_sym_do] = ACTIONS(1773), + [anon_sym_if] = ACTIONS(1773), + [anon_sym_match] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1773), + [anon_sym_return] = ACTIONS(1773), + [anon_sym_source] = ACTIONS(1773), + [anon_sym_source_DASHenv] = ACTIONS(1773), + [anon_sym_register] = ACTIONS(1773), + [anon_sym_hide] = ACTIONS(1773), + [anon_sym_hide_DASHenv] = ACTIONS(1773), + [anon_sym_overlay] = ACTIONS(1773), + [anon_sym_where] = ACTIONS(1773), + [anon_sym_not] = ACTIONS(1773), + [anon_sym_DOT_DOT_LT] = ACTIONS(1773), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1773), + [sym_val_nothing] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1773), + [anon_sym_false] = ACTIONS(1773), + [aux_sym_val_number_token1] = ACTIONS(1773), + [aux_sym_val_number_token2] = ACTIONS(1773), + [aux_sym_val_number_token3] = ACTIONS(1773), + [aux_sym_val_number_token4] = ACTIONS(1773), + [aux_sym_val_number_token5] = ACTIONS(1773), + [anon_sym_inf] = ACTIONS(1773), + [anon_sym_DASHinf] = ACTIONS(1773), + [anon_sym_NaN] = ACTIONS(1773), + [anon_sym_0b] = ACTIONS(1773), + [anon_sym_0o] = ACTIONS(1773), + [anon_sym_0x] = ACTIONS(1773), + [sym_val_date] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(1773), + [sym__str_single_quotes] = ACTIONS(1773), + [sym__str_back_ticks] = ACTIONS(1773), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1773), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1773), + [anon_sym_CARET] = ACTIONS(1773), + [anon_sym_POUND] = ACTIONS(3), + }, + [696] = { + [sym_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(1877), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [anon_sym_SEMI] = ACTIONS(1875), + [sym_cmd_identifier] = ACTIONS(1875), + [anon_sym_LF] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_def_DASHenv] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_where] = ACTIONS(1875), + [anon_sym_not] = ACTIONS(1875), + [anon_sym_DOT_DOT_LT] = ACTIONS(1875), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1875), + [sym_val_nothing] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym_val_number_token1] = ACTIONS(1875), + [aux_sym_val_number_token2] = ACTIONS(1875), + [aux_sym_val_number_token3] = ACTIONS(1875), + [aux_sym_val_number_token4] = ACTIONS(1875), + [aux_sym_val_number_token5] = ACTIONS(1875), + [anon_sym_inf] = ACTIONS(1875), + [anon_sym_DASHinf] = ACTIONS(1875), + [anon_sym_NaN] = ACTIONS(1875), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1875), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(3), + }, + [697] = { + [sym_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(1779), + [anon_sym_export] = ACTIONS(1777), + [anon_sym_alias] = ACTIONS(1777), + [anon_sym_let] = ACTIONS(1777), + [anon_sym_let_DASHenv] = ACTIONS(1777), + [anon_sym_mut] = ACTIONS(1777), + [anon_sym_const] = ACTIONS(1777), + [anon_sym_SEMI] = ACTIONS(1777), + [sym_cmd_identifier] = ACTIONS(1777), + [anon_sym_LF] = ACTIONS(1779), + [anon_sym_def] = ACTIONS(1777), + [anon_sym_def_DASHenv] = ACTIONS(1777), + [anon_sym_export_DASHenv] = ACTIONS(1777), + [anon_sym_extern] = ACTIONS(1777), + [anon_sym_module] = ACTIONS(1777), + [anon_sym_use] = ACTIONS(1777), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_DOLLAR] = ACTIONS(1777), + [anon_sym_error] = ACTIONS(1777), + [anon_sym_DASH] = ACTIONS(1777), + [anon_sym_break] = ACTIONS(1777), + [anon_sym_continue] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1777), + [anon_sym_loop] = ACTIONS(1777), + [anon_sym_while] = ACTIONS(1777), + [anon_sym_do] = ACTIONS(1777), + [anon_sym_if] = ACTIONS(1777), + [anon_sym_match] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1777), + [anon_sym_return] = ACTIONS(1777), + [anon_sym_source] = ACTIONS(1777), + [anon_sym_source_DASHenv] = ACTIONS(1777), + [anon_sym_register] = ACTIONS(1777), + [anon_sym_hide] = ACTIONS(1777), + [anon_sym_hide_DASHenv] = ACTIONS(1777), + [anon_sym_overlay] = ACTIONS(1777), + [anon_sym_where] = ACTIONS(1777), + [anon_sym_not] = ACTIONS(1777), + [anon_sym_DOT_DOT_LT] = ACTIONS(1777), + [anon_sym_DOT_DOT] = ACTIONS(1777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1777), + [sym_val_nothing] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1777), + [anon_sym_false] = ACTIONS(1777), + [aux_sym_val_number_token1] = ACTIONS(1777), + [aux_sym_val_number_token2] = ACTIONS(1777), + [aux_sym_val_number_token3] = ACTIONS(1777), + [aux_sym_val_number_token4] = ACTIONS(1777), + [aux_sym_val_number_token5] = ACTIONS(1777), + [anon_sym_inf] = ACTIONS(1777), + [anon_sym_DASHinf] = ACTIONS(1777), + [anon_sym_NaN] = ACTIONS(1777), + [anon_sym_0b] = ACTIONS(1777), + [anon_sym_0o] = ACTIONS(1777), + [anon_sym_0x] = ACTIONS(1777), + [sym_val_date] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(1777), + [sym__str_single_quotes] = ACTIONS(1777), + [sym__str_back_ticks] = ACTIONS(1777), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1777), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1777), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_POUND] = ACTIONS(3), + }, + [698] = { + [sym_comment] = STATE(698), + [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_def_DASHenv] = 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(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [anon_sym_error] = ACTIONS(1995), + [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_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_not] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [sym_val_nothing] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(1995), + [anon_sym_DASHinf] = ACTIONS(1995), + [anon_sym_NaN] = 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(3), + }, + [699] = { + [sym_ctrl_do] = STATE(3306), + [sym_ctrl_if] = STATE(3306), + [sym_ctrl_match] = STATE(3306), + [sym_ctrl_try] = STATE(3306), + [sym__expression] = STATE(2287), + [sym_expr_unary] = STATE(2329), + [sym_expr_binary] = STATE(2329), + [sym_expr_parenthesized] = STATE(1865), + [sym_val_range] = STATE(2329), + [sym__value] = STATE(2329), + [sym_val_bool] = STATE(2321), + [sym_val_variable] = STATE(2321), + [sym__var] = STATE(1931), [sym_val_number] = STATE(107), - [sym_val_duration] = STATE(2408), - [sym_val_filesize] = STATE(2408), - [sym_val_binary] = STATE(2408), - [sym_val_string] = STATE(2408), - [sym__str_double_quotes] = STATE(2404), - [sym_val_interpolated] = STATE(2408), - [sym__inter_single_quotes] = STATE(2317), - [sym__inter_double_quotes] = STATE(2315), - [sym_val_list] = STATE(2408), - [sym_val_record] = STATE(2408), - [sym_val_table] = STATE(2408), - [sym_val_closure] = STATE(2408), - [sym_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_LF] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(961), + [sym_val_duration] = STATE(2321), + [sym_val_filesize] = STATE(2321), + [sym_val_binary] = STATE(2321), + [sym_val_string] = STATE(2321), + [sym__str_double_quotes] = STATE(2327), + [sym_val_interpolated] = STATE(2321), + [sym__inter_single_quotes] = STATE(2331), + [sym__inter_double_quotes] = STATE(2371), + [sym_val_list] = STATE(2321), + [sym_val_record] = STATE(2321), + [sym_val_table] = STATE(2321), + [sym_val_closure] = STATE(2321), + [sym_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2013), + [anon_sym_LF] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(973), [anon_sym_DASH] = ACTIONS(39), [anon_sym_do] = ACTIONS(51), [anon_sym_if] = ACTIONS(53), [anon_sym_match] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2073), [anon_sym_try] = ACTIONS(59), [anon_sym_not] = ACTIONS(75), [anon_sym_DOT_DOT_LT] = ACTIONS(79), @@ -101009,82 +101019,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0o] = ACTIONS(89), [anon_sym_0x] = ACTIONS(89), [sym_val_date] = ACTIONS(81), - [anon_sym_DQUOTE] = ACTIONS(2071), - [sym__str_single_quotes] = ACTIONS(2073), - [sym__str_back_ticks] = ACTIONS(2073), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2075), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(3), - }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(2079), - [anon_sym_alias] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_let_DASHenv] = ACTIONS(2079), - [anon_sym_mut] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2079), - [sym_cmd_identifier] = ACTIONS(2079), - [anon_sym_LF] = ACTIONS(2081), - [anon_sym_def] = ACTIONS(2079), - [anon_sym_def_DASHenv] = ACTIONS(2079), - [anon_sym_export_DASHenv] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_module] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_DOLLAR] = ACTIONS(2079), - [anon_sym_error] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_do] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_source] = ACTIONS(2079), - [anon_sym_source_DASHenv] = ACTIONS(2079), - [anon_sym_register] = ACTIONS(2079), - [anon_sym_hide] = ACTIONS(2079), - [anon_sym_hide_DASHenv] = ACTIONS(2079), - [anon_sym_overlay] = ACTIONS(2079), - [anon_sym_where] = ACTIONS(2079), - [anon_sym_not] = ACTIONS(2079), - [anon_sym_DOT_DOT_LT] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2079), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2079), - [sym_val_nothing] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [aux_sym_val_number_token1] = ACTIONS(2079), - [aux_sym_val_number_token2] = ACTIONS(2079), - [aux_sym_val_number_token3] = ACTIONS(2079), - [aux_sym_val_number_token4] = ACTIONS(2079), - [aux_sym_val_number_token5] = ACTIONS(2079), - [anon_sym_inf] = ACTIONS(2079), - [anon_sym_DASHinf] = ACTIONS(2079), - [anon_sym_NaN] = ACTIONS(2079), - [anon_sym_0b] = ACTIONS(2079), - [anon_sym_0o] = ACTIONS(2079), - [anon_sym_0x] = ACTIONS(2079), - [sym_val_date] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2079), - [sym__str_single_quotes] = ACTIONS(2079), - [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2079), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2079), - [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2081), [anon_sym_POUND] = ACTIONS(3), }, - [702] = { - [sym_comment] = STATE(702), + [700] = { + [sym_comment] = STATE(700), [anon_sym_export] = ACTIONS(2083), [anon_sym_alias] = ACTIONS(2083), [anon_sym_let] = ACTIONS(2083), @@ -101150,1147 +101093,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2083), [anon_sym_POUND] = ACTIONS(3), }, - [703] = { - [sym_path] = STATE(761), - [sym_comment] = STATE(703), - [aux_sym_cell_path_repeat1] = STATE(711), - [anon_sym_SEMI] = ACTIONS(730), - [sym_cmd_identifier] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(730), - [anon_sym_COMMA] = ACTIONS(730), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(730), - [anon_sym_DOLLAR] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_in] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(730), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_STAR_STAR] = ACTIONS(730), - [anon_sym_PLUS_PLUS] = ACTIONS(730), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(730), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_bit_DASHshl] = ACTIONS(728), - [anon_sym_bit_DASHshr] = ACTIONS(728), - [anon_sym_EQ_EQ] = ACTIONS(730), - [anon_sym_BANG_EQ] = ACTIONS(730), - [anon_sym_LT2] = ACTIONS(728), - [anon_sym_LT_EQ] = ACTIONS(730), - [anon_sym_GT_EQ] = ACTIONS(730), - [anon_sym_not_DASHin] = ACTIONS(728), - [anon_sym_starts_DASHwith] = ACTIONS(728), - [anon_sym_ends_DASHwith] = ACTIONS(728), - [anon_sym_EQ_TILDE] = ACTIONS(730), - [anon_sym_BANG_TILDE] = ACTIONS(730), - [anon_sym_bit_DASHand] = ACTIONS(728), - [anon_sym_bit_DASHxor] = ACTIONS(728), - [anon_sym_bit_DASHor] = ACTIONS(728), - [anon_sym_and] = ACTIONS(728), - [anon_sym_xor] = ACTIONS(728), - [anon_sym_or] = ACTIONS(728), - [anon_sym_not] = ACTIONS(728), - [anon_sym_DOT_DOT_LT] = ACTIONS(730), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(730), - [sym_val_nothing] = ACTIONS(728), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [aux_sym_val_number_token1] = ACTIONS(728), - [aux_sym_val_number_token2] = ACTIONS(728), - [aux_sym_val_number_token3] = ACTIONS(730), - [aux_sym_val_number_token4] = ACTIONS(730), - [aux_sym_val_number_token5] = ACTIONS(730), - [anon_sym_inf] = ACTIONS(728), - [anon_sym_DASHinf] = ACTIONS(730), - [anon_sym_NaN] = ACTIONS(728), - [anon_sym_0b] = ACTIONS(728), - [anon_sym_0o] = ACTIONS(728), - [anon_sym_0x] = ACTIONS(728), - [sym_val_date] = ACTIONS(730), - [anon_sym_DQUOTE] = ACTIONS(730), - [sym__str_single_quotes] = ACTIONS(730), - [sym__str_back_ticks] = ACTIONS(730), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(730), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(730), - [anon_sym_POUND] = ACTIONS(143), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2015), - [sym_cmd_identifier] = ACTIONS(2015), + [701] = { + [sym_comment] = STATE(701), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_alias] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_let_DASHenv] = ACTIONS(2087), + [anon_sym_mut] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2087), + [sym_cmd_identifier] = ACTIONS(2087), [anon_sym_LF] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_def_DASHenv] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_where] = ACTIONS(2015), - [anon_sym_not] = ACTIONS(2015), - [anon_sym_DOT_DOT_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), - [sym_val_nothing] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [aux_sym_val_number_token1] = ACTIONS(2015), - [aux_sym_val_number_token2] = ACTIONS(2015), - [aux_sym_val_number_token3] = ACTIONS(2015), - [aux_sym_val_number_token4] = ACTIONS(2015), - [aux_sym_val_number_token5] = ACTIONS(2015), - [anon_sym_inf] = ACTIONS(2015), - [anon_sym_DASHinf] = ACTIONS(2015), - [anon_sym_NaN] = ACTIONS(2015), - [anon_sym_0b] = ACTIONS(2015), - [anon_sym_0o] = ACTIONS(2015), - [anon_sym_0x] = ACTIONS(2015), - [sym_val_date] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(3), - }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_alias] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_let_DASHenv] = ACTIONS(2091), - [anon_sym_mut] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [sym_cmd_identifier] = ACTIONS(2091), - [anon_sym_LF] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2091), - [anon_sym_def_DASHenv] = ACTIONS(2091), - [anon_sym_export_DASHenv] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_error] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_do] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_source] = ACTIONS(2091), - [anon_sym_source_DASHenv] = ACTIONS(2091), - [anon_sym_register] = ACTIONS(2091), - [anon_sym_hide] = ACTIONS(2091), - [anon_sym_hide_DASHenv] = ACTIONS(2091), - [anon_sym_overlay] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2091), - [anon_sym_not] = ACTIONS(2091), - [anon_sym_DOT_DOT_LT] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2091), - [sym_val_nothing] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym_val_number_token1] = ACTIONS(2091), - [aux_sym_val_number_token2] = ACTIONS(2091), - [aux_sym_val_number_token3] = ACTIONS(2091), - [aux_sym_val_number_token4] = ACTIONS(2091), - [aux_sym_val_number_token5] = ACTIONS(2091), - [anon_sym_inf] = ACTIONS(2091), - [anon_sym_DASHinf] = ACTIONS(2091), - [anon_sym_NaN] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2091), - [anon_sym_0o] = ACTIONS(2091), - [anon_sym_0x] = ACTIONS(2091), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_CARET] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(3), - }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2095), - [anon_sym_alias] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_let_DASHenv] = ACTIONS(2095), - [anon_sym_mut] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [sym_cmd_identifier] = ACTIONS(2095), - [anon_sym_LF] = ACTIONS(2097), - [anon_sym_def] = ACTIONS(2095), - [anon_sym_def_DASHenv] = ACTIONS(2095), - [anon_sym_export_DASHenv] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_error] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_do] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_source] = ACTIONS(2095), - [anon_sym_source_DASHenv] = ACTIONS(2095), - [anon_sym_register] = ACTIONS(2095), - [anon_sym_hide] = ACTIONS(2095), - [anon_sym_hide_DASHenv] = ACTIONS(2095), - [anon_sym_overlay] = ACTIONS(2095), - [anon_sym_where] = ACTIONS(2095), - [anon_sym_not] = ACTIONS(2095), - [anon_sym_DOT_DOT_LT] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2095), - [sym_val_nothing] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym_val_number_token1] = ACTIONS(2095), - [aux_sym_val_number_token2] = ACTIONS(2095), - [aux_sym_val_number_token3] = ACTIONS(2095), - [aux_sym_val_number_token4] = ACTIONS(2095), - [aux_sym_val_number_token5] = ACTIONS(2095), - [anon_sym_inf] = ACTIONS(2095), - [anon_sym_DASHinf] = ACTIONS(2095), - [anon_sym_NaN] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2095), - [anon_sym_0o] = ACTIONS(2095), - [anon_sym_0x] = ACTIONS(2095), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_CARET] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(3), - }, - [707] = { - [sym_comment] = STATE(707), - [anon_sym_export] = ACTIONS(2099), - [anon_sym_alias] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_let_DASHenv] = ACTIONS(2099), - [anon_sym_mut] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2099), - [sym_cmd_identifier] = ACTIONS(2099), - [anon_sym_LF] = ACTIONS(2101), - [anon_sym_def] = ACTIONS(2099), - [anon_sym_def_DASHenv] = ACTIONS(2099), - [anon_sym_export_DASHenv] = ACTIONS(2099), - [anon_sym_extern] = ACTIONS(2099), - [anon_sym_module] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_DOLLAR] = ACTIONS(2099), - [anon_sym_error] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_source] = ACTIONS(2099), - [anon_sym_source_DASHenv] = ACTIONS(2099), - [anon_sym_register] = ACTIONS(2099), - [anon_sym_hide] = ACTIONS(2099), - [anon_sym_hide_DASHenv] = ACTIONS(2099), - [anon_sym_overlay] = ACTIONS(2099), - [anon_sym_where] = ACTIONS(2099), - [anon_sym_not] = ACTIONS(2099), - [anon_sym_DOT_DOT_LT] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2099), - [sym_val_nothing] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [aux_sym_val_number_token1] = ACTIONS(2099), - [aux_sym_val_number_token2] = ACTIONS(2099), - [aux_sym_val_number_token3] = ACTIONS(2099), - [aux_sym_val_number_token4] = ACTIONS(2099), - [aux_sym_val_number_token5] = ACTIONS(2099), - [anon_sym_inf] = ACTIONS(2099), - [anon_sym_DASHinf] = ACTIONS(2099), - [anon_sym_NaN] = ACTIONS(2099), - [anon_sym_0b] = ACTIONS(2099), - [anon_sym_0o] = ACTIONS(2099), - [anon_sym_0x] = ACTIONS(2099), - [sym_val_date] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2099), - [sym__str_single_quotes] = ACTIONS(2099), - [sym__str_back_ticks] = ACTIONS(2099), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2099), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2099), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(3), - }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(2103), - [anon_sym_alias] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_let_DASHenv] = ACTIONS(2103), - [anon_sym_mut] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2103), - [sym_cmd_identifier] = ACTIONS(2103), - [anon_sym_LF] = ACTIONS(2105), - [anon_sym_def] = ACTIONS(2103), - [anon_sym_def_DASHenv] = ACTIONS(2103), - [anon_sym_export_DASHenv] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_module] = ACTIONS(2103), - [anon_sym_use] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_DOLLAR] = ACTIONS(2103), - [anon_sym_error] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_loop] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_do] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_source] = ACTIONS(2103), - [anon_sym_source_DASHenv] = ACTIONS(2103), - [anon_sym_register] = ACTIONS(2103), - [anon_sym_hide] = ACTIONS(2103), - [anon_sym_hide_DASHenv] = ACTIONS(2103), - [anon_sym_overlay] = ACTIONS(2103), - [anon_sym_where] = ACTIONS(2103), - [anon_sym_not] = ACTIONS(2103), - [anon_sym_DOT_DOT_LT] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2103), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2103), - [sym_val_nothing] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [aux_sym_val_number_token1] = ACTIONS(2103), - [aux_sym_val_number_token2] = ACTIONS(2103), - [aux_sym_val_number_token3] = ACTIONS(2103), - [aux_sym_val_number_token4] = ACTIONS(2103), - [aux_sym_val_number_token5] = ACTIONS(2103), - [anon_sym_inf] = ACTIONS(2103), - [anon_sym_DASHinf] = ACTIONS(2103), - [anon_sym_NaN] = ACTIONS(2103), - [anon_sym_0b] = ACTIONS(2103), - [anon_sym_0o] = ACTIONS(2103), - [anon_sym_0x] = ACTIONS(2103), - [sym_val_date] = ACTIONS(2103), - [anon_sym_DQUOTE] = ACTIONS(2103), - [sym__str_single_quotes] = ACTIONS(2103), - [sym__str_back_ticks] = ACTIONS(2103), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2103), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2103), - [anon_sym_CARET] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(3), - }, - [709] = { - [sym_comment] = STATE(709), - [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(2107), - [anon_sym_def] = ACTIONS(1995), - [anon_sym_def_DASHenv] = 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(1995), - [anon_sym_DOLLAR] = ACTIONS(1995), - [anon_sym_error] = ACTIONS(1995), - [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_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_not] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1995), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), - [sym_val_nothing] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = 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), - [anon_sym_inf] = ACTIONS(1995), - [anon_sym_DASHinf] = ACTIONS(1995), - [anon_sym_NaN] = 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(3), - }, - [710] = { - [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_alias] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_let_DASHenv] = ACTIONS(2109), - [anon_sym_mut] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2109), - [sym_cmd_identifier] = ACTIONS(2109), - [anon_sym_LF] = ACTIONS(2111), - [anon_sym_def] = ACTIONS(2109), - [anon_sym_def_DASHenv] = ACTIONS(2109), - [anon_sym_export_DASHenv] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_DOLLAR] = ACTIONS(2109), - [anon_sym_error] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_source] = ACTIONS(2109), - [anon_sym_source_DASHenv] = ACTIONS(2109), - [anon_sym_register] = ACTIONS(2109), - [anon_sym_hide] = ACTIONS(2109), - [anon_sym_hide_DASHenv] = ACTIONS(2109), - [anon_sym_overlay] = ACTIONS(2109), - [anon_sym_where] = ACTIONS(2109), - [anon_sym_not] = ACTIONS(2109), - [anon_sym_DOT_DOT_LT] = ACTIONS(2109), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2109), - [sym_val_nothing] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [aux_sym_val_number_token1] = ACTIONS(2109), - [aux_sym_val_number_token2] = ACTIONS(2109), - [aux_sym_val_number_token3] = ACTIONS(2109), - [aux_sym_val_number_token4] = ACTIONS(2109), - [aux_sym_val_number_token5] = ACTIONS(2109), - [anon_sym_inf] = ACTIONS(2109), - [anon_sym_DASHinf] = ACTIONS(2109), - [anon_sym_NaN] = ACTIONS(2109), - [anon_sym_0b] = ACTIONS(2109), - [anon_sym_0o] = ACTIONS(2109), - [anon_sym_0x] = ACTIONS(2109), - [sym_val_date] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [sym__str_single_quotes] = ACTIONS(2109), - [sym__str_back_ticks] = ACTIONS(2109), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2109), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(3), - }, - [711] = { - [sym_path] = STATE(761), - [sym_comment] = STATE(711), - [aux_sym_cell_path_repeat1] = STATE(714), - [anon_sym_SEMI] = ACTIONS(734), - [sym_cmd_identifier] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(734), - [anon_sym_COMMA] = ACTIONS(734), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LPAREN] = ACTIONS(734), - [anon_sym_DOLLAR] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(732), - [anon_sym_in] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(732), - [anon_sym_STAR_STAR] = ACTIONS(734), - [anon_sym_PLUS_PLUS] = ACTIONS(734), - [anon_sym_SLASH] = ACTIONS(732), - [anon_sym_mod] = ACTIONS(732), - [anon_sym_SLASH_SLASH] = ACTIONS(734), - [anon_sym_PLUS] = ACTIONS(732), - [anon_sym_bit_DASHshl] = ACTIONS(732), - [anon_sym_bit_DASHshr] = ACTIONS(732), - [anon_sym_EQ_EQ] = ACTIONS(734), - [anon_sym_BANG_EQ] = ACTIONS(734), - [anon_sym_LT2] = ACTIONS(732), - [anon_sym_LT_EQ] = ACTIONS(734), - [anon_sym_GT_EQ] = ACTIONS(734), - [anon_sym_not_DASHin] = ACTIONS(732), - [anon_sym_starts_DASHwith] = ACTIONS(732), - [anon_sym_ends_DASHwith] = ACTIONS(732), - [anon_sym_EQ_TILDE] = ACTIONS(734), - [anon_sym_BANG_TILDE] = ACTIONS(734), - [anon_sym_bit_DASHand] = ACTIONS(732), - [anon_sym_bit_DASHxor] = ACTIONS(732), - [anon_sym_bit_DASHor] = ACTIONS(732), - [anon_sym_and] = ACTIONS(732), - [anon_sym_xor] = ACTIONS(732), - [anon_sym_or] = ACTIONS(732), - [anon_sym_not] = ACTIONS(732), - [anon_sym_DOT_DOT_LT] = ACTIONS(734), - [anon_sym_DOT_DOT] = ACTIONS(732), - [anon_sym_DOT_DOT_EQ] = ACTIONS(734), - [sym_val_nothing] = ACTIONS(732), - [anon_sym_true] = ACTIONS(732), - [anon_sym_false] = ACTIONS(732), - [aux_sym_val_number_token1] = ACTIONS(732), - [aux_sym_val_number_token2] = ACTIONS(732), - [aux_sym_val_number_token3] = ACTIONS(734), - [aux_sym_val_number_token4] = ACTIONS(734), - [aux_sym_val_number_token5] = ACTIONS(734), - [anon_sym_inf] = ACTIONS(732), - [anon_sym_DASHinf] = ACTIONS(734), - [anon_sym_NaN] = ACTIONS(732), - [anon_sym_0b] = ACTIONS(732), - [anon_sym_0o] = ACTIONS(732), - [anon_sym_0x] = ACTIONS(732), - [sym_val_date] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(734), - [sym__str_single_quotes] = ACTIONS(734), - [sym__str_back_ticks] = ACTIONS(734), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(734), - [anon_sym_POUND] = ACTIONS(143), - }, - [712] = { - [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [sym_cmd_identifier] = ACTIONS(2005), - [anon_sym_LF] = ACTIONS(2113), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_def_DASHenv] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_where] = ACTIONS(2005), - [anon_sym_not] = ACTIONS(2005), - [anon_sym_DOT_DOT_LT] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2005), - [sym_val_nothing] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [aux_sym_val_number_token1] = ACTIONS(2005), - [aux_sym_val_number_token2] = ACTIONS(2005), - [aux_sym_val_number_token3] = ACTIONS(2005), - [aux_sym_val_number_token4] = ACTIONS(2005), - [aux_sym_val_number_token5] = ACTIONS(2005), - [anon_sym_inf] = ACTIONS(2005), - [anon_sym_DASHinf] = ACTIONS(2005), - [anon_sym_NaN] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_CARET] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(3), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(2115), - [anon_sym_alias] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_let_DASHenv] = ACTIONS(2115), - [anon_sym_mut] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2115), - [sym_cmd_identifier] = ACTIONS(2115), - [anon_sym_LF] = ACTIONS(2117), - [anon_sym_def] = ACTIONS(2115), - [anon_sym_def_DASHenv] = ACTIONS(2115), - [anon_sym_export_DASHenv] = ACTIONS(2115), - [anon_sym_extern] = ACTIONS(2115), - [anon_sym_module] = ACTIONS(2115), - [anon_sym_use] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_DOLLAR] = ACTIONS(2115), - [anon_sym_error] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_loop] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_do] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_source] = ACTIONS(2115), - [anon_sym_source_DASHenv] = ACTIONS(2115), - [anon_sym_register] = ACTIONS(2115), - [anon_sym_hide] = ACTIONS(2115), - [anon_sym_hide_DASHenv] = ACTIONS(2115), - [anon_sym_overlay] = ACTIONS(2115), - [anon_sym_where] = ACTIONS(2115), - [anon_sym_not] = ACTIONS(2115), - [anon_sym_DOT_DOT_LT] = ACTIONS(2115), - [anon_sym_DOT_DOT] = ACTIONS(2115), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2115), - [sym_val_nothing] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [aux_sym_val_number_token1] = ACTIONS(2115), - [aux_sym_val_number_token2] = ACTIONS(2115), - [aux_sym_val_number_token3] = ACTIONS(2115), - [aux_sym_val_number_token4] = ACTIONS(2115), - [aux_sym_val_number_token5] = ACTIONS(2115), - [anon_sym_inf] = ACTIONS(2115), - [anon_sym_DASHinf] = ACTIONS(2115), - [anon_sym_NaN] = ACTIONS(2115), - [anon_sym_0b] = ACTIONS(2115), - [anon_sym_0o] = ACTIONS(2115), - [anon_sym_0x] = ACTIONS(2115), - [sym_val_date] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2115), - [sym__str_single_quotes] = ACTIONS(2115), - [sym__str_back_ticks] = ACTIONS(2115), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2115), - [anon_sym_CARET] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(3), - }, - [714] = { - [sym_path] = STATE(761), - [sym_comment] = STATE(714), - [aux_sym_cell_path_repeat1] = STATE(714), - [anon_sym_SEMI] = ACTIONS(701), - [sym_cmd_identifier] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(701), - [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_LPAREN] = ACTIONS(701), - [anon_sym_DOLLAR] = ACTIONS(699), - [anon_sym_GT] = ACTIONS(699), - [anon_sym_DASH] = ACTIONS(699), - [anon_sym_in] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(699), - [anon_sym_STAR_STAR] = ACTIONS(701), - [anon_sym_PLUS_PLUS] = ACTIONS(701), - [anon_sym_SLASH] = ACTIONS(699), - [anon_sym_mod] = ACTIONS(699), - [anon_sym_SLASH_SLASH] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(699), - [anon_sym_bit_DASHshl] = ACTIONS(699), - [anon_sym_bit_DASHshr] = ACTIONS(699), - [anon_sym_EQ_EQ] = ACTIONS(701), - [anon_sym_BANG_EQ] = ACTIONS(701), - [anon_sym_LT2] = ACTIONS(699), - [anon_sym_LT_EQ] = ACTIONS(701), - [anon_sym_GT_EQ] = ACTIONS(701), - [anon_sym_not_DASHin] = ACTIONS(699), - [anon_sym_starts_DASHwith] = ACTIONS(699), - [anon_sym_ends_DASHwith] = ACTIONS(699), - [anon_sym_EQ_TILDE] = ACTIONS(701), - [anon_sym_BANG_TILDE] = ACTIONS(701), - [anon_sym_bit_DASHand] = ACTIONS(699), - [anon_sym_bit_DASHxor] = ACTIONS(699), - [anon_sym_bit_DASHor] = ACTIONS(699), - [anon_sym_and] = ACTIONS(699), - [anon_sym_xor] = ACTIONS(699), - [anon_sym_or] = ACTIONS(699), - [anon_sym_not] = ACTIONS(699), - [anon_sym_DOT_DOT_LT] = ACTIONS(701), - [anon_sym_DOT_DOT] = ACTIONS(699), - [anon_sym_DOT_DOT_EQ] = ACTIONS(701), - [sym_val_nothing] = ACTIONS(699), - [anon_sym_true] = ACTIONS(699), - [anon_sym_false] = ACTIONS(699), - [aux_sym_val_number_token1] = ACTIONS(699), - [aux_sym_val_number_token2] = ACTIONS(699), - [aux_sym_val_number_token3] = ACTIONS(701), - [aux_sym_val_number_token4] = ACTIONS(701), - [aux_sym_val_number_token5] = ACTIONS(701), - [anon_sym_inf] = ACTIONS(699), - [anon_sym_DASHinf] = ACTIONS(701), - [anon_sym_NaN] = ACTIONS(699), - [anon_sym_0b] = ACTIONS(699), - [anon_sym_0o] = ACTIONS(699), - [anon_sym_0x] = ACTIONS(699), - [sym_val_date] = ACTIONS(701), - [anon_sym_DQUOTE] = ACTIONS(701), - [sym__str_single_quotes] = ACTIONS(701), - [sym__str_back_ticks] = ACTIONS(701), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(701), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(701), - [anon_sym_POUND] = ACTIONS(143), - }, - [715] = { - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(2122), - [anon_sym_alias] = ACTIONS(2122), - [anon_sym_let] = ACTIONS(2122), - [anon_sym_let_DASHenv] = ACTIONS(2122), - [anon_sym_mut] = ACTIONS(2122), - [anon_sym_const] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [sym_cmd_identifier] = ACTIONS(2122), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2122), - [anon_sym_def_DASHenv] = ACTIONS(2122), - [anon_sym_export_DASHenv] = ACTIONS(2122), - [anon_sym_extern] = ACTIONS(2122), - [anon_sym_module] = ACTIONS(2122), - [anon_sym_use] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_error] = ACTIONS(2122), - [anon_sym_DASH] = ACTIONS(2122), - [anon_sym_break] = ACTIONS(2122), - [anon_sym_continue] = ACTIONS(2122), - [anon_sym_for] = ACTIONS(2122), - [anon_sym_loop] = ACTIONS(2122), - [anon_sym_while] = ACTIONS(2122), - [anon_sym_do] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_match] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2122), - [anon_sym_source] = ACTIONS(2122), - [anon_sym_source_DASHenv] = ACTIONS(2122), - [anon_sym_register] = ACTIONS(2122), - [anon_sym_hide] = ACTIONS(2122), - [anon_sym_hide_DASHenv] = ACTIONS(2122), - [anon_sym_overlay] = ACTIONS(2122), - [anon_sym_where] = ACTIONS(2122), - [anon_sym_not] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2122), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2122), - [sym_val_nothing] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym_val_number_token1] = ACTIONS(2122), - [aux_sym_val_number_token2] = ACTIONS(2122), - [aux_sym_val_number_token3] = ACTIONS(2122), - [aux_sym_val_number_token4] = ACTIONS(2122), - [aux_sym_val_number_token5] = ACTIONS(2122), - [anon_sym_inf] = ACTIONS(2122), - [anon_sym_DASHinf] = ACTIONS(2122), - [anon_sym_NaN] = ACTIONS(2122), - [anon_sym_0b] = ACTIONS(2122), - [anon_sym_0o] = ACTIONS(2122), - [anon_sym_0x] = ACTIONS(2122), - [sym_val_date] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(3), - }, - [716] = { - [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2126), - [anon_sym_alias] = ACTIONS(2126), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_let_DASHenv] = ACTIONS(2126), - [anon_sym_mut] = ACTIONS(2126), - [anon_sym_const] = ACTIONS(2126), - [anon_sym_SEMI] = ACTIONS(2126), - [sym_cmd_identifier] = ACTIONS(2126), - [anon_sym_LF] = ACTIONS(2128), - [anon_sym_def] = ACTIONS(2126), - [anon_sym_def_DASHenv] = ACTIONS(2126), - [anon_sym_export_DASHenv] = ACTIONS(2126), - [anon_sym_extern] = ACTIONS(2126), - [anon_sym_module] = ACTIONS(2126), - [anon_sym_use] = ACTIONS(2126), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_DOLLAR] = ACTIONS(2126), - [anon_sym_error] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [anon_sym_break] = ACTIONS(2126), - [anon_sym_continue] = ACTIONS(2126), - [anon_sym_for] = ACTIONS(2126), - [anon_sym_loop] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2126), - [anon_sym_do] = ACTIONS(2126), - [anon_sym_if] = ACTIONS(2126), - [anon_sym_match] = ACTIONS(2126), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_try] = ACTIONS(2126), - [anon_sym_return] = ACTIONS(2126), - [anon_sym_source] = ACTIONS(2126), - [anon_sym_source_DASHenv] = ACTIONS(2126), - [anon_sym_register] = ACTIONS(2126), - [anon_sym_hide] = ACTIONS(2126), - [anon_sym_hide_DASHenv] = ACTIONS(2126), - [anon_sym_overlay] = ACTIONS(2126), - [anon_sym_where] = ACTIONS(2126), - [anon_sym_not] = ACTIONS(2126), - [anon_sym_DOT_DOT_LT] = ACTIONS(2126), - [anon_sym_DOT_DOT] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2126), - [sym_val_nothing] = ACTIONS(2126), - [anon_sym_true] = ACTIONS(2126), - [anon_sym_false] = ACTIONS(2126), - [aux_sym_val_number_token1] = ACTIONS(2126), - [aux_sym_val_number_token2] = ACTIONS(2126), - [aux_sym_val_number_token3] = ACTIONS(2126), - [aux_sym_val_number_token4] = ACTIONS(2126), - [aux_sym_val_number_token5] = ACTIONS(2126), - [anon_sym_inf] = ACTIONS(2126), - [anon_sym_DASHinf] = ACTIONS(2126), - [anon_sym_NaN] = ACTIONS(2126), - [anon_sym_0b] = ACTIONS(2126), - [anon_sym_0o] = ACTIONS(2126), - [anon_sym_0x] = ACTIONS(2126), - [sym_val_date] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [sym__str_single_quotes] = ACTIONS(2126), - [sym__str_back_ticks] = ACTIONS(2126), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2126), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2126), - [anon_sym_CARET] = ACTIONS(2126), - [anon_sym_POUND] = ACTIONS(3), - }, - [717] = { - [sym_comment] = STATE(717), - [anon_sym_export] = ACTIONS(1787), - [anon_sym_alias] = ACTIONS(1787), - [anon_sym_let] = ACTIONS(1787), - [anon_sym_let_DASHenv] = ACTIONS(1787), - [anon_sym_mut] = ACTIONS(1787), - [anon_sym_const] = ACTIONS(1787), - [anon_sym_SEMI] = ACTIONS(1787), - [sym_cmd_identifier] = ACTIONS(1787), - [anon_sym_LF] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(1787), - [anon_sym_def_DASHenv] = ACTIONS(1787), - [anon_sym_export_DASHenv] = ACTIONS(1787), - [anon_sym_extern] = ACTIONS(1787), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_use] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_DOLLAR] = ACTIONS(1787), - [anon_sym_error] = ACTIONS(1787), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_break] = ACTIONS(1787), - [anon_sym_continue] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1787), - [anon_sym_loop] = ACTIONS(1787), - [anon_sym_while] = ACTIONS(1787), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_if] = ACTIONS(1787), - [anon_sym_match] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_try] = ACTIONS(1787), - [anon_sym_return] = ACTIONS(1787), - [anon_sym_source] = ACTIONS(1787), - [anon_sym_source_DASHenv] = ACTIONS(1787), - [anon_sym_register] = ACTIONS(1787), - [anon_sym_hide] = ACTIONS(1787), - [anon_sym_hide_DASHenv] = ACTIONS(1787), - [anon_sym_overlay] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(1787), - [anon_sym_not] = ACTIONS(1787), - [anon_sym_DOT_DOT_LT] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1787), - [sym_val_nothing] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1787), - [anon_sym_false] = ACTIONS(1787), - [aux_sym_val_number_token1] = ACTIONS(1787), - [aux_sym_val_number_token2] = ACTIONS(1787), - [aux_sym_val_number_token3] = ACTIONS(1787), - [aux_sym_val_number_token4] = ACTIONS(1787), - [aux_sym_val_number_token5] = ACTIONS(1787), - [anon_sym_inf] = ACTIONS(1787), - [anon_sym_DASHinf] = ACTIONS(1787), - [anon_sym_NaN] = ACTIONS(1787), - [anon_sym_0b] = ACTIONS(1787), - [anon_sym_0o] = ACTIONS(1787), - [anon_sym_0x] = ACTIONS(1787), - [sym_val_date] = ACTIONS(1787), - [anon_sym_DQUOTE] = ACTIONS(1787), - [sym__str_single_quotes] = ACTIONS(1787), - [sym__str_back_ticks] = ACTIONS(1787), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1787), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1787), - [anon_sym_CARET] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(3), - }, - [718] = { - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [anon_sym_SEMI] = ACTIONS(1965), - [sym_cmd_identifier] = ACTIONS(1965), - [anon_sym_LF] = ACTIONS(2132), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_def_DASHenv] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_where] = ACTIONS(1965), - [anon_sym_not] = ACTIONS(1965), - [anon_sym_DOT_DOT_LT] = ACTIONS(1965), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1965), - [sym_val_nothing] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1965), - [anon_sym_false] = ACTIONS(1965), - [aux_sym_val_number_token1] = ACTIONS(1965), - [aux_sym_val_number_token2] = ACTIONS(1965), - [aux_sym_val_number_token3] = ACTIONS(1965), - [aux_sym_val_number_token4] = ACTIONS(1965), - [aux_sym_val_number_token5] = ACTIONS(1965), - [anon_sym_inf] = ACTIONS(1965), - [anon_sym_DASHinf] = ACTIONS(1965), - [anon_sym_NaN] = ACTIONS(1965), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1965), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1965), - [anon_sym_CARET] = ACTIONS(1965), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_def_DASHenv] = ACTIONS(2087), + [anon_sym_export_DASHenv] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_error] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_do] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_source] = ACTIONS(2087), + [anon_sym_source_DASHenv] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_hide] = ACTIONS(2087), + [anon_sym_hide_DASHenv] = ACTIONS(2087), + [anon_sym_overlay] = ACTIONS(2087), + [anon_sym_where] = ACTIONS(2087), + [anon_sym_not] = ACTIONS(2087), + [anon_sym_DOT_DOT_LT] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2087), + [sym_val_nothing] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [aux_sym_val_number_token1] = ACTIONS(2087), + [aux_sym_val_number_token2] = ACTIONS(2087), + [aux_sym_val_number_token3] = ACTIONS(2087), + [aux_sym_val_number_token4] = ACTIONS(2087), + [aux_sym_val_number_token5] = ACTIONS(2087), + [anon_sym_inf] = ACTIONS(2087), + [anon_sym_DASHinf] = ACTIONS(2087), + [anon_sym_NaN] = ACTIONS(2087), + [anon_sym_0b] = ACTIONS(2087), + [anon_sym_0o] = ACTIONS(2087), + [anon_sym_0x] = ACTIONS(2087), + [sym_val_date] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [sym__str_single_quotes] = ACTIONS(2087), + [sym__str_back_ticks] = ACTIONS(2087), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2087), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), + [anon_sym_CARET] = ACTIONS(2087), [anon_sym_POUND] = ACTIONS(3), }, - [719] = { - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(1863), - [anon_sym_alias] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_let_DASHenv] = ACTIONS(1863), - [anon_sym_mut] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [sym_cmd_identifier] = ACTIONS(1863), - [anon_sym_LF] = ACTIONS(2134), - [anon_sym_def] = ACTIONS(1863), - [anon_sym_def_DASHenv] = ACTIONS(1863), - [anon_sym_export_DASHenv] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_module] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_do] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_source] = ACTIONS(1863), - [anon_sym_source_DASHenv] = ACTIONS(1863), - [anon_sym_register] = ACTIONS(1863), - [anon_sym_hide] = ACTIONS(1863), - [anon_sym_hide_DASHenv] = ACTIONS(1863), - [anon_sym_overlay] = ACTIONS(1863), - [anon_sym_where] = ACTIONS(1863), - [anon_sym_not] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [sym_val_nothing] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym_val_number_token1] = ACTIONS(1863), - [aux_sym_val_number_token2] = ACTIONS(1863), - [aux_sym_val_number_token3] = ACTIONS(1863), - [aux_sym_val_number_token4] = ACTIONS(1863), - [aux_sym_val_number_token5] = ACTIONS(1863), - [anon_sym_inf] = ACTIONS(1863), - [anon_sym_DASHinf] = ACTIONS(1863), - [anon_sym_NaN] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1863), - [anon_sym_0o] = ACTIONS(1863), - [anon_sym_0x] = ACTIONS(1863), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_CARET] = ACTIONS(1863), + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(2059), + [sym_cmd_identifier] = ACTIONS(2059), + [anon_sym_LF] = ACTIONS(2091), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_def_DASHenv] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_where] = ACTIONS(2059), + [anon_sym_not] = ACTIONS(2059), + [anon_sym_DOT_DOT_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), + [sym_val_nothing] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [aux_sym_val_number_token1] = ACTIONS(2059), + [aux_sym_val_number_token2] = ACTIONS(2059), + [aux_sym_val_number_token3] = ACTIONS(2059), + [aux_sym_val_number_token4] = ACTIONS(2059), + [aux_sym_val_number_token5] = ACTIONS(2059), + [anon_sym_inf] = ACTIONS(2059), + [anon_sym_DASHinf] = ACTIONS(2059), + [anon_sym_NaN] = ACTIONS(2059), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2059), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2059), + [anon_sym_CARET] = ACTIONS(2059), [anon_sym_POUND] = ACTIONS(3), }, - [720] = { - [sym_comment] = STATE(720), + [703] = { + [sym_comment] = STATE(703), [anon_sym_export] = ACTIONS(1749), [anon_sym_alias] = ACTIONS(1749), [anon_sym_let] = ACTIONS(1749), @@ -102299,7 +101237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(1749), [anon_sym_SEMI] = ACTIONS(1749), [sym_cmd_identifier] = ACTIONS(1749), - [anon_sym_LF] = ACTIONS(2136), + [anon_sym_LF] = ACTIONS(2093), [anon_sym_def] = ACTIONS(1749), [anon_sym_def_DASHenv] = ACTIONS(1749), [anon_sym_export_DASHenv] = ACTIONS(1749), @@ -102356,345 +101294,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(3), }, - [721] = { - [sym_cell_path] = STATE(810), - [sym_path] = STATE(703), - [sym_comment] = STATE(721), - [anon_sym_SEMI] = ACTIONS(726), - [sym_cmd_identifier] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_COMMA] = ACTIONS(726), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(724), - [anon_sym_GT] = ACTIONS(724), - [anon_sym_DASH] = ACTIONS(724), - [anon_sym_in] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(726), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(724), - [anon_sym_STAR_STAR] = ACTIONS(726), - [anon_sym_PLUS_PLUS] = ACTIONS(726), - [anon_sym_SLASH] = ACTIONS(724), - [anon_sym_mod] = ACTIONS(724), - [anon_sym_SLASH_SLASH] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(724), - [anon_sym_bit_DASHshl] = ACTIONS(724), - [anon_sym_bit_DASHshr] = ACTIONS(724), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_LT2] = ACTIONS(724), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_not_DASHin] = ACTIONS(724), - [anon_sym_starts_DASHwith] = ACTIONS(724), - [anon_sym_ends_DASHwith] = ACTIONS(724), - [anon_sym_EQ_TILDE] = ACTIONS(726), - [anon_sym_BANG_TILDE] = ACTIONS(726), - [anon_sym_bit_DASHand] = ACTIONS(724), - [anon_sym_bit_DASHxor] = ACTIONS(724), - [anon_sym_bit_DASHor] = ACTIONS(724), - [anon_sym_and] = ACTIONS(724), - [anon_sym_xor] = ACTIONS(724), - [anon_sym_or] = ACTIONS(724), - [anon_sym_not] = ACTIONS(724), - [anon_sym_DOT_DOT_LT] = ACTIONS(726), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_DOT_DOT_EQ] = ACTIONS(726), - [sym_val_nothing] = ACTIONS(724), - [anon_sym_true] = ACTIONS(724), - [anon_sym_false] = ACTIONS(724), - [aux_sym_val_number_token1] = ACTIONS(724), - [aux_sym_val_number_token2] = ACTIONS(724), - [aux_sym_val_number_token3] = ACTIONS(726), - [aux_sym_val_number_token4] = ACTIONS(726), - [aux_sym_val_number_token5] = ACTIONS(726), - [anon_sym_inf] = ACTIONS(724), - [anon_sym_DASHinf] = ACTIONS(726), - [anon_sym_NaN] = ACTIONS(724), - [anon_sym_0b] = ACTIONS(724), - [anon_sym_0o] = ACTIONS(724), - [anon_sym_0x] = ACTIONS(724), - [sym_val_date] = ACTIONS(726), - [anon_sym_DQUOTE] = ACTIONS(726), - [sym__str_single_quotes] = ACTIONS(726), - [sym__str_back_ticks] = ACTIONS(726), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(726), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(726), - [anon_sym_POUND] = ACTIONS(143), - }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_alias] = ACTIONS(2138), - [anon_sym_let] = ACTIONS(2138), - [anon_sym_let_DASHenv] = ACTIONS(2138), - [anon_sym_mut] = ACTIONS(2138), - [anon_sym_const] = ACTIONS(2138), - [anon_sym_SEMI] = ACTIONS(2138), - [sym_cmd_identifier] = ACTIONS(2138), - [anon_sym_LF] = ACTIONS(2140), - [anon_sym_def] = ACTIONS(2138), - [anon_sym_def_DASHenv] = ACTIONS(2138), - [anon_sym_export_DASHenv] = ACTIONS(2138), - [anon_sym_extern] = ACTIONS(2138), - [anon_sym_module] = ACTIONS(2138), - [anon_sym_use] = ACTIONS(2138), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_error] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_break] = ACTIONS(2138), - [anon_sym_continue] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_loop] = ACTIONS(2138), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_match] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2138), - [anon_sym_source] = ACTIONS(2138), - [anon_sym_source_DASHenv] = ACTIONS(2138), - [anon_sym_register] = ACTIONS(2138), - [anon_sym_hide] = ACTIONS(2138), - [anon_sym_hide_DASHenv] = ACTIONS(2138), - [anon_sym_overlay] = ACTIONS(2138), - [anon_sym_where] = ACTIONS(2138), - [anon_sym_not] = ACTIONS(2138), - [anon_sym_DOT_DOT_LT] = ACTIONS(2138), - [anon_sym_DOT_DOT] = ACTIONS(2138), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2138), - [sym_val_nothing] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2138), - [anon_sym_false] = ACTIONS(2138), - [aux_sym_val_number_token1] = ACTIONS(2138), - [aux_sym_val_number_token2] = ACTIONS(2138), - [aux_sym_val_number_token3] = ACTIONS(2138), - [aux_sym_val_number_token4] = ACTIONS(2138), - [aux_sym_val_number_token5] = ACTIONS(2138), - [anon_sym_inf] = ACTIONS(2138), - [anon_sym_DASHinf] = ACTIONS(2138), - [anon_sym_NaN] = ACTIONS(2138), - [anon_sym_0b] = ACTIONS(2138), - [anon_sym_0o] = ACTIONS(2138), - [anon_sym_0x] = ACTIONS(2138), - [sym_val_date] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [sym__str_single_quotes] = ACTIONS(2138), - [sym__str_back_ticks] = ACTIONS(2138), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2138), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2138), - [anon_sym_CARET] = ACTIONS(2138), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2031), + [anon_sym_alias] = ACTIONS(2031), + [anon_sym_let] = ACTIONS(2031), + [anon_sym_let_DASHenv] = ACTIONS(2031), + [anon_sym_mut] = ACTIONS(2031), + [anon_sym_const] = ACTIONS(2031), + [anon_sym_SEMI] = ACTIONS(2031), + [sym_cmd_identifier] = ACTIONS(2031), + [anon_sym_LF] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2031), + [anon_sym_def_DASHenv] = ACTIONS(2031), + [anon_sym_export_DASHenv] = ACTIONS(2031), + [anon_sym_extern] = ACTIONS(2031), + [anon_sym_module] = ACTIONS(2031), + [anon_sym_use] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_DOLLAR] = ACTIONS(2031), + [anon_sym_error] = ACTIONS(2031), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_break] = ACTIONS(2031), + [anon_sym_continue] = ACTIONS(2031), + [anon_sym_for] = ACTIONS(2031), + [anon_sym_loop] = ACTIONS(2031), + [anon_sym_while] = ACTIONS(2031), + [anon_sym_do] = ACTIONS(2031), + [anon_sym_if] = ACTIONS(2031), + [anon_sym_match] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_try] = ACTIONS(2031), + [anon_sym_return] = ACTIONS(2031), + [anon_sym_source] = ACTIONS(2031), + [anon_sym_source_DASHenv] = ACTIONS(2031), + [anon_sym_register] = ACTIONS(2031), + [anon_sym_hide] = ACTIONS(2031), + [anon_sym_hide_DASHenv] = ACTIONS(2031), + [anon_sym_overlay] = ACTIONS(2031), + [anon_sym_where] = ACTIONS(2031), + [anon_sym_not] = ACTIONS(2031), + [anon_sym_DOT_DOT_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2031), + [sym_val_nothing] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2031), + [anon_sym_false] = ACTIONS(2031), + [aux_sym_val_number_token1] = ACTIONS(2031), + [aux_sym_val_number_token2] = ACTIONS(2031), + [aux_sym_val_number_token3] = ACTIONS(2031), + [aux_sym_val_number_token4] = ACTIONS(2031), + [aux_sym_val_number_token5] = ACTIONS(2031), + [anon_sym_inf] = ACTIONS(2031), + [anon_sym_DASHinf] = ACTIONS(2031), + [anon_sym_NaN] = ACTIONS(2031), + [anon_sym_0b] = ACTIONS(2031), + [anon_sym_0o] = ACTIONS(2031), + [anon_sym_0x] = ACTIONS(2031), + [sym_val_date] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(2031), + [sym__str_single_quotes] = ACTIONS(2031), + [sym__str_back_ticks] = ACTIONS(2031), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), + [anon_sym_CARET] = ACTIONS(2031), [anon_sym_POUND] = ACTIONS(3), }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2142), - [anon_sym_alias] = ACTIONS(2142), - [anon_sym_let] = ACTIONS(2142), - [anon_sym_let_DASHenv] = ACTIONS(2142), - [anon_sym_mut] = ACTIONS(2142), - [anon_sym_const] = ACTIONS(2142), - [anon_sym_SEMI] = ACTIONS(2142), - [sym_cmd_identifier] = ACTIONS(2142), - [anon_sym_LF] = ACTIONS(2144), - [anon_sym_def] = ACTIONS(2142), - [anon_sym_def_DASHenv] = ACTIONS(2142), - [anon_sym_export_DASHenv] = ACTIONS(2142), - [anon_sym_extern] = ACTIONS(2142), - [anon_sym_module] = ACTIONS(2142), - [anon_sym_use] = ACTIONS(2142), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2142), - [anon_sym_error] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2142), - [anon_sym_break] = ACTIONS(2142), - [anon_sym_continue] = ACTIONS(2142), - [anon_sym_for] = ACTIONS(2142), - [anon_sym_loop] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2142), - [anon_sym_do] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_match] = ACTIONS(2142), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2142), - [anon_sym_source] = ACTIONS(2142), - [anon_sym_source_DASHenv] = ACTIONS(2142), - [anon_sym_register] = ACTIONS(2142), - [anon_sym_hide] = ACTIONS(2142), - [anon_sym_hide_DASHenv] = ACTIONS(2142), - [anon_sym_overlay] = ACTIONS(2142), - [anon_sym_where] = ACTIONS(2142), - [anon_sym_not] = ACTIONS(2142), - [anon_sym_DOT_DOT_LT] = ACTIONS(2142), - [anon_sym_DOT_DOT] = ACTIONS(2142), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2142), - [sym_val_nothing] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2142), - [anon_sym_false] = ACTIONS(2142), - [aux_sym_val_number_token1] = ACTIONS(2142), - [aux_sym_val_number_token2] = ACTIONS(2142), - [aux_sym_val_number_token3] = ACTIONS(2142), - [aux_sym_val_number_token4] = ACTIONS(2142), - [aux_sym_val_number_token5] = ACTIONS(2142), - [anon_sym_inf] = ACTIONS(2142), - [anon_sym_DASHinf] = ACTIONS(2142), - [anon_sym_NaN] = ACTIONS(2142), - [anon_sym_0b] = ACTIONS(2142), - [anon_sym_0o] = ACTIONS(2142), - [anon_sym_0x] = ACTIONS(2142), - [sym_val_date] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym__str_single_quotes] = ACTIONS(2142), - [sym__str_back_ticks] = ACTIONS(2142), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2142), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(1725), + [anon_sym_alias] = ACTIONS(1725), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_let_DASHenv] = ACTIONS(1725), + [anon_sym_mut] = ACTIONS(1725), + [anon_sym_const] = ACTIONS(1725), + [anon_sym_SEMI] = ACTIONS(1725), + [sym_cmd_identifier] = ACTIONS(1725), + [anon_sym_LF] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(1725), + [anon_sym_def_DASHenv] = ACTIONS(1725), + [anon_sym_export_DASHenv] = ACTIONS(1725), + [anon_sym_extern] = ACTIONS(1725), + [anon_sym_module] = ACTIONS(1725), + [anon_sym_use] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1725), + [anon_sym_LPAREN] = ACTIONS(1725), + [anon_sym_DOLLAR] = ACTIONS(1725), + [anon_sym_error] = ACTIONS(1725), + [anon_sym_DASH] = ACTIONS(1725), + [anon_sym_break] = ACTIONS(1725), + [anon_sym_continue] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1725), + [anon_sym_loop] = ACTIONS(1725), + [anon_sym_while] = ACTIONS(1725), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_if] = ACTIONS(1725), + [anon_sym_match] = ACTIONS(1725), + [anon_sym_LBRACE] = ACTIONS(1725), + [anon_sym_try] = ACTIONS(1725), + [anon_sym_return] = ACTIONS(1725), + [anon_sym_source] = ACTIONS(1725), + [anon_sym_source_DASHenv] = ACTIONS(1725), + [anon_sym_register] = ACTIONS(1725), + [anon_sym_hide] = ACTIONS(1725), + [anon_sym_hide_DASHenv] = ACTIONS(1725), + [anon_sym_overlay] = ACTIONS(1725), + [anon_sym_where] = ACTIONS(1725), + [anon_sym_not] = ACTIONS(1725), + [anon_sym_DOT_DOT_LT] = ACTIONS(1725), + [anon_sym_DOT_DOT] = ACTIONS(1725), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), + [sym_val_nothing] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(1725), + [anon_sym_false] = ACTIONS(1725), + [aux_sym_val_number_token1] = ACTIONS(1725), + [aux_sym_val_number_token2] = ACTIONS(1725), + [aux_sym_val_number_token3] = ACTIONS(1725), + [aux_sym_val_number_token4] = ACTIONS(1725), + [aux_sym_val_number_token5] = ACTIONS(1725), + [anon_sym_inf] = ACTIONS(1725), + [anon_sym_DASHinf] = ACTIONS(1725), + [anon_sym_NaN] = ACTIONS(1725), + [anon_sym_0b] = ACTIONS(1725), + [anon_sym_0o] = ACTIONS(1725), + [anon_sym_0x] = ACTIONS(1725), + [sym_val_date] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(1725), + [sym__str_single_quotes] = ACTIONS(1725), + [sym__str_back_ticks] = ACTIONS(1725), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1725), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1725), + [anon_sym_CARET] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2146), - [anon_sym_alias] = ACTIONS(2146), - [anon_sym_let] = ACTIONS(2146), - [anon_sym_let_DASHenv] = ACTIONS(2146), - [anon_sym_mut] = ACTIONS(2146), - [anon_sym_const] = ACTIONS(2146), - [anon_sym_SEMI] = ACTIONS(2146), - [sym_cmd_identifier] = ACTIONS(2146), - [anon_sym_LF] = ACTIONS(2148), - [anon_sym_def] = ACTIONS(2146), - [anon_sym_def_DASHenv] = ACTIONS(2146), - [anon_sym_export_DASHenv] = ACTIONS(2146), - [anon_sym_extern] = ACTIONS(2146), - [anon_sym_module] = ACTIONS(2146), - [anon_sym_use] = ACTIONS(2146), - [anon_sym_LBRACK] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(2146), - [anon_sym_DOLLAR] = ACTIONS(2146), - [anon_sym_error] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2146), - [anon_sym_break] = ACTIONS(2146), - [anon_sym_continue] = ACTIONS(2146), - [anon_sym_for] = ACTIONS(2146), - [anon_sym_loop] = ACTIONS(2146), - [anon_sym_while] = ACTIONS(2146), - [anon_sym_do] = ACTIONS(2146), - [anon_sym_if] = ACTIONS(2146), - [anon_sym_match] = ACTIONS(2146), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_try] = ACTIONS(2146), - [anon_sym_return] = ACTIONS(2146), - [anon_sym_source] = ACTIONS(2146), - [anon_sym_source_DASHenv] = ACTIONS(2146), - [anon_sym_register] = ACTIONS(2146), - [anon_sym_hide] = ACTIONS(2146), - [anon_sym_hide_DASHenv] = ACTIONS(2146), - [anon_sym_overlay] = ACTIONS(2146), - [anon_sym_where] = ACTIONS(2146), - [anon_sym_not] = ACTIONS(2146), - [anon_sym_DOT_DOT_LT] = ACTIONS(2146), - [anon_sym_DOT_DOT] = ACTIONS(2146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2146), - [sym_val_nothing] = ACTIONS(2146), - [anon_sym_true] = ACTIONS(2146), - [anon_sym_false] = ACTIONS(2146), - [aux_sym_val_number_token1] = ACTIONS(2146), - [aux_sym_val_number_token2] = ACTIONS(2146), - [aux_sym_val_number_token3] = ACTIONS(2146), - [aux_sym_val_number_token4] = ACTIONS(2146), - [aux_sym_val_number_token5] = ACTIONS(2146), - [anon_sym_inf] = ACTIONS(2146), - [anon_sym_DASHinf] = ACTIONS(2146), - [anon_sym_NaN] = ACTIONS(2146), - [anon_sym_0b] = ACTIONS(2146), - [anon_sym_0o] = ACTIONS(2146), - [anon_sym_0x] = ACTIONS(2146), - [sym_val_date] = ACTIONS(2146), - [anon_sym_DQUOTE] = ACTIONS(2146), - [sym__str_single_quotes] = ACTIONS(2146), - [sym__str_back_ticks] = ACTIONS(2146), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2146), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), - [anon_sym_CARET] = ACTIONS(2146), + [706] = { + [sym_comment] = STATE(706), + [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(2099), + [anon_sym_def] = ACTIONS(2003), + [anon_sym_def_DASHenv] = 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(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2003), + [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_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_not] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [sym_val_nothing] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2003), + [anon_sym_DASHinf] = ACTIONS(2003), + [anon_sym_NaN] = 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(3), }, - [725] = { - [sym_comment] = STATE(725), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), - [sym_cmd_identifier] = ACTIONS(2025), - [anon_sym_LF] = ACTIONS(2150), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_def_DASHenv] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_where] = ACTIONS(2025), - [anon_sym_not] = ACTIONS(2025), - [anon_sym_DOT_DOT_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2025), - [sym_val_nothing] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [aux_sym_val_number_token1] = ACTIONS(2025), - [aux_sym_val_number_token2] = ACTIONS(2025), - [aux_sym_val_number_token3] = ACTIONS(2025), - [aux_sym_val_number_token4] = ACTIONS(2025), - [aux_sym_val_number_token5] = ACTIONS(2025), - [anon_sym_inf] = ACTIONS(2025), - [anon_sym_DASHinf] = ACTIONS(2025), - [anon_sym_NaN] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2025), - [anon_sym_0o] = ACTIONS(2025), - [anon_sym_0x] = ACTIONS(2025), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_CARET] = ACTIONS(2025), + [707] = { + [sym_comment] = STATE(707), + [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_def_DASHenv] = 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(2101), + [anon_sym_DOLLAR] = ACTIONS(2101), + [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_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_not] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2101), + [sym_val_nothing] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2101), + [anon_sym_DASHinf] = ACTIONS(2101), + [anon_sym_NaN] = 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(3), }, - [726] = { - [sym_cell_path] = STATE(767), - [sym_path] = STATE(703), - [sym_comment] = STATE(726), + [708] = { + [sym_cell_path] = STATE(799), + [sym_path] = STATE(710), + [sym_comment] = STATE(708), [anon_sym_SEMI] = ACTIONS(738), [sym_cmd_identifier] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(738), @@ -102706,7 +101577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(736), [anon_sym_in] = ACTIONS(736), [anon_sym_LBRACE] = ACTIONS(738), - [anon_sym_DOT] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(2105), [anon_sym_STAR] = ACTIONS(736), [anon_sym_STAR_STAR] = ACTIONS(738), [anon_sym_PLUS_PLUS] = ACTIONS(738), @@ -102756,10 +101627,1082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(738), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(738), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(738), - [anon_sym_POUND] = ACTIONS(143), + [anon_sym_POUND] = ACTIONS(145), }, - [727] = { - [sym_comment] = STATE(727), + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(2107), + [anon_sym_alias] = ACTIONS(2107), + [anon_sym_let] = ACTIONS(2107), + [anon_sym_let_DASHenv] = ACTIONS(2107), + [anon_sym_mut] = ACTIONS(2107), + [anon_sym_const] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [sym_cmd_identifier] = ACTIONS(2107), + [anon_sym_LF] = ACTIONS(2109), + [anon_sym_def] = ACTIONS(2107), + [anon_sym_def_DASHenv] = ACTIONS(2107), + [anon_sym_export_DASHenv] = ACTIONS(2107), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_module] = ACTIONS(2107), + [anon_sym_use] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [anon_sym_error] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_break] = ACTIONS(2107), + [anon_sym_continue] = ACTIONS(2107), + [anon_sym_for] = ACTIONS(2107), + [anon_sym_loop] = ACTIONS(2107), + [anon_sym_while] = ACTIONS(2107), + [anon_sym_do] = ACTIONS(2107), + [anon_sym_if] = ACTIONS(2107), + [anon_sym_match] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [anon_sym_return] = ACTIONS(2107), + [anon_sym_source] = ACTIONS(2107), + [anon_sym_source_DASHenv] = ACTIONS(2107), + [anon_sym_register] = ACTIONS(2107), + [anon_sym_hide] = ACTIONS(2107), + [anon_sym_hide_DASHenv] = ACTIONS(2107), + [anon_sym_overlay] = ACTIONS(2107), + [anon_sym_where] = ACTIONS(2107), + [anon_sym_not] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2107), + [sym_val_nothing] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [aux_sym_val_number_token1] = ACTIONS(2107), + [aux_sym_val_number_token2] = ACTIONS(2107), + [aux_sym_val_number_token3] = ACTIONS(2107), + [aux_sym_val_number_token4] = ACTIONS(2107), + [aux_sym_val_number_token5] = ACTIONS(2107), + [anon_sym_inf] = ACTIONS(2107), + [anon_sym_DASHinf] = ACTIONS(2107), + [anon_sym_NaN] = ACTIONS(2107), + [anon_sym_0b] = ACTIONS(2107), + [anon_sym_0o] = ACTIONS(2107), + [anon_sym_0x] = ACTIONS(2107), + [sym_val_date] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), + [anon_sym_CARET] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(3), + }, + [710] = { + [sym_path] = STATE(758), + [sym_comment] = STATE(710), + [aux_sym_cell_path_repeat1] = STATE(718), + [anon_sym_SEMI] = ACTIONS(754), + [sym_cmd_identifier] = ACTIONS(752), + [anon_sym_LBRACK] = ACTIONS(754), + [anon_sym_COMMA] = ACTIONS(754), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(752), + [anon_sym_GT] = ACTIONS(752), + [anon_sym_DASH] = ACTIONS(752), + [anon_sym_in] = ACTIONS(752), + [anon_sym_LBRACE] = ACTIONS(754), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(752), + [anon_sym_STAR_STAR] = ACTIONS(754), + [anon_sym_PLUS_PLUS] = ACTIONS(754), + [anon_sym_SLASH] = ACTIONS(752), + [anon_sym_mod] = ACTIONS(752), + [anon_sym_SLASH_SLASH] = ACTIONS(754), + [anon_sym_PLUS] = ACTIONS(752), + [anon_sym_bit_DASHshl] = ACTIONS(752), + [anon_sym_bit_DASHshr] = ACTIONS(752), + [anon_sym_EQ_EQ] = ACTIONS(754), + [anon_sym_BANG_EQ] = ACTIONS(754), + [anon_sym_LT2] = ACTIONS(752), + [anon_sym_LT_EQ] = ACTIONS(754), + [anon_sym_GT_EQ] = ACTIONS(754), + [anon_sym_not_DASHin] = ACTIONS(752), + [anon_sym_starts_DASHwith] = ACTIONS(752), + [anon_sym_ends_DASHwith] = ACTIONS(752), + [anon_sym_EQ_TILDE] = ACTIONS(754), + [anon_sym_BANG_TILDE] = ACTIONS(754), + [anon_sym_bit_DASHand] = ACTIONS(752), + [anon_sym_bit_DASHxor] = ACTIONS(752), + [anon_sym_bit_DASHor] = ACTIONS(752), + [anon_sym_and] = ACTIONS(752), + [anon_sym_xor] = ACTIONS(752), + [anon_sym_or] = ACTIONS(752), + [anon_sym_not] = ACTIONS(752), + [anon_sym_DOT_DOT_LT] = ACTIONS(754), + [anon_sym_DOT_DOT] = ACTIONS(752), + [anon_sym_DOT_DOT_EQ] = ACTIONS(754), + [sym_val_nothing] = ACTIONS(752), + [anon_sym_true] = ACTIONS(752), + [anon_sym_false] = ACTIONS(752), + [aux_sym_val_number_token1] = ACTIONS(752), + [aux_sym_val_number_token2] = ACTIONS(752), + [aux_sym_val_number_token3] = ACTIONS(754), + [aux_sym_val_number_token4] = ACTIONS(754), + [aux_sym_val_number_token5] = ACTIONS(754), + [anon_sym_inf] = ACTIONS(752), + [anon_sym_DASHinf] = ACTIONS(754), + [anon_sym_NaN] = ACTIONS(752), + [anon_sym_0b] = ACTIONS(752), + [anon_sym_0o] = ACTIONS(752), + [anon_sym_0x] = ACTIONS(752), + [sym_val_date] = ACTIONS(754), + [anon_sym_DQUOTE] = ACTIONS(754), + [sym__str_single_quotes] = ACTIONS(754), + [sym__str_back_ticks] = ACTIONS(754), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(754), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(754), + [anon_sym_POUND] = ACTIONS(145), + }, + [711] = { + [sym_comment] = STATE(711), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_alias] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_let_DASHenv] = ACTIONS(2111), + [anon_sym_mut] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [sym_cmd_identifier] = ACTIONS(2111), + [anon_sym_LF] = ACTIONS(2113), + [anon_sym_def] = ACTIONS(2111), + [anon_sym_def_DASHenv] = ACTIONS(2111), + [anon_sym_export_DASHenv] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_DOLLAR] = ACTIONS(2111), + [anon_sym_error] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_source] = ACTIONS(2111), + [anon_sym_source_DASHenv] = ACTIONS(2111), + [anon_sym_register] = ACTIONS(2111), + [anon_sym_hide] = ACTIONS(2111), + [anon_sym_hide_DASHenv] = ACTIONS(2111), + [anon_sym_overlay] = ACTIONS(2111), + [anon_sym_where] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(2111), + [anon_sym_DOT_DOT_LT] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2111), + [sym_val_nothing] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [aux_sym_val_number_token1] = ACTIONS(2111), + [aux_sym_val_number_token2] = ACTIONS(2111), + [aux_sym_val_number_token3] = ACTIONS(2111), + [aux_sym_val_number_token4] = ACTIONS(2111), + [aux_sym_val_number_token5] = ACTIONS(2111), + [anon_sym_inf] = ACTIONS(2111), + [anon_sym_DASHinf] = ACTIONS(2111), + [anon_sym_NaN] = ACTIONS(2111), + [anon_sym_0b] = ACTIONS(2111), + [anon_sym_0o] = ACTIONS(2111), + [anon_sym_0x] = ACTIONS(2111), + [sym_val_date] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [sym__str_single_quotes] = ACTIONS(2111), + [sym__str_back_ticks] = ACTIONS(2111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2111), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(3), + }, + [712] = { + [sym_path] = STATE(758), + [sym_comment] = STATE(712), + [aux_sym_cell_path_repeat1] = STATE(712), + [anon_sym_SEMI] = ACTIONS(731), + [sym_cmd_identifier] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_COMMA] = ACTIONS(731), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(729), + [anon_sym_GT] = ACTIONS(729), + [anon_sym_DASH] = ACTIONS(729), + [anon_sym_in] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(731), + [anon_sym_DOT] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(729), + [anon_sym_STAR_STAR] = ACTIONS(731), + [anon_sym_PLUS_PLUS] = ACTIONS(731), + [anon_sym_SLASH] = ACTIONS(729), + [anon_sym_mod] = ACTIONS(729), + [anon_sym_SLASH_SLASH] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(729), + [anon_sym_bit_DASHshl] = ACTIONS(729), + [anon_sym_bit_DASHshr] = ACTIONS(729), + [anon_sym_EQ_EQ] = ACTIONS(731), + [anon_sym_BANG_EQ] = ACTIONS(731), + [anon_sym_LT2] = ACTIONS(729), + [anon_sym_LT_EQ] = ACTIONS(731), + [anon_sym_GT_EQ] = ACTIONS(731), + [anon_sym_not_DASHin] = ACTIONS(729), + [anon_sym_starts_DASHwith] = ACTIONS(729), + [anon_sym_ends_DASHwith] = ACTIONS(729), + [anon_sym_EQ_TILDE] = ACTIONS(731), + [anon_sym_BANG_TILDE] = ACTIONS(731), + [anon_sym_bit_DASHand] = ACTIONS(729), + [anon_sym_bit_DASHxor] = ACTIONS(729), + [anon_sym_bit_DASHor] = ACTIONS(729), + [anon_sym_and] = ACTIONS(729), + [anon_sym_xor] = ACTIONS(729), + [anon_sym_or] = ACTIONS(729), + [anon_sym_not] = ACTIONS(729), + [anon_sym_DOT_DOT_LT] = ACTIONS(731), + [anon_sym_DOT_DOT] = ACTIONS(729), + [anon_sym_DOT_DOT_EQ] = ACTIONS(731), + [sym_val_nothing] = ACTIONS(729), + [anon_sym_true] = ACTIONS(729), + [anon_sym_false] = ACTIONS(729), + [aux_sym_val_number_token1] = ACTIONS(729), + [aux_sym_val_number_token2] = ACTIONS(729), + [aux_sym_val_number_token3] = ACTIONS(731), + [aux_sym_val_number_token4] = ACTIONS(731), + [aux_sym_val_number_token5] = ACTIONS(731), + [anon_sym_inf] = ACTIONS(729), + [anon_sym_DASHinf] = ACTIONS(731), + [anon_sym_NaN] = ACTIONS(729), + [anon_sym_0b] = ACTIONS(729), + [anon_sym_0o] = ACTIONS(729), + [anon_sym_0x] = ACTIONS(729), + [sym_val_date] = ACTIONS(731), + [anon_sym_DQUOTE] = ACTIONS(731), + [sym__str_single_quotes] = ACTIONS(731), + [sym__str_back_ticks] = ACTIONS(731), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(731), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(731), + [anon_sym_POUND] = ACTIONS(145), + }, + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(1763), + [anon_sym_alias] = ACTIONS(1763), + [anon_sym_let] = ACTIONS(1763), + [anon_sym_let_DASHenv] = ACTIONS(1763), + [anon_sym_mut] = ACTIONS(1763), + [anon_sym_const] = ACTIONS(1763), + [anon_sym_SEMI] = ACTIONS(1763), + [sym_cmd_identifier] = ACTIONS(1763), + [anon_sym_LF] = ACTIONS(2118), + [anon_sym_def] = ACTIONS(1763), + [anon_sym_def_DASHenv] = ACTIONS(1763), + [anon_sym_export_DASHenv] = ACTIONS(1763), + [anon_sym_extern] = ACTIONS(1763), + [anon_sym_module] = ACTIONS(1763), + [anon_sym_use] = ACTIONS(1763), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1763), + [anon_sym_error] = ACTIONS(1763), + [anon_sym_DASH] = ACTIONS(1763), + [anon_sym_break] = ACTIONS(1763), + [anon_sym_continue] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1763), + [anon_sym_loop] = ACTIONS(1763), + [anon_sym_while] = ACTIONS(1763), + [anon_sym_do] = ACTIONS(1763), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_match] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1763), + [anon_sym_return] = ACTIONS(1763), + [anon_sym_source] = ACTIONS(1763), + [anon_sym_source_DASHenv] = ACTIONS(1763), + [anon_sym_register] = ACTIONS(1763), + [anon_sym_hide] = ACTIONS(1763), + [anon_sym_hide_DASHenv] = ACTIONS(1763), + [anon_sym_overlay] = ACTIONS(1763), + [anon_sym_where] = ACTIONS(1763), + [anon_sym_not] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [sym_val_nothing] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [aux_sym_val_number_token1] = ACTIONS(1763), + [aux_sym_val_number_token2] = ACTIONS(1763), + [aux_sym_val_number_token3] = ACTIONS(1763), + [aux_sym_val_number_token4] = ACTIONS(1763), + [aux_sym_val_number_token5] = ACTIONS(1763), + [anon_sym_inf] = ACTIONS(1763), + [anon_sym_DASHinf] = ACTIONS(1763), + [anon_sym_NaN] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1763), + [anon_sym_0o] = ACTIONS(1763), + [anon_sym_0x] = ACTIONS(1763), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(3), + }, + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(2120), + [anon_sym_alias] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_let_DASHenv] = ACTIONS(2120), + [anon_sym_mut] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2120), + [sym_cmd_identifier] = ACTIONS(2120), + [anon_sym_LF] = ACTIONS(2122), + [anon_sym_def] = ACTIONS(2120), + [anon_sym_def_DASHenv] = ACTIONS(2120), + [anon_sym_export_DASHenv] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_module] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_LBRACK] = ACTIONS(2120), + [anon_sym_LPAREN] = ACTIONS(2120), + [anon_sym_DOLLAR] = ACTIONS(2120), + [anon_sym_error] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_do] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_LBRACE] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_source] = ACTIONS(2120), + [anon_sym_source_DASHenv] = ACTIONS(2120), + [anon_sym_register] = ACTIONS(2120), + [anon_sym_hide] = ACTIONS(2120), + [anon_sym_hide_DASHenv] = ACTIONS(2120), + [anon_sym_overlay] = ACTIONS(2120), + [anon_sym_where] = ACTIONS(2120), + [anon_sym_not] = ACTIONS(2120), + [anon_sym_DOT_DOT_LT] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2120), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), + [sym_val_nothing] = ACTIONS(2120), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [aux_sym_val_number_token1] = ACTIONS(2120), + [aux_sym_val_number_token2] = ACTIONS(2120), + [aux_sym_val_number_token3] = ACTIONS(2120), + [aux_sym_val_number_token4] = ACTIONS(2120), + [aux_sym_val_number_token5] = ACTIONS(2120), + [anon_sym_inf] = ACTIONS(2120), + [anon_sym_DASHinf] = ACTIONS(2120), + [anon_sym_NaN] = ACTIONS(2120), + [anon_sym_0b] = ACTIONS(2120), + [anon_sym_0o] = ACTIONS(2120), + [anon_sym_0x] = ACTIONS(2120), + [sym_val_date] = ACTIONS(2120), + [anon_sym_DQUOTE] = ACTIONS(2120), + [sym__str_single_quotes] = ACTIONS(2120), + [sym__str_back_ticks] = ACTIONS(2120), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2120), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2120), + [anon_sym_CARET] = ACTIONS(2120), + [anon_sym_POUND] = ACTIONS(3), + }, + [715] = { + [sym_comment] = STATE(715), + [anon_sym_export] = ACTIONS(2124), + [anon_sym_alias] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_let_DASHenv] = ACTIONS(2124), + [anon_sym_mut] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2124), + [sym_cmd_identifier] = ACTIONS(2124), + [anon_sym_LF] = ACTIONS(2126), + [anon_sym_def] = ACTIONS(2124), + [anon_sym_def_DASHenv] = ACTIONS(2124), + [anon_sym_export_DASHenv] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_module] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_LBRACK] = ACTIONS(2124), + [anon_sym_LPAREN] = ACTIONS(2124), + [anon_sym_DOLLAR] = ACTIONS(2124), + [anon_sym_error] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_do] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_LBRACE] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_source] = ACTIONS(2124), + [anon_sym_source_DASHenv] = ACTIONS(2124), + [anon_sym_register] = ACTIONS(2124), + [anon_sym_hide] = ACTIONS(2124), + [anon_sym_hide_DASHenv] = ACTIONS(2124), + [anon_sym_overlay] = ACTIONS(2124), + [anon_sym_where] = ACTIONS(2124), + [anon_sym_not] = ACTIONS(2124), + [anon_sym_DOT_DOT_LT] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2124), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2124), + [sym_val_nothing] = ACTIONS(2124), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [aux_sym_val_number_token1] = ACTIONS(2124), + [aux_sym_val_number_token2] = ACTIONS(2124), + [aux_sym_val_number_token3] = ACTIONS(2124), + [aux_sym_val_number_token4] = ACTIONS(2124), + [aux_sym_val_number_token5] = ACTIONS(2124), + [anon_sym_inf] = ACTIONS(2124), + [anon_sym_DASHinf] = ACTIONS(2124), + [anon_sym_NaN] = ACTIONS(2124), + [anon_sym_0b] = ACTIONS(2124), + [anon_sym_0o] = ACTIONS(2124), + [anon_sym_0x] = ACTIONS(2124), + [sym_val_date] = ACTIONS(2124), + [anon_sym_DQUOTE] = ACTIONS(2124), + [sym__str_single_quotes] = ACTIONS(2124), + [sym__str_back_ticks] = ACTIONS(2124), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2124), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2124), + [anon_sym_CARET] = ACTIONS(2124), + [anon_sym_POUND] = ACTIONS(3), + }, + [716] = { + [sym_cell_path] = STATE(793), + [sym_path] = STATE(710), + [sym_comment] = STATE(716), + [anon_sym_SEMI] = ACTIONS(746), + [sym_cmd_identifier] = ACTIONS(744), + [anon_sym_LBRACK] = ACTIONS(746), + [anon_sym_COMMA] = ACTIONS(746), + [anon_sym_RBRACK] = ACTIONS(746), + [anon_sym_LPAREN] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_DASH] = ACTIONS(744), + [anon_sym_in] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_STAR_STAR] = ACTIONS(746), + [anon_sym_PLUS_PLUS] = ACTIONS(746), + [anon_sym_SLASH] = ACTIONS(744), + [anon_sym_mod] = ACTIONS(744), + [anon_sym_SLASH_SLASH] = ACTIONS(746), + [anon_sym_PLUS] = ACTIONS(744), + [anon_sym_bit_DASHshl] = ACTIONS(744), + [anon_sym_bit_DASHshr] = ACTIONS(744), + [anon_sym_EQ_EQ] = ACTIONS(746), + [anon_sym_BANG_EQ] = ACTIONS(746), + [anon_sym_LT2] = ACTIONS(744), + [anon_sym_LT_EQ] = ACTIONS(746), + [anon_sym_GT_EQ] = ACTIONS(746), + [anon_sym_not_DASHin] = ACTIONS(744), + [anon_sym_starts_DASHwith] = ACTIONS(744), + [anon_sym_ends_DASHwith] = ACTIONS(744), + [anon_sym_EQ_TILDE] = ACTIONS(746), + [anon_sym_BANG_TILDE] = ACTIONS(746), + [anon_sym_bit_DASHand] = ACTIONS(744), + [anon_sym_bit_DASHxor] = ACTIONS(744), + [anon_sym_bit_DASHor] = ACTIONS(744), + [anon_sym_and] = ACTIONS(744), + [anon_sym_xor] = ACTIONS(744), + [anon_sym_or] = ACTIONS(744), + [anon_sym_not] = ACTIONS(744), + [anon_sym_DOT_DOT_LT] = ACTIONS(746), + [anon_sym_DOT_DOT] = ACTIONS(744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(746), + [sym_val_nothing] = ACTIONS(744), + [anon_sym_true] = ACTIONS(744), + [anon_sym_false] = ACTIONS(744), + [aux_sym_val_number_token1] = ACTIONS(744), + [aux_sym_val_number_token2] = ACTIONS(744), + [aux_sym_val_number_token3] = ACTIONS(746), + [aux_sym_val_number_token4] = ACTIONS(746), + [aux_sym_val_number_token5] = ACTIONS(746), + [anon_sym_inf] = ACTIONS(744), + [anon_sym_DASHinf] = ACTIONS(746), + [anon_sym_NaN] = ACTIONS(744), + [anon_sym_0b] = ACTIONS(744), + [anon_sym_0o] = ACTIONS(744), + [anon_sym_0x] = ACTIONS(744), + [sym_val_date] = ACTIONS(746), + [anon_sym_DQUOTE] = ACTIONS(746), + [sym__str_single_quotes] = ACTIONS(746), + [sym__str_back_ticks] = ACTIONS(746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(746), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(746), + [anon_sym_POUND] = ACTIONS(145), + }, + [717] = { + [sym_comment] = STATE(717), + [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_def_DASHenv] = 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(2128), + [anon_sym_DOLLAR] = ACTIONS(2128), + [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_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_not] = ACTIONS(2128), + [anon_sym_DOT_DOT_LT] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2128), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2128), + [sym_val_nothing] = ACTIONS(2128), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2128), + [anon_sym_DASHinf] = ACTIONS(2128), + [anon_sym_NaN] = 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(3), + }, + [718] = { + [sym_path] = STATE(758), + [sym_comment] = STATE(718), + [aux_sym_cell_path_repeat1] = STATE(712), + [anon_sym_SEMI] = ACTIONS(742), + [sym_cmd_identifier] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(742), + [anon_sym_COMMA] = ACTIONS(742), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(740), + [anon_sym_GT] = ACTIONS(740), + [anon_sym_DASH] = ACTIONS(740), + [anon_sym_in] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(742), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(740), + [anon_sym_STAR_STAR] = ACTIONS(742), + [anon_sym_PLUS_PLUS] = ACTIONS(742), + [anon_sym_SLASH] = ACTIONS(740), + [anon_sym_mod] = ACTIONS(740), + [anon_sym_SLASH_SLASH] = ACTIONS(742), + [anon_sym_PLUS] = ACTIONS(740), + [anon_sym_bit_DASHshl] = ACTIONS(740), + [anon_sym_bit_DASHshr] = ACTIONS(740), + [anon_sym_EQ_EQ] = ACTIONS(742), + [anon_sym_BANG_EQ] = ACTIONS(742), + [anon_sym_LT2] = ACTIONS(740), + [anon_sym_LT_EQ] = ACTIONS(742), + [anon_sym_GT_EQ] = ACTIONS(742), + [anon_sym_not_DASHin] = ACTIONS(740), + [anon_sym_starts_DASHwith] = ACTIONS(740), + [anon_sym_ends_DASHwith] = ACTIONS(740), + [anon_sym_EQ_TILDE] = ACTIONS(742), + [anon_sym_BANG_TILDE] = ACTIONS(742), + [anon_sym_bit_DASHand] = ACTIONS(740), + [anon_sym_bit_DASHxor] = ACTIONS(740), + [anon_sym_bit_DASHor] = ACTIONS(740), + [anon_sym_and] = ACTIONS(740), + [anon_sym_xor] = ACTIONS(740), + [anon_sym_or] = ACTIONS(740), + [anon_sym_not] = ACTIONS(740), + [anon_sym_DOT_DOT_LT] = ACTIONS(742), + [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT_EQ] = ACTIONS(742), + [sym_val_nothing] = ACTIONS(740), + [anon_sym_true] = ACTIONS(740), + [anon_sym_false] = ACTIONS(740), + [aux_sym_val_number_token1] = ACTIONS(740), + [aux_sym_val_number_token2] = ACTIONS(740), + [aux_sym_val_number_token3] = ACTIONS(742), + [aux_sym_val_number_token4] = ACTIONS(742), + [aux_sym_val_number_token5] = ACTIONS(742), + [anon_sym_inf] = ACTIONS(740), + [anon_sym_DASHinf] = ACTIONS(742), + [anon_sym_NaN] = ACTIONS(740), + [anon_sym_0b] = ACTIONS(740), + [anon_sym_0o] = ACTIONS(740), + [anon_sym_0x] = ACTIONS(740), + [sym_val_date] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(742), + [sym__str_single_quotes] = ACTIONS(742), + [sym__str_back_ticks] = ACTIONS(742), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(742), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(742), + [anon_sym_POUND] = ACTIONS(145), + }, + [719] = { + [sym_comment] = STATE(719), + [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_def_DASHenv] = 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(2132), + [anon_sym_DOLLAR] = ACTIONS(2132), + [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_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_not] = ACTIONS(2132), + [anon_sym_DOT_DOT_LT] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2132), + [sym_val_nothing] = ACTIONS(2132), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2132), + [anon_sym_DASHinf] = ACTIONS(2132), + [anon_sym_NaN] = 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(3), + }, + [720] = { + [sym_comment] = STATE(720), + [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_def_DASHenv] = 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(2136), + [anon_sym_DOLLAR] = ACTIONS(2136), + [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_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_not] = ACTIONS(2136), + [anon_sym_DOT_DOT_LT] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2136), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2136), + [sym_val_nothing] = ACTIONS(2136), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2136), + [anon_sym_DASHinf] = ACTIONS(2136), + [anon_sym_NaN] = 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(3), + }, + [721] = { + [sym_comment] = STATE(721), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [anon_sym_SEMI] = ACTIONS(2047), + [sym_cmd_identifier] = ACTIONS(2047), + [anon_sym_LF] = ACTIONS(2140), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_def_DASHenv] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_where] = ACTIONS(2047), + [anon_sym_not] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [sym_val_nothing] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [aux_sym_val_number_token1] = ACTIONS(2047), + [aux_sym_val_number_token2] = ACTIONS(2047), + [aux_sym_val_number_token3] = ACTIONS(2047), + [aux_sym_val_number_token4] = ACTIONS(2047), + [aux_sym_val_number_token5] = ACTIONS(2047), + [anon_sym_inf] = ACTIONS(2047), + [anon_sym_DASHinf] = ACTIONS(2047), + [anon_sym_NaN] = ACTIONS(2047), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2047), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2047), + [anon_sym_CARET] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + }, + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(1981), + [anon_sym_alias] = ACTIONS(1981), + [anon_sym_let] = ACTIONS(1981), + [anon_sym_let_DASHenv] = ACTIONS(1981), + [anon_sym_mut] = ACTIONS(1981), + [anon_sym_const] = ACTIONS(1981), + [anon_sym_SEMI] = ACTIONS(1981), + [sym_cmd_identifier] = ACTIONS(1981), + [anon_sym_LF] = ACTIONS(2142), + [anon_sym_def] = ACTIONS(1981), + [anon_sym_def_DASHenv] = ACTIONS(1981), + [anon_sym_export_DASHenv] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_module] = ACTIONS(1981), + [anon_sym_use] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(1981), + [anon_sym_error] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_loop] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_match] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1981), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_source] = ACTIONS(1981), + [anon_sym_source_DASHenv] = ACTIONS(1981), + [anon_sym_register] = ACTIONS(1981), + [anon_sym_hide] = ACTIONS(1981), + [anon_sym_hide_DASHenv] = ACTIONS(1981), + [anon_sym_overlay] = ACTIONS(1981), + [anon_sym_where] = ACTIONS(1981), + [anon_sym_not] = ACTIONS(1981), + [anon_sym_DOT_DOT_LT] = ACTIONS(1981), + [anon_sym_DOT_DOT] = ACTIONS(1981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1981), + [sym_val_nothing] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym_val_number_token1] = ACTIONS(1981), + [aux_sym_val_number_token2] = ACTIONS(1981), + [aux_sym_val_number_token3] = ACTIONS(1981), + [aux_sym_val_number_token4] = ACTIONS(1981), + [aux_sym_val_number_token5] = ACTIONS(1981), + [anon_sym_inf] = ACTIONS(1981), + [anon_sym_DASHinf] = ACTIONS(1981), + [anon_sym_NaN] = ACTIONS(1981), + [anon_sym_0b] = ACTIONS(1981), + [anon_sym_0o] = ACTIONS(1981), + [anon_sym_0x] = ACTIONS(1981), + [sym_val_date] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(1981), + [sym__str_single_quotes] = ACTIONS(1981), + [sym__str_back_ticks] = ACTIONS(1981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(3), + }, + [723] = { + [sym_comment] = STATE(723), + [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_def_DASHenv] = 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(2144), + [anon_sym_DOLLAR] = ACTIONS(2144), + [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_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_not] = ACTIONS(2144), + [anon_sym_DOT_DOT_LT] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2144), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), + [sym_val_nothing] = ACTIONS(2144), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2144), + [anon_sym_DASHinf] = ACTIONS(2144), + [anon_sym_NaN] = 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(3), + }, + [724] = { + [sym_comment] = STATE(724), + [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_def_DASHenv] = 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(2148), + [anon_sym_DOLLAR] = ACTIONS(2148), + [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_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_not] = ACTIONS(2148), + [anon_sym_DOT_DOT_LT] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2148), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2148), + [sym_val_nothing] = ACTIONS(2148), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2148), + [anon_sym_DASHinf] = ACTIONS(2148), + [anon_sym_NaN] = 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(3), + }, + [725] = { + [sym_comment] = STATE(725), [anon_sym_export] = ACTIONS(2152), [anon_sym_alias] = ACTIONS(2152), [anon_sym_let] = ACTIONS(2152), @@ -102825,8 +102768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), }, - [728] = { - [sym_comment] = STATE(728), + [726] = { + [sym_comment] = STATE(726), [anon_sym_export] = ACTIONS(2156), [anon_sym_alias] = ACTIONS(2156), [anon_sym_let] = ACTIONS(2156), @@ -102892,8 +102835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2156), [anon_sym_POUND] = ACTIONS(3), }, - [729] = { - [sym_comment] = STATE(729), + [727] = { + [sym_comment] = STATE(727), [anon_sym_export] = ACTIONS(2160), [anon_sym_alias] = ACTIONS(2160), [anon_sym_let] = ACTIONS(2160), @@ -102959,8 +102902,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2160), [anon_sym_POUND] = ACTIONS(3), }, - [730] = { - [sym_comment] = STATE(730), + [728] = { + [sym_comment] = STATE(728), [anon_sym_export] = ACTIONS(2164), [anon_sym_alias] = ACTIONS(2164), [anon_sym_let] = ACTIONS(2164), @@ -103026,118 +102969,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(2164), [anon_sym_POUND] = ACTIONS(3), }, + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2168), + [anon_sym_alias] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_let_DASHenv] = ACTIONS(2168), + [anon_sym_mut] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2168), + [sym_cmd_identifier] = ACTIONS(2168), + [anon_sym_LF] = ACTIONS(2170), + [anon_sym_def] = ACTIONS(2168), + [anon_sym_def_DASHenv] = ACTIONS(2168), + [anon_sym_export_DASHenv] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym_module] = ACTIONS(2168), + [anon_sym_use] = ACTIONS(2168), + [anon_sym_LBRACK] = ACTIONS(2168), + [anon_sym_LPAREN] = ACTIONS(2168), + [anon_sym_DOLLAR] = ACTIONS(2168), + [anon_sym_error] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_loop] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_do] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_match] = ACTIONS(2168), + [anon_sym_LBRACE] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_source] = ACTIONS(2168), + [anon_sym_source_DASHenv] = ACTIONS(2168), + [anon_sym_register] = ACTIONS(2168), + [anon_sym_hide] = ACTIONS(2168), + [anon_sym_hide_DASHenv] = ACTIONS(2168), + [anon_sym_overlay] = ACTIONS(2168), + [anon_sym_where] = ACTIONS(2168), + [anon_sym_not] = ACTIONS(2168), + [anon_sym_DOT_DOT_LT] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2168), + [sym_val_nothing] = ACTIONS(2168), + [anon_sym_true] = ACTIONS(2168), + [anon_sym_false] = ACTIONS(2168), + [aux_sym_val_number_token1] = ACTIONS(2168), + [aux_sym_val_number_token2] = ACTIONS(2168), + [aux_sym_val_number_token3] = ACTIONS(2168), + [aux_sym_val_number_token4] = ACTIONS(2168), + [aux_sym_val_number_token5] = ACTIONS(2168), + [anon_sym_inf] = ACTIONS(2168), + [anon_sym_DASHinf] = ACTIONS(2168), + [anon_sym_NaN] = ACTIONS(2168), + [anon_sym_0b] = ACTIONS(2168), + [anon_sym_0o] = ACTIONS(2168), + [anon_sym_0x] = ACTIONS(2168), + [sym_val_date] = ACTIONS(2168), + [anon_sym_DQUOTE] = ACTIONS(2168), + [sym__str_single_quotes] = ACTIONS(2168), + [sym__str_back_ticks] = ACTIONS(2168), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2168), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2168), + [anon_sym_CARET] = ACTIONS(2168), + [anon_sym_POUND] = ACTIONS(3), + }, + [730] = { + [sym_comment] = STATE(730), + [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_def_DASHenv] = 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(2172), + [anon_sym_DOLLAR] = ACTIONS(2172), + [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_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_not] = ACTIONS(2172), + [anon_sym_DOT_DOT_LT] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2172), + [sym_val_nothing] = ACTIONS(2172), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = 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), + [anon_sym_inf] = ACTIONS(2172), + [anon_sym_DASHinf] = ACTIONS(2172), + [anon_sym_NaN] = 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(3), + }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 32, - ACTIONS(3), 1, + [0] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1313), 1, - anon_sym_DOLLAR, - ACTIONS(1339), 1, - sym_short_flag, - ACTIONS(1341), 1, - aux_sym_unquoted_token1, - ACTIONS(2168), 1, + ACTIONS(2176), 1, + anon_sym_QMARK2, + STATE(731), 1, + sym_comment, + ACTIONS(771), 27, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2170), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_DASH_DASH, - ACTIONS(2174), 1, anon_sym_LBRACE, - ACTIONS(2176), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2180), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2182), 1, anon_sym_DOLLAR_DQUOTE, - STATE(87), 1, - sym_val_number, - STATE(731), 1, - sym_comment, - STATE(1359), 1, - sym__var, - STATE(1414), 1, - sym_long_flag, - STATE(1423), 1, - sym__inter_double_quotes, - STATE(1426), 1, - sym__inter_single_quotes, - STATE(1427), 1, - sym_unquoted, - STATE(1428), 1, - sym__str_double_quotes, - STATE(1431), 1, - sym__flag, - STATE(1433), 1, - sym_redirection, - STATE(1438), 1, - sym_expr_parenthesized, - STATE(1485), 1, - sym__cmd_arg, - ACTIONS(1321), 2, + ACTIONS(769), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(1323), 2, anon_sym_true, anon_sym_false, - ACTIONS(2178), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1435), 2, - sym_val_range, - sym__value, - ACTIONS(1319), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1327), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1325), 8, aux_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_inf, - anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(1337), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - STATE(1430), 11, - 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, - [129] = 7, - ACTIONS(143), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [75] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, STATE(732), 1, sym_comment, - STATE(747), 1, - aux_sym_cell_path_repeat1, - STATE(765), 1, + STATE(748), 1, sym_path, - ACTIONS(732), 16, + STATE(896), 1, + sym_cell_path, + ACTIONS(744), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103154,7 +103204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(734), 43, + ACTIONS(746), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103198,18 +103248,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [208] = 7, - ACTIONS(143), 1, + [154] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2105), 1, anon_sym_DOT, - STATE(703), 1, + STATE(710), 1, sym_path, STATE(733), 1, sym_comment, - STATE(861), 1, + STATE(834), 1, sym_cell_path, - ACTIONS(718), 26, + ACTIONS(723), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -103236,7 +103286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(716), 33, + ACTIONS(721), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -103270,90 +103320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [287] = 7, - ACTIONS(143), 1, + [233] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(703), 1, - sym_path, STATE(734), 1, sym_comment, - STATE(921), 1, - sym_cell_path, - ACTIONS(742), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(740), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [366] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2184), 1, - anon_sym_DOT, - STATE(735), 1, - sym_comment, - STATE(738), 1, + STATE(748), 1, sym_path, - STATE(907), 1, + STATE(904), 1, sym_cell_path, - ACTIONS(706), 16, + ACTIONS(707), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103370,7 +103348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(708), 43, + ACTIONS(709), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103414,18 +103392,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [445] = 7, - ACTIONS(143), 1, + [312] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(736), 1, + STATE(735), 1, sym_comment, - STATE(738), 1, + STATE(748), 1, sym_path, - STATE(912), 1, + STATE(914), 1, sym_cell_path, - ACTIONS(712), 16, + ACTIONS(736), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103442,7 +103420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(714), 43, + ACTIONS(738), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103486,18 +103464,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [524] = 7, - ACTIONS(143), 1, + [391] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2105), 1, anon_sym_DOT, - STATE(703), 1, + STATE(710), 1, sym_path, - STATE(737), 1, + STATE(736), 1, sym_comment, - STATE(759), 1, + STATE(832), 1, sym_cell_path, - ACTIONS(708), 26, + ACTIONS(715), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -103524,7 +103502,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(706), 33, + ACTIONS(713), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -103558,18 +103536,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [603] = 7, - ACTIONS(143), 1, + [470] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(737), 1, + sym_comment, + ACTIONS(2180), 17, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(2182), 45, + 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_def_DASHenv, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [543] = 6, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(2184), 1, anon_sym_DOT, - STATE(732), 1, - aux_sym_cell_path_repeat1, - STATE(738), 1, - sym_comment, - STATE(765), 1, + STATE(783), 1, sym_path, - ACTIONS(728), 16, + STATE(738), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103586,7 +103632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(730), 43, + ACTIONS(731), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103630,25 +103676,95 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [682] = 9, - ACTIONS(143), 1, + [620] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, - anon_sym_DOT, - STATE(738), 1, - sym_path, + ACTIONS(2176), 1, + anon_sym_QMARK2, STATE(739), 1, sym_comment, - STATE(926), 1, + ACTIONS(771), 27, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(769), 34, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [695] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2178), 1, + anon_sym_DOT, + STATE(740), 1, + sym_comment, + STATE(748), 1, + sym_path, + STATE(939), 1, sym_cell_path, - ACTIONS(740), 6, + ACTIONS(725), 6, anon_sym_GT, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(2189), 10, + ACTIONS(2190), 10, anon_sym_DOLLAR, anon_sym_DASH, anon_sym__, @@ -103659,7 +103775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(742), 21, + ACTIONS(727), 21, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -103681,7 +103797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2186), 22, + ACTIONS(2187), 22, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103704,85 +103820,90 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [765] = 5, - ACTIONS(143), 1, + [778] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_QMARK2, - STATE(740), 1, + ACTIONS(2178), 1, + anon_sym_DOT, + STATE(741), 1, sym_comment, - ACTIONS(750), 27, - anon_sym_SEMI, + STATE(748), 1, + sym_path, + STATE(925), 1, + sym_cell_path, + ACTIONS(713), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(715), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, 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_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(748), 34, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [840] = 5, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [857] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2192), 1, - anon_sym_QMARK2, - STATE(741), 1, + ACTIONS(2105), 1, + anon_sym_DOT, + STATE(710), 1, + sym_path, + STATE(742), 1, sym_comment, - ACTIONS(750), 27, - anon_sym_SEMI, + STATE(757), 1, + sym_cell_path, + ACTIONS(709), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -103809,13 +103930,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(748), 34, + ACTIONS(707), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -103844,18 +103964,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [915] = 7, - ACTIONS(143), 1, + [936] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(738), 1, - sym_path, - STATE(742), 1, + STATE(743), 1, sym_comment, - STATE(835), 1, + STATE(748), 1, + sym_path, + STATE(924), 1, sym_cell_path, - ACTIONS(724), 16, + ACTIONS(721), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103872,7 +103992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(726), 43, + ACTIONS(723), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103916,18 +104036,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [994] = 7, - ACTIONS(143), 1, + [1015] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(738), 1, - sym_path, - STATE(743), 1, + STATE(744), 1, sym_comment, - STATE(872), 1, + STATE(748), 1, + sym_path, + STATE(939), 1, sym_cell_path, - ACTIONS(720), 16, + ACTIONS(725), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -103944,7 +104064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(722), 43, + ACTIONS(727), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -103988,16 +104108,32 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1073] = 4, - ACTIONS(143), 1, + [1094] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(744), 1, + ACTIONS(2105), 1, + anon_sym_DOT, + STATE(710), 1, + sym_path, + STATE(745), 1, sym_comment, - ACTIONS(2194), 17, - ts_builtin_sym_end, + STATE(905), 1, + sym_cell_path, + ACTIONS(727), 26, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -104010,41 +104146,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - ACTIONS(2196), 45, - anon_sym_export, - anon_sym_alias, - anon_sym_let, - anon_sym_let_DASHenv, - anon_sym_mut, - anon_sym_const, + ACTIONS(725), 33, sym_cmd_identifier, - anon_sym_def, - anon_sym_def_DASHenv, - anon_sym_export_DASHenv, - anon_sym_extern, - anon_sym_module, - anon_sym_use, anon_sym_DOLLAR, - anon_sym_error, + anon_sym_GT, 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_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -104057,18 +104180,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [1146] = 7, - ACTIONS(143), 1, + [1173] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(1321), 1, + anon_sym_DOLLAR, + ACTIONS(1347), 1, + sym_short_flag, + ACTIONS(1349), 1, + aux_sym_unquoted_token1, + ACTIONS(2193), 1, + anon_sym_LBRACK, + ACTIONS(2195), 1, + anon_sym_LPAREN, + ACTIONS(2197), 1, + anon_sym_DASH_DASH, + ACTIONS(2199), 1, + anon_sym_LBRACE, + ACTIONS(2201), 1, + anon_sym_DQUOTE, + ACTIONS(2205), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2207), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(86), 1, + sym_val_number, + STATE(746), 1, + sym_comment, + STATE(1361), 1, + sym__var, + STATE(1403), 1, + sym__inter_double_quotes, + STATE(1404), 1, + sym__inter_single_quotes, + STATE(1408), 1, + sym__str_double_quotes, + STATE(1425), 1, + sym_long_flag, + STATE(1430), 1, + sym_unquoted, + STATE(1434), 1, + sym__flag, + STATE(1436), 1, + sym_redirection, + STATE(1440), 1, + sym_expr_parenthesized, + STATE(1458), 1, + sym__cmd_arg, + ACTIONS(1329), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1331), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2203), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1438), 2, + sym_val_range, + sym__value, + ACTIONS(1327), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1335), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1333), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(1345), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + STATE(1411), 11, + 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, + [1302] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(738), 1, - sym_path, - STATE(745), 1, + STATE(747), 1, sym_comment, - STATE(862), 1, + STATE(748), 1, + sym_path, + STATE(942), 1, sym_cell_path, - ACTIONS(736), 16, + ACTIONS(717), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -104085,7 +104305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(738), 43, + ACTIONS(719), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -104129,89 +104349,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1225] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DOT, - STATE(703), 1, - sym_path, - STATE(746), 1, - sym_comment, - STATE(847), 1, - sym_cell_path, - ACTIONS(746), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(744), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [1304] = 6, - ACTIONS(143), 1, + [1381] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2198), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(765), 1, - sym_path, - STATE(747), 2, + STATE(748), 1, sym_comment, + STATE(750), 1, aux_sym_cell_path_repeat1, - ACTIONS(699), 16, + STATE(783), 1, + sym_path, + ACTIONS(752), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -104228,7 +104377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(701), 43, + ACTIONS(754), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -104272,18 +104421,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1381] = 7, - ACTIONS(143), 1, + [1460] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2087), 1, + ACTIONS(2105), 1, anon_sym_DOT, - STATE(703), 1, + STATE(710), 1, sym_path, - STATE(748), 1, + STATE(749), 1, sym_comment, - STATE(828), 1, + STATE(859), 1, sym_cell_path, - ACTIONS(714), 26, + ACTIONS(719), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -104310,7 +104459,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(712), 33, + ACTIONS(717), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -104344,17 +104493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [1460] = 7, - ACTIONS(143), 1, + [1539] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, STATE(738), 1, - sym_path, - STATE(749), 1, + aux_sym_cell_path_repeat1, + STATE(750), 1, sym_comment, - STATE(926), 1, - sym_cell_path, + STATE(783), 1, + sym_path, ACTIONS(740), 16, anon_sym_DOLLAR, anon_sym_GT, @@ -104416,90 +104565,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1539] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2087), 1, - anon_sym_DOT, - STATE(703), 1, - sym_path, - STATE(750), 1, - sym_comment, - STATE(830), 1, - sym_cell_path, - ACTIONS(722), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(720), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, [1618] = 7, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2178), 1, anon_sym_DOT, - STATE(738), 1, + STATE(748), 1, sym_path, STATE(751), 1, sym_comment, - STATE(936), 1, + STATE(922), 1, sym_cell_path, - ACTIONS(744), 16, + ACTIONS(748), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -104516,7 +104593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(746), 43, + ACTIONS(750), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -104561,83 +104638,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, [1697] = 7, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2184), 1, + ACTIONS(2105), 1, anon_sym_DOT, - STATE(738), 1, + STATE(710), 1, sym_path, STATE(752), 1, sym_comment, - STATE(864), 1, + STATE(872), 1, sym_cell_path, - ACTIONS(716), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(718), 43, + ACTIONS(750), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(748), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + 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_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, [1776] = 4, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, STATE(753), 1, sym_comment, - ACTIONS(2203), 16, + ACTIONS(2211), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -104654,7 +104731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(2201), 45, + ACTIONS(2209), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -104701,13 +104778,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, [1848] = 5, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2205), 1, + ACTIONS(2213), 1, anon_sym_QMARK2, STATE(754), 1, sym_comment, - ACTIONS(748), 17, + ACTIONS(769), 17, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -104725,7 +104802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(750), 43, + ACTIONS(771), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -104769,36 +104846,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1922] = 4, - ACTIONS(143), 1, + [1922] = 8, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(2215), 1, + anon_sym_LPAREN, STATE(755), 1, sym_comment, - ACTIONS(768), 17, + ACTIONS(2217), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(910), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2219), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(758), 14, anon_sym_DOLLAR, 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, anon_sym_not, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(770), 44, + ACTIONS(760), 36, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -104825,96 +104912,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [1994] = 8, - ACTIONS(143), 1, + [2002] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, + ACTIONS(2213), 1, + anon_sym_QMARK2, STATE(756), 1, sym_comment, - STATE(871), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2209), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2211), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - ACTIONS(758), 21, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(756), 29, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [2074] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(757), 1, - sym_comment, - ACTIONS(764), 17, + ACTIONS(769), 17, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -104932,13 +104943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(766), 44, + ACTIONS(771), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -104977,12 +104987,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2146] = 4, - ACTIONS(143), 1, + [2076] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(758), 1, + STATE(757), 1, sym_comment, - ACTIONS(889), 27, + ACTIONS(867), 27, anon_sym_COLON, anon_sym_LBRACK, anon_sym_COMMA, @@ -105010,7 +105020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(887), 34, + ACTIONS(865), 34, anon_sym_EQ, sym_cmd_identifier, anon_sym_DOLLAR, @@ -105045,13 +105055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2218] = 4, - ACTIONS(143), 1, + [2148] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(759), 1, + STATE(758), 1, sym_comment, - ACTIONS(855), 27, - anon_sym_COLON, + ACTIONS(795), 27, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -105078,13 +105088,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(853), 34, - anon_sym_EQ, + ACTIONS(793), 34, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -105113,13 +105123,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2290] = 4, - ACTIONS(143), 1, + [2220] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(760), 1, + STATE(759), 1, sym_comment, - ACTIONS(779), 27, - anon_sym_SEMI, + ACTIONS(915), 27, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -105146,13 +105156,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(777), 34, + ACTIONS(913), 34, + anon_sym_EQ, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -105181,12 +105191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2362] = 4, - ACTIONS(143), 1, + [2292] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(761), 1, + STATE(760), 1, sym_comment, - ACTIONS(783), 27, + ACTIONS(789), 27, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -105214,7 +105224,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(781), 34, + ACTIONS(787), 34, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -105249,12 +105259,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2434] = 4, - ACTIONS(143), 1, + [2364] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2221), 1, + anon_sym_LPAREN, + STATE(761), 1, + sym_comment, + STATE(887), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2223), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2225), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + ACTIONS(760), 21, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(758), 29, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [2444] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(762), 1, sym_comment, - ACTIONS(2215), 16, + ACTIONS(2229), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -105271,7 +105353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(2213), 45, + ACTIONS(2227), 45, anon_sym_export, anon_sym_alias, anon_sym_let, @@ -105317,46 +105399,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2506] = 8, - ACTIONS(143), 1, + [2516] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, STATE(763), 1, sym_comment, - ACTIONS(2219), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(813), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2221), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 14, + ACTIONS(779), 17, anon_sym_DOLLAR, 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, anon_sym_not, anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(758), 36, + ACTIONS(781), 44, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -105383,20 +105455,24 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2586] = 5, - ACTIONS(143), 1, + [2588] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2205), 1, - anon_sym_QMARK2, STATE(764), 1, sym_comment, - ACTIONS(748), 17, + ACTIONS(775), 17, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -105414,12 +105490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(750), 43, + ACTIONS(777), 44, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -105458,12 +105535,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2660] = 4, - ACTIONS(143), 1, + [2660] = 32, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2233), 1, + anon_sym_LF, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2237), 1, + anon_sym_LPAREN, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2259), 1, + anon_sym_DQUOTE, + ACTIONS(2263), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2265), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2267), 1, + sym_short_flag, + STATE(96), 1, + sym_val_number, STATE(765), 1, sym_comment, - ACTIONS(781), 17, + STATE(781), 1, + sym__flag, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1771), 1, + sym__expression, + STATE(1841), 1, + sym_long_flag, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2261), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2231), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(1903), 11, + 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, + [2787] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(766), 1, + sym_comment, + ACTIONS(797), 17, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -105481,7 +105653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(783), 43, + ACTIONS(799), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -105525,12 +105697,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [2731] = 5, - ACTIONS(143), 1, + [2858] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2223), 1, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2237), 1, + anon_sym_LPAREN, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2259), 1, + anon_sym_DQUOTE, + ACTIONS(2263), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2265), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2271), 1, + anon_sym_LF, + STATE(96), 1, + sym_val_number, + STATE(767), 1, + sym_comment, + STATE(812), 1, + sym__flag, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1711), 1, + sym__expression, + STATE(1841), 1, + sym_long_flag, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2261), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2269), 4, anon_sym_SEMI, - STATE(766), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(1903), 11, + 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, + [2985] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2273), 1, + anon_sym_SEMI, + STATE(768), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -105593,13 +105860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2804] = 4, - ACTIONS(143), 1, + [3058] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(767), 1, - sym_comment, - ACTIONS(875), 27, + ACTIONS(2275), 1, anon_sym_SEMI, + STATE(769), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -105626,7 +105894,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(873), 33, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -105660,81 +105928,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [2875] = 32, + [3131] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - anon_sym_LF, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - STATE(94), 1, + ACTIONS(2271), 1, + anon_sym_LF, + STATE(96), 1, sym_val_number, - STATE(768), 1, + STATE(770), 1, sym_comment, - STATE(809), 1, + STATE(808), 1, sym__flag, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1686), 1, + STATE(1711), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2225), 4, + ACTIONS(2269), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -105743,7 +106011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -105755,149 +106023,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3002] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2263), 1, - anon_sym_SEMI, - STATE(769), 1, - sym_comment, - ACTIONS(105), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [3075] = 32, + [3258] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - anon_sym_LF, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - STATE(94), 1, + ACTIONS(2271), 1, + anon_sym_LF, + STATE(96), 1, sym_val_number, - STATE(770), 1, + STATE(771), 1, sym_comment, - STATE(811), 1, + STATE(810), 1, sym__flag, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1686), 1, + STATE(1711), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2225), 4, + ACTIONS(2269), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -105906,7 +106106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -105918,145 +106118,105 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [3202] = 5, - ACTIONS(143), 1, + [3385] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2265), 1, - anon_sym_SEMI, - STATE(771), 1, - sym_comment, - ACTIONS(105), 26, + ACTIONS(2235), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2237), 1, anon_sym_LPAREN, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2245), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2259), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2271), 1, + anon_sym_LF, + STATE(96), 1, + sym_val_number, + STATE(772), 1, + sym_comment, + STATE(811), 1, + sym__flag, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1711), 1, + sym__expression, + STATE(1841), 1, + sym_long_flag, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [3275] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(772), 1, - sym_comment, - ACTIONS(777), 17, - anon_sym_DOLLAR, - 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, - anon_sym_not, + ACTIONS(2261), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(779), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2269), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [3346] = 5, - ACTIONS(143), 1, + STATE(1903), 11, + 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, + [3512] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2267), 1, + ACTIONS(2277), 1, anon_sym_SEMI, STATE(773), 1, sym_comment, @@ -106121,10 +106281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [3419] = 5, - ACTIONS(143), 1, + [3585] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2269), 1, + ACTIONS(2279), 1, anon_sym_SEMI, STATE(774), 1, sym_comment, @@ -106189,10 +106349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [3492] = 5, - ACTIONS(143), 1, + [3658] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2271), 1, + ACTIONS(2281), 1, anon_sym_SEMI, STATE(775), 1, sym_comment, @@ -106257,337 +106417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [3565] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(776), 1, - sym_comment, - ACTIONS(791), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(789), 34, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [3636] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2273), 1, - anon_sym_SEMI, - STATE(777), 1, - sym_comment, - ACTIONS(105), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [3709] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_DQUOTE, - ACTIONS(2257), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2277), 1, - anon_sym_LF, - STATE(94), 1, - sym_val_number, - STATE(778), 1, - sym_comment, - STATE(796), 1, - sym__flag, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, - sym__var, - STATE(1765), 1, - sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2255), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(1859), 11, - 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, - [3836] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_DQUOTE, - ACTIONS(2257), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2277), 1, - anon_sym_LF, - STATE(94), 1, - sym_val_number, - STATE(779), 1, - sym_comment, - STATE(807), 1, - sym__flag, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, - sym__var, - STATE(1765), 1, - sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2255), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(1859), 11, - 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, - [3963] = 5, - ACTIONS(143), 1, + [3731] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2279), 1, + ACTIONS(2283), 1, anon_sym_SEMI, - STATE(780), 1, + STATE(776), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -106650,12 +106485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4036] = 5, - ACTIONS(143), 1, + [3804] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2281), 1, + ACTIONS(2285), 1, anon_sym_SEMI, - STATE(781), 1, + STATE(777), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -106718,12 +106553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4109] = 5, - ACTIONS(143), 1, + [3877] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2283), 1, + ACTIONS(2287), 1, anon_sym_SEMI, - STATE(782), 1, + STATE(778), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -106786,81 +106621,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4182] = 32, + [3950] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2277), 1, + ACTIONS(2291), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(783), 1, + STATE(779), 1, sym_comment, - STATE(812), 1, + STATE(791), 1, sym__flag, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1765), 1, + STATE(1758), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2275), 4, + ACTIONS(2289), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -106869,7 +106704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -106881,81 +106716,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4309] = 32, + [4077] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2277), 1, + ACTIONS(2271), 1, anon_sym_LF, - STATE(94), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + STATE(96), 1, sym_val_number, - STATE(784), 1, + STATE(780), 1, sym_comment, - STATE(787), 1, - sym__flag, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1765), 1, + STATE(1711), 1, sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + STATE(2634), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2275), 4, + ACTIONS(2269), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -106964,7 +106799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -106976,81 +106811,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4436] = 32, + [4204] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2287), 1, - anon_sym_LF, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - STATE(94), 1, + ACTIONS(2299), 1, + anon_sym_LF, + STATE(96), 1, sym_val_number, - STATE(785), 1, + STATE(780), 1, + sym__flag, + STATE(781), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1688), 1, + STATE(1775), 1, sym__expression, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(2656), 1, - sym__flag, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2245), 2, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2285), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -107059,7 +106894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -107071,81 +106906,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4563] = 32, + [4331] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2287), 1, + ACTIONS(2299), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(786), 1, - sym_comment, - STATE(799), 1, + STATE(767), 1, sym__flag, - STATE(1621), 1, + STATE(782), 1, + sym_comment, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1688), 1, + STATE(1775), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2285), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -107154,7 +106989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -107166,81 +107001,148 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4690] = 32, + [4458] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(783), 1, + sym_comment, + ACTIONS(793), 17, + anon_sym_DOLLAR, + 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, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(795), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [4529] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2295), 1, + ACTIONS(2299), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(787), 1, + STATE(770), 1, + sym__flag, + STATE(784), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1697), 1, + STATE(1775), 1, sym__expression, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(2645), 1, - sym__flag, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2245), 2, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2293), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -107249,7 +107151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -107261,12 +107163,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [4817] = 5, - ACTIONS(143), 1, + [4656] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2297), 1, + ACTIONS(2301), 1, anon_sym_SEMI, - STATE(788), 1, + STATE(785), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -107329,12 +107231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4890] = 5, - ACTIONS(143), 1, + [4729] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2299), 1, + ACTIONS(2303), 1, anon_sym_SEMI, - STATE(789), 1, + STATE(786), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -107397,202 +107299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [4963] = 32, - ACTIONS(3), 1, + [4802] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_DQUOTE, - ACTIONS(2257), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2287), 1, - anon_sym_LF, - STATE(94), 1, - sym_val_number, - STATE(790), 1, - sym_comment, - STATE(800), 1, - sym__flag, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, - sym__var, - STATE(1688), 1, - sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2255), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2285), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(1859), 11, - 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, - [5090] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_LBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2239), 1, - anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2253), 1, - anon_sym_DQUOTE, - ACTIONS(2257), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2287), 1, - anon_sym_LF, - STATE(94), 1, - sym_val_number, - STATE(791), 1, - sym_comment, - STATE(801), 1, - sym__flag, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, - sym__var, - STATE(1688), 1, - sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2255), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2285), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(1859), 11, - 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, - [5217] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2301), 1, + ACTIONS(2305), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(787), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -107655,12 +107367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5290] = 5, - ACTIONS(143), 1, + [4875] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2303), 1, + ACTIONS(2307), 1, anon_sym_SEMI, - STATE(793), 1, + STATE(788), 1, sym_comment, ACTIONS(105), 26, anon_sym_LBRACK, @@ -107723,17 +107435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5363] = 6, - ACTIONS(143), 1, + [4948] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_COMMA, - ACTIONS(2307), 1, - anon_sym_DOT, - STATE(794), 1, + STATE(789), 1, sym_comment, - ACTIONS(791), 25, + ACTIONS(799), 26, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -107758,12 +107467,13 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(789), 33, + ACTIONS(797), 34, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -107792,81 +107502,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5438] = 32, + [5019] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2295), 1, + ACTIONS(2299), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(791), 1, + STATE(771), 1, sym__flag, - STATE(795), 1, + STATE(790), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1697), 1, + STATE(1775), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2293), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -107875,7 +107585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -107887,81 +107597,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5565] = 32, + [5146] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2295), 1, + ACTIONS(2311), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(790), 1, + STATE(765), 1, sym__flag, - STATE(796), 1, + STATE(791), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1697), 1, + STATE(1759), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2293), 4, + ACTIONS(2309), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -107970,7 +107680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -107982,81 +107692,108 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5692] = 4, - ACTIONS(143), 1, + [5273] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(797), 1, - sym_comment, - ACTIONS(789), 17, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2237), 1, + anon_sym_LPAREN, + ACTIONS(2239), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, anon_sym_not, + ACTIONS(2259), 1, + anon_sym_DQUOTE, + ACTIONS(2263), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2265), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2311), 1, + anon_sym_LF, + STATE(96), 1, + sym_val_number, + STATE(792), 1, + sym_comment, + STATE(800), 1, + sym__flag, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1759), 1, + sym__expression, + STATE(1841), 1, + sym_long_flag, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2261), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(791), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2309), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [5763] = 5, - ACTIONS(143), 1, + STATE(1903), 11, + 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, + [5400] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_SEMI, - STATE(798), 1, + STATE(793), 1, sym_comment, - ACTIONS(105), 26, + ACTIONS(859), 27, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -108083,7 +107820,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, + ACTIONS(857), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -108117,81 +107854,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [5836] = 32, + [5471] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(2315), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(799), 1, + STATE(794), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1677), 1, + STATE(1651), 1, sym__expression, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2624), 1, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + STATE(2616), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(2245), 2, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2311), 4, + ACTIONS(2313), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108200,7 +107937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108212,81 +107949,148 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [5963] = 32, + [5598] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(795), 1, + sym_comment, + ACTIONS(787), 17, + anon_sym_DOLLAR, + 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, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(789), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [5669] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(800), 1, - sym_comment, - STATE(802), 1, + STATE(794), 1, sym__flag, - STATE(1621), 1, + STATE(796), 1, + sym_comment, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1677), 1, + STATE(1694), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2311), 4, + ACTIONS(2317), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108295,7 +108099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108307,81 +108111,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6090] = 32, + [5796] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(2319), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(801), 1, + STATE(797), 1, sym_comment, - STATE(803), 1, - sym__flag, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1677), 1, + STATE(1694), 1, sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + STATE(2620), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2311), 4, + ACTIONS(2317), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108390,7 +108194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108402,81 +108206,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6217] = 32, + [5923] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2233), 1, + anon_sym_LF, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2317), 1, - anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(802), 1, + STATE(784), 1, + sym__flag, + STATE(798), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1672), 1, + STATE(1771), 1, sym__expression, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(2618), 1, - sym__flag, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2245), 2, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2315), 4, + ACTIONS(2231), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108485,7 +108289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108497,81 +108301,148 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6344] = 32, - ACTIONS(3), 1, + [6050] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2229), 1, + STATE(799), 1, + sym_comment, + ACTIONS(891), 27, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2231), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2233), 1, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(889), 33, + sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6121] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2233), 1, + anon_sym_LF, ACTIONS(2235), 1, - anon_sym_DASH_DASH, + anon_sym_LBRACK, ACTIONS(2237), 1, - anon_sym_DASH, + anon_sym_LPAREN, ACTIONS(2239), 1, - anon_sym_LBRACE, + anon_sym_DOLLAR, ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2317), 1, - anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(803), 1, - sym_comment, - STATE(804), 1, + STATE(782), 1, sym__flag, - STATE(1621), 1, + STATE(800), 1, + sym_comment, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1672), 1, + STATE(1771), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2315), 4, + ACTIONS(2231), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108580,7 +108451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108592,81 +108463,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6471] = 32, + [6248] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2321), 1, + ACTIONS(2323), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(804), 1, + STATE(796), 1, + sym__flag, + STATE(801), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1661), 1, + STATE(1700), 1, sym__expression, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(2611), 1, - sym__flag, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2245), 2, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2319), 4, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108675,7 +108546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108687,16 +108558,17 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6598] = 5, - ACTIONS(143), 1, + [6375] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2323), 1, - anon_sym_SEMI, - STATE(805), 1, + ACTIONS(2325), 1, + anon_sym_COMMA, + ACTIONS(2327), 1, + anon_sym_DOT, + STATE(802), 1, sym_comment, - ACTIONS(105), 26, + ACTIONS(799), 25, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -108721,7 +108593,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, + ACTIONS(797), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -108755,81 +108627,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [6671] = 32, + [6450] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2327), 1, + ACTIONS(2323), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(770), 1, - sym__flag, - STATE(806), 1, + STATE(803), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1732), 1, + STATE(1700), 1, sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + STATE(2624), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2325), 4, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108838,7 +108710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108850,81 +108722,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6798] = 32, + [6577] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2295), 1, + ACTIONS(2323), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(786), 1, + STATE(797), 1, sym__flag, - STATE(807), 1, + STATE(804), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1697), 1, + STATE(1700), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2293), 4, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -108933,7 +108805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -108945,176 +108817,285 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [6925] = 32, - ACTIONS(3), 1, + [6704] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2329), 1, + anon_sym_SEMI, + STATE(805), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, - ACTIONS(2231), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2239), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2253), 1, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2257), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2331), 1, - anon_sym_LF, - STATE(94), 1, - sym_val_number, - STATE(779), 1, - sym__flag, - STATE(808), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, - sym__var, - STATE(1722), 1, - sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - ACTIONS(2245), 2, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6777] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2331), 1, + anon_sym_SEMI, + STATE(806), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2329), 4, + [6850] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2333), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + STATE(807), 1, + sym_comment, + ACTIONS(105), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(103), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, - 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, - [7052] = 32, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [6923] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2331), 1, + ACTIONS(2337), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(783), 1, + STATE(803), 1, sym__flag, - STATE(809), 1, + STATE(808), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1722), 1, + STATE(1706), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2329), 4, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -109123,7 +109104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -109135,13 +109116,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [7179] = 4, - ACTIONS(143), 1, + [7050] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(810), 1, - sym_comment, - ACTIONS(863), 27, + ACTIONS(2339), 1, anon_sym_SEMI, + STATE(809), 1, + sym_comment, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -109168,7 +109150,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(861), 33, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -109202,81 +109184,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + [7123] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2235), 1, + anon_sym_LBRACK, + ACTIONS(2237), 1, + anon_sym_LPAREN, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2241), 1, + anon_sym_DASH_DASH, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2245), 1, + anon_sym_LBRACE, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2259), 1, + anon_sym_DQUOTE, + ACTIONS(2263), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2265), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2337), 1, + anon_sym_LF, + STATE(96), 1, + sym_val_number, + STATE(804), 1, + sym__flag, + STATE(810), 1, + sym_comment, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1706), 1, + sym__expression, + STATE(1841), 1, + sym_long_flag, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2261), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2335), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(1903), 11, + 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, [7250] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, + ACTIONS(2241), 1, anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2331), 1, + ACTIONS(2337), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(784), 1, + STATE(801), 1, sym__flag, STATE(811), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1722), 1, + STATE(1706), 1, sym__expression, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2329), 4, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -109285,7 +109362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -109300,78 +109377,78 @@ static const uint16_t ts_small_parse_table[] = { [7377] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2235), 1, anon_sym_LBRACK, - ACTIONS(2231), 1, + ACTIONS(2237), 1, anon_sym_LPAREN, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2235), 1, - anon_sym_DASH_DASH, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2239), 1, + ACTIONS(2245), 1, anon_sym_LBRACE, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2253), 1, + ACTIONS(2259), 1, anon_sym_DQUOTE, - ACTIONS(2257), 1, + ACTIONS(2263), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2259), 1, + ACTIONS(2265), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2261), 1, - sym_short_flag, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2337), 1, anon_sym_LF, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(785), 1, - sym__flag, STATE(812), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1697), 1, + STATE(1706), 1, sym__expression, - STATE(1810), 1, - sym_long_flag, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - ACTIONS(2245), 2, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + STATE(2637), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2255), 2, + ACTIONS(2261), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2293), 4, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 8, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -109380,7 +109457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -109393,75 +109470,207 @@ static const uint16_t ts_small_parse_table[] = { sym_val_table, sym_val_closure, [7504] = 4, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, STATE(813), 1, sym_comment, - ACTIONS(833), 16, + ACTIONS(899), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(897), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(835), 43, + [7574] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(814), 1, + sym_comment, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(829), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [7644] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(815), 1, + sym_comment, + ACTIONS(839), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7574] = 4, - ACTIONS(143), 1, + ACTIONS(837), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [7714] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(814), 1, + STATE(816), 1, sym_comment, ACTIONS(829), 16, anon_sym_DOLLAR, @@ -109524,12 +109733,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7644] = 4, - ACTIONS(143), 1, + [7784] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(815), 1, + STATE(817), 1, sym_comment, - ACTIONS(919), 16, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -109546,14 +109758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(921), 43, + ACTIONS(803), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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, @@ -109590,12 +109800,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7714] = 4, - ACTIONS(143), 1, + [7856] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(816), 1, + STATE(818), 1, sym_comment, - ACTIONS(103), 16, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -109612,7 +109822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(105), 43, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -109656,12 +109866,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [7784] = 4, - ACTIONS(143), 1, + [7926] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(817), 1, + STATE(819), 1, sym_comment, - ACTIONS(885), 26, + ACTIONS(875), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -109688,7 +109898,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(883), 33, + ACTIONS(873), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -109722,336 +109932,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [7854] = 36, - ACTIONS(143), 1, + [7996] = 13, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(820), 1, + sym_comment, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2355), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2359), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 17, anon_sym_LBRACK, - ACTIONS(2335), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - anon_sym_DASH, - ACTIONS(2341), 1, anon_sym_LBRACE, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2345), 1, - anon_sym__, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2367), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(98), 1, - sym_val_number, - STATE(818), 1, - sym_comment, - STATE(951), 1, - aux_sym_ctrl_match_repeat1, - STATE(1681), 1, - sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, - sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - STATE(2202), 1, - sym__expression, - STATE(2450), 1, - sym_match_arm, - STATE(3473), 1, - sym_match_pattern, - STATE(3474), 1, - sym__match_or_pattern, - STATE(3476), 1, - sym__match_list_destructure_pattern, - STATE(3485), 1, - sym_default_arm, - ACTIONS(2349), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2355), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2361), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2359), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2081), 11, - 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, - [7988] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(819), 1, - sym_comment, - ACTIONS(927), 16, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(801), 20, + sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(929), 43, + [8084] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(821), 1, + sym_comment, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [8058] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(820), 1, - sym_comment, - ACTIONS(927), 16, + ACTIONS(829), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(929), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + [8154] = 14, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + STATE(822), 1, + sym_comment, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(2359), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 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, + ACTIONS(803), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [8128] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(801), 19, + sym_cmd_identifier, anon_sym_DOLLAR, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2403), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(821), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1807), 1, - sym__expression, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2671), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2319), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2321), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + anon_sym_DOT_DOT, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, aux_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_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [8254] = 4, - ACTIONS(143), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [8244] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(822), 1, + STATE(823), 1, sym_comment, - ACTIONS(867), 26, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -110078,7 +110181,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(865), 33, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -110112,17 +110215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8324] = 6, - ACTIONS(137), 1, - anon_sym_DOT_DOT, - ACTIONS(143), 1, + [8314] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(823), 1, + STATE(824), 1, sym_comment, - ACTIONS(135), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(851), 24, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -110137,6 +110235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, @@ -110147,7 +110247,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(849), 32, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -110170,6 +110270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -110180,426 +110281,453 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8398] = 4, - ACTIONS(143), 1, + [8384] = 18, + ACTIONS(145), 1, anon_sym_POUND, - STATE(824), 1, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + ACTIONS(2385), 1, + anon_sym_bit_DASHor, + ACTIONS(2387), 1, + anon_sym_and, + STATE(825), 1, sym_comment, - ACTIONS(851), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2341), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2375), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(803), 24, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(849), 33, - sym_cmd_identifier, + [8482] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(826), 1, + sym_comment, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(831), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LT2, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [8552] = 19, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + ACTIONS(2385), 1, + anon_sym_bit_DASHor, + ACTIONS(2387), 1, + anon_sym_and, + ACTIONS(2389), 1, + anon_sym_xor, + STATE(827), 1, + sym_comment, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2375), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [8468] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(803), 23, anon_sym_LBRACK, - ACTIONS(2373), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(821), 1, - sym__flag, - STATE(825), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1812), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2315), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2317), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + anon_sym_RBRACE, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [8594] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2403), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(826), 1, + [8652] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(828), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1812), 1, - sym__expression, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2664), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2315), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2317), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(829), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, - 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, - [8720] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(831), 43, anon_sym_LBRACK, - ACTIONS(2373), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(827), 1, - sym_comment, - STATE(934), 1, - sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1799), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2329), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2331), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [8846] = 4, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [8722] = 20, + ACTIONS(145), 1, anon_sym_POUND, - STATE(828), 1, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + ACTIONS(2385), 1, + anon_sym_bit_DASHor, + ACTIONS(2387), 1, + anon_sym_and, + ACTIONS(2389), 1, + anon_sym_xor, + ACTIONS(2391), 1, + anon_sym_or, + STATE(829), 1, sym_comment, - ACTIONS(901), 26, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2375), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(803), 22, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(899), 33, - sym_cmd_identifier, + [8824] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(830), 1, + sym_comment, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(831), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LT2, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [8916] = 4, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [8894] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(829), 1, + STATE(831), 1, sym_comment, - ACTIONS(923), 16, + ACTIONS(935), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -110616,7 +110744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(925), 43, + ACTIONS(937), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -110660,12 +110788,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [8986] = 4, - ACTIONS(143), 1, + [8964] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(830), 1, + STATE(832), 1, sym_comment, - ACTIONS(871), 26, + ACTIONS(911), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -110692,7 +110820,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(869), 33, + ACTIONS(909), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -110726,476 +110854,698 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9056] = 4, - ACTIONS(143), 1, + [9034] = 16, + ACTIONS(145), 1, anon_sym_POUND, - STATE(831), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + ACTIONS(2393), 1, + anon_sym_bit_DASHxor, + ACTIONS(2395), 1, + anon_sym_bit_DASHor, + STATE(833), 1, sym_comment, - ACTIONS(907), 16, - anon_sym_DOLLAR, + ACTIONS(2343), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, + anon_sym_PLUS, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2355), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2359), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2349), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_mod, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 17, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(909), 43, + ACTIONS(803), 17, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [9128] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(834), 1, + sym_comment, + ACTIONS(907), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9126] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(832), 1, - sym_comment, - ACTIONS(903), 16, + ACTIONS(905), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(905), 43, + [9198] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(835), 1, + sym_comment, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9196] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(833), 1, - sym_comment, - ACTIONS(891), 16, + ACTIONS(829), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(893), 43, + [9268] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(836), 1, + sym_comment, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(803), 24, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9266] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(834), 1, - sym_comment, - ACTIONS(879), 16, + ACTIONS(801), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(881), 43, + [9340] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(837), 1, + sym_comment, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(829), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9410] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(838), 1, + sym_comment, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(803), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9336] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(835), 1, - sym_comment, - ACTIONS(861), 16, + ACTIONS(801), 30, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(863), 43, + [9486] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(839), 1, + sym_comment, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9406] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(836), 1, - sym_comment, - ACTIONS(845), 16, + ACTIONS(829), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(847), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + [9556] = 12, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(840), 1, + sym_comment, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 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, + ACTIONS(803), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(801), 20, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9642] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(841), 1, + sym_comment, + ACTIONS(831), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9476] = 32, + ACTIONS(829), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9712] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(837), 1, + STATE(842), 1, sym_comment, - STATE(944), 1, + STATE(845), 1, sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1653), 1, sym__var, - STATE(1831), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1803), 1, sym__expression, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2325), 2, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2327), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -111204,7 +111554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -111216,144 +111566,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9602] = 4, - ACTIONS(143), 1, + [9838] = 8, + ACTIONS(145), 1, anon_sym_POUND, - STATE(838), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(843), 1, sym_comment, - ACTIONS(841), 16, - anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2345), 2, anon_sym_DASH, - anon_sym_in, - anon_sym__, + anon_sym_PLUS, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2349), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(843), 43, + anon_sym_mod, + ACTIONS(803), 23, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [9672] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(839), 1, - sym_comment, - ACTIONS(837), 16, + ACTIONS(801), 28, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(839), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [9742] = 4, - ACTIONS(143), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [9916] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(840), 1, + STATE(844), 1, sym_comment, - ACTIONS(823), 26, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -111380,7 +111668,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(821), 33, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -111414,80 +111702,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [9812] = 32, + [9986] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(841), 1, + STATE(845), 1, sym_comment, - STATE(933), 1, + STATE(902), 1, sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1653), 1, sym__var, - STATE(1799), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1807), 1, sym__expression, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2329), 2, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2331), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -111496,7 +111784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -111508,456 +111796,212 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [9938] = 32, - ACTIONS(3), 1, + [10112] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, + STATE(846), 1, + sym_comment, + ACTIONS(103), 16, anon_sym_DOLLAR, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2379), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2403), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(842), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1808), 1, - sym__expression, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2670), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2293), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, - 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, - [10064] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(105), 43, anon_sym_LBRACK, - ACTIONS(2373), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(843), 1, - sym_comment, - STATE(949), 1, - sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1808), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2293), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [10190] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(2399), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(844), 1, + [10182] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(847), 1, sym_comment, - STATE(950), 1, - sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1808), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2293), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(885), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, - 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, - [10316] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(887), 43, anon_sym_LBRACK, - ACTIONS(2373), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(845), 1, - sym_comment, - STATE(942), 1, - sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1808), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2293), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [10442] = 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10252] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(846), 1, + STATE(848), 1, sym_comment, - STATE(941), 1, - sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1653), 1, sym__var, - STATE(1808), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1803), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2293), 2, + STATE(2684), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2295), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -111966,7 +112010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -111978,24 +112022,40 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10568] = 4, - ACTIONS(143), 1, + [10378] = 11, + ACTIONS(145), 1, anon_sym_POUND, - STATE(847), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(849), 1, sym_comment, - ACTIONS(933), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + ACTIONS(2355), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2357), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(803), 19, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, @@ -112010,19 +112070,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(931), 33, + ACTIONS(801), 24, sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -112044,89 +112095,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [10638] = 32, - ACTIONS(3), 1, + [10462] = 36, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2445), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + anon_sym__, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2453), 1, + anon_sym_DOT_DOT, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, + STATE(100), 1, sym_val_number, - STATE(825), 1, - sym__flag, - STATE(848), 1, + STATE(850), 1, sym_comment, - STATE(1704), 1, + STATE(920), 1, + aux_sym_ctrl_match_repeat1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1733), 1, + STATE(1738), 1, sym__var, - STATE(1818), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2115), 1, sym__str_double_quotes, - ACTIONS(2311), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2313), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2183), 1, + sym__expression, + STATE(2464), 1, + sym_match_arm, + STATE(3468), 1, + sym__match_list_destructure_pattern, + STATE(3472), 1, + sym__match_or_pattern, + STATE(3478), 1, + sym_match_pattern, + STATE(3484), 1, + sym_default_arm, + ACTIONS(2451), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2459), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -112138,80 +112193,146 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10764] = 32, + [10596] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(851), 1, + sym_comment, + ACTIONS(833), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(835), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10666] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(826), 1, - sym__flag, - STATE(849), 1, + STATE(852), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(873), 1, + sym__flag, + STATE(1653), 1, sym__var, - STATE(1818), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1828), 1, sym__expression, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2311), 2, + ACTIONS(2309), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2313), 2, + ACTIONS(2311), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -112220,7 +112341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -112232,89 +112353,159 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [10890] = 32, - ACTIONS(3), 1, + [10792] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(853), 1, + sym_comment, + ACTIONS(833), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(835), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [10862] = 36, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2379), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2447), 1, + anon_sym__, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2453), 1, + anon_sym_DOT_DOT, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2403), 1, - sym_short_flag, - STATE(102), 1, + ACTIONS(2473), 1, + anon_sym_RBRACE, + STATE(100), 1, sym_val_number, - STATE(850), 1, + STATE(854), 1, sym_comment, - STATE(1704), 1, + STATE(947), 1, + aux_sym_ctrl_match_repeat1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1733), 1, + STATE(1738), 1, sym__var, - STATE(1818), 1, - sym__expression, - STATE(2023), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2115), 1, sym__str_double_quotes, - STATE(2700), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2311), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2313), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2183), 1, + sym__expression, + STATE(2464), 1, + sym_match_arm, + STATE(3468), 1, + sym__match_list_destructure_pattern, + STATE(3472), 1, + sym__match_or_pattern, + STATE(3478), 1, + sym_match_pattern, + STATE(3612), 1, + sym_default_arm, + ACTIONS(2451), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2459), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -112326,12 +112517,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11016] = 4, - ACTIONS(143), 1, + [10996] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(851), 1, + STATE(855), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(937), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -112358,7 +112549,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(935), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -112392,57 +112583,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11086] = 19, - ACTIONS(143), 1, + [11066] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, ACTIONS(2427), 1, - anon_sym_bit_DASHand, + anon_sym_DOLLAR_DQUOTE, ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(856), 1, + sym_comment, + STATE(870), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1828), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2309), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2311), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [11192] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(857), 1, + sym_comment, + ACTIONS(837), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(839), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, - ACTIONS(2431), 1, anon_sym_bit_DASHor, - ACTIONS(2433), 1, anon_sym_and, - ACTIONS(2435), 1, anon_sym_xor, - ACTIONS(2437), 1, anon_sym_or, - STATE(852), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [11262] = 15, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + ACTIONS(2393), 1, + anon_sym_bit_DASHxor, + STATE(858), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2411), 2, + ACTIONS(2345), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2417), 2, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2425), 2, + ACTIONS(2359), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2415), 3, + ACTIONS(2349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(2413), 4, + ACTIONS(2347), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2423), 4, + ACTIONS(2357), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 14, + ACTIONS(803), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(801), 18, sym_cmd_identifier, anon_sym_DOLLAR, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -112455,12 +112820,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 17, + [11354] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(859), 1, + sym_comment, + ACTIONS(925), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -112473,10 +112852,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [11186] = 4, - ACTIONS(143), 1, + ACTIONS(923), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [11424] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(853), 1, + STATE(860), 1, sym_comment, ACTIONS(831), 26, anon_sym_LBRACK, @@ -112539,160 +112952,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11256] = 18, - ACTIONS(143), 1, + [11494] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, ACTIONS(2427), 1, - anon_sym_bit_DASHand, - ACTIONS(2429), 1, - anon_sym_bit_DASHxor, + anon_sym_DOLLAR_DQUOTE, ACTIONS(2431), 1, - anon_sym_bit_DASHor, + anon_sym_DASH_DASH, ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_xor, - STATE(854), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(861), 1, sym_comment, - ACTIONS(2409), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 15, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1800), 1, + sym__expression, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + STATE(2674), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2269), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2271), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, aux_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_inf, + anon_sym_DASHinf, anon_sym_NaN, + STATE(2036), 11, + 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, + [11620] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(848), 1, + sym__flag, + STATE(862), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1800), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2269), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2271), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 17, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [11746] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2399), 1, anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(863), 1, + sym_comment, + STATE(869), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1800), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2269), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2271), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, - sym_val_date, + anon_sym_NaN, + STATE(2036), 11, + 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, + [11872] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - [11354] = 32, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(864), 1, + sym_comment, + STATE(867), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1800), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2269), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2271), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [11998] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(855), 1, - sym_comment, - STATE(932), 1, + STATE(842), 1, sym__flag, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(865), 1, + sym_comment, + STATE(1653), 1, sym__var, - STATE(1799), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1800), 1, sym__expression, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2329), 2, + ACTIONS(2269), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2331), 2, + ACTIONS(2271), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -112701,7 +113410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -112713,12 +113422,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [11480] = 4, - ACTIONS(143), 1, + [12124] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(856), 1, + STATE(866), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(941), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -112745,7 +113454,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(939), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -112779,12 +113488,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11550] = 4, - ACTIONS(143), 1, + [12194] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(857), 1, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(867), 1, + sym_comment, + STATE(940), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1803), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2335), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2337), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [12320] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(868), 1, sym_comment, - ACTIONS(913), 26, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -112811,7 +113614,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(911), 33, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -112845,91 +113648,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11620] = 17, - ACTIONS(143), 1, + [12390] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, ACTIONS(2427), 1, - anon_sym_bit_DASHand, + anon_sym_DOLLAR_DQUOTE, ACTIONS(2429), 1, - anon_sym_bit_DASHxor, - ACTIONS(2431), 1, - anon_sym_bit_DASHor, - ACTIONS(2433), 1, - anon_sym_and, - STATE(858), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(869), 1, sym_comment, - ACTIONS(2409), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 16, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + STATE(937), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1803), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2335), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2337), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, aux_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_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 17, + STATE(2036), 11, + 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, + [12516] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2399), 1, anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(870), 1, + sym_comment, + STATE(881), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1799), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2231), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2233), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [11716] = 4, - ACTIONS(143), 1, + anon_sym_NaN, + STATE(2036), 11, + 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, + [12642] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(859), 1, + STATE(871), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(929), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -112956,7 +113868,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(927), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -112990,90 +113902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11786] = 16, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2427), 1, - anon_sym_bit_DASHand, - ACTIONS(2429), 1, - anon_sym_bit_DASHxor, - ACTIONS(2431), 1, - anon_sym_bit_DASHor, - STATE(860), 1, - sym_comment, - ACTIONS(2409), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 17, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [11880] = 4, - ACTIONS(143), 1, + [12712] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(861), 1, + STATE(872), 1, sym_comment, - ACTIONS(827), 26, + ACTIONS(895), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -113100,7 +113934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(825), 33, + ACTIONS(893), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -113134,78 +113968,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [11950] = 4, - ACTIONS(143), 1, + [12782] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(862), 1, - sym_comment, - ACTIONS(873), 16, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(873), 1, + sym_comment, + STATE(880), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1799), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2231), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2233), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(875), 43, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [12908] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2399), 1, anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(856), 1, + sym__flag, + STATE(874), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1820), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2289), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2291), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [12020] = 4, - ACTIONS(143), 1, + STATE(2036), 11, + 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, + [13034] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(863), 1, + STATE(875), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(115), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -113232,7 +114188,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(113), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -113266,203 +114222,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12090] = 4, - ACTIONS(143), 1, + [13104] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(864), 1, - sym_comment, - ACTIONS(825), 16, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(876), 1, + sym_comment, + STATE(878), 1, + sym__flag, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1799), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2231), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2233), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(827), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [12160] = 4, - ACTIONS(143), 1, + STATE(2036), 11, + 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, + [13230] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(865), 1, - sym_comment, - ACTIONS(821), 16, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(864), 1, + sym__flag, + STATE(877), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1785), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2297), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2299), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(823), 43, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [13356] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2399), 1, anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(863), 1, + sym__flag, + STATE(878), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1785), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2297), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2299), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [12230] = 15, - ACTIONS(143), 1, + STATE(2036), 11, + 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, + [13482] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(2353), 1, anon_sym_SLASH_SLASH, - ACTIONS(2427), 1, + ACTIONS(2361), 1, anon_sym_bit_DASHand, - ACTIONS(2429), 1, + ACTIONS(2393), 1, anon_sym_bit_DASHxor, - STATE(866), 1, + ACTIONS(2395), 1, + anon_sym_bit_DASHor, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_xor, + ACTIONS(2479), 1, + anon_sym_or, + STATE(879), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2343), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2411), 2, + ACTIONS(2345), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2417), 2, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2425), 2, + ACTIONS(2359), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2415), 3, + ACTIONS(2349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(2413), 4, + ACTIONS(2347), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2423), 4, + ACTIONS(2357), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 18, + ACTIONS(801), 14, sym_cmd_identifier, anon_sym_DOLLAR, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, sym_val_nothing, @@ -113475,26 +114567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12322] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(867), 1, - sym_comment, - ACTIONS(831), 26, + ACTIONS(803), 17, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, @@ -113507,329 +114585,337 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, - sym_cmd_identifier, + [13582] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, anon_sym_not, - anon_sym_DOT_DOT, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(862), 1, + sym__flag, + STATE(880), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1785), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2297), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2299), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, aux_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_inf, + anon_sym_DASHinf, anon_sym_NaN, + STATE(2036), 11, + 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, + [13708] = 32, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(861), 1, + sym__flag, + STATE(881), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1785), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2297), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2299), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12392] = 14, - ACTIONS(143), 1, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [13834] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2427), 1, - anon_sym_bit_DASHand, - STATE(868), 1, + STATE(882), 1, sym_comment, - ACTIONS(2409), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, + ACTIONS(2341), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2371), 2, anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 19, - sym_cmd_identifier, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(801), 12, anon_sym_DOLLAR, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_GT, + anon_sym_in, + anon_sym__, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12482] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(869), 1, - sym_comment, - ACTIONS(831), 26, + ACTIONS(803), 37, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + 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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, - sym_cmd_identifier, + [13914] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(883), 1, + sym_comment, + ACTIONS(841), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12552] = 13, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(870), 1, - sym_comment, - ACTIONS(2409), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, + ACTIONS(843), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 17, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 20, - sym_cmd_identifier, - anon_sym_DOLLAR, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [12640] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(871), 1, - sym_comment, - ACTIONS(835), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(833), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [12710] = 4, - ACTIONS(143), 1, + [13984] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(872), 1, + STATE(884), 1, sym_comment, - ACTIONS(869), 16, + ACTIONS(845), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -113846,7 +114932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(871), 43, + ACTIONS(847), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -113890,12 +114976,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [12780] = 4, - ACTIONS(143), 1, + [14054] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(873), 1, + STATE(885), 1, sym_comment, - ACTIONS(883), 16, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -113912,7 +114998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(885), 43, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -113956,59 +115042,55 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [12850] = 4, - ACTIONS(143), 1, + [14124] = 18, + ACTIONS(145), 1, anon_sym_POUND, - STATE(874), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + ACTIONS(2393), 1, + anon_sym_bit_DASHxor, + ACTIONS(2395), 1, + anon_sym_bit_DASHor, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_xor, + STATE(886), 1, sym_comment, - ACTIONS(831), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(2355), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2359), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(2349), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, + ACTIONS(2347), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, + ACTIONS(2357), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, @@ -114022,32 +115104,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [12920] = 9, - ACTIONS(143), 1, + ACTIONS(803), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [14222] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(875), 1, + STATE(887), 1, sym_comment, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(795), 23, + ACTIONS(879), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114066,11 +115154,18 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 26, + ACTIONS(877), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -114093,12 +115188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13000] = 4, - ACTIONS(143), 1, + [14292] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(876), 1, + STATE(888), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(851), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -114125,7 +115220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(849), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -114159,20 +115254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13070] = 5, - ACTIONS(143), 1, + [14362] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(877), 1, + STATE(889), 1, sym_comment, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(795), 24, + ACTIONS(855), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -114192,7 +115286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 33, + ACTIONS(853), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -114226,12 +115320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13142] = 4, - ACTIONS(143), 1, + [14432] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(878), 1, + STATE(890), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(843), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -114258,7 +115352,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(841), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -114292,26 +115386,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13212] = 7, - ACTIONS(143), 1, + [14502] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(879), 1, + STATE(891), 1, sym_comment, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(795), 23, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -114330,12 +115418,15 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 30, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -114361,12 +115452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [13288] = 4, - ACTIONS(143), 1, + [14572] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(880), 1, + STATE(892), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(901), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -114383,7 +115474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(903), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -114427,94 +115518,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13358] = 20, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - ACTIONS(2463), 1, - anon_sym_bit_DASHor, - ACTIONS(2465), 1, - anon_sym_and, - ACTIONS(2467), 1, - anon_sym_xor, - ACTIONS(2469), 1, - anon_sym_or, - STATE(881), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 22, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [13460] = 4, - ACTIONS(143), 1, + [14642] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(882), 1, + STATE(893), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(849), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -114531,7 +115540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(851), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -114575,93 +115584,106 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13530] = 19, - ACTIONS(143), 1, + [14712] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - ACTIONS(2463), 1, - anon_sym_bit_DASHor, - ACTIONS(2465), 1, - anon_sym_and, - ACTIONS(2467), 1, - anon_sym_xor, - STATE(883), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 23, + ACTIONS(2397), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2399), 1, anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(894), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1810), 1, + sym__expression, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + STATE(2690), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2313), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2315), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [13630] = 4, - ACTIONS(143), 1, + STATE(2036), 11, + 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, + [14838] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(884), 1, + STATE(895), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(853), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -114678,7 +115700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(855), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -114722,92 +115744,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13700] = 18, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - ACTIONS(2463), 1, - anon_sym_bit_DASHor, - ACTIONS(2465), 1, - anon_sym_and, - STATE(885), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [13798] = 4, - ACTIONS(143), 1, + [14908] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(886), 1, + STATE(896), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(857), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -114824,7 +115766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(859), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -114868,91 +115810,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [13868] = 17, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - ACTIONS(2463), 1, - anon_sym_bit_DASHor, - STATE(887), 1, - sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 25, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [13964] = 4, - ACTIONS(143), 1, + [14978] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(888), 1, + STATE(897), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(861), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -114969,7 +115832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(863), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -115013,212 +115876,125 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14034] = 16, - ACTIONS(143), 1, + [15048] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - STATE(889), 1, + STATE(898), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, + ACTIONS(847), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14128] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(890), 1, - sym_comment, - ACTIONS(829), 16, + ACTIONS(845), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(831), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_LT_EQ, - anon_sym_GT_EQ, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [14198] = 15, - ACTIONS(143), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [15118] = 6, + ACTIONS(137), 1, + anon_sym_DOT_DOT, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - STATE(891), 1, + STATE(899), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(135), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 15, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, + anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_DOLLAR, - anon_sym__, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 27, + ACTIONS(903), 41, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -115234,12 +116010,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14290] = 4, - ACTIONS(143), 1, + [15192] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(892), 1, + STATE(900), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(869), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -115256,7 +116032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(871), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -115300,44 +116076,44 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14360] = 14, - ACTIONS(143), 1, + [15262] = 14, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2367), 1, anon_sym_in, - STATE(893), 1, + STATE(901), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2441), 2, + ACTIONS(2365), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2445), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, + ACTIONS(2371), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, + ACTIONS(2373), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2457), 2, + ACTIONS(2379), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2455), 3, + ACTIONS(2377), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2453), 4, + ACTIONS(2375), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 9, + ACTIONS(801), 9, anon_sym_DOLLAR, anon_sym__, anon_sym_not, @@ -115347,7 +116123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 28, + ACTIONS(803), 28, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -115376,97 +116152,114 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14450] = 4, - ACTIONS(143), 1, + [15352] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(894), 1, - sym_comment, - ACTIONS(829), 16, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2429), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(894), 1, + sym__flag, + STATE(902), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1809), 1, + sym__expression, + STATE(1889), 1, + sym_long_flag, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [14520] = 9, - ACTIONS(143), 1, + STATE(2036), 11, + 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, + [15478] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(895), 1, + STATE(903), 1, sym_comment, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(793), 12, + ACTIONS(873), 16, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, @@ -115475,12 +116268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 37, + ACTIONS(875), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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, @@ -115513,12 +116312,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14600] = 4, - ACTIONS(143), 1, + [15548] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(896), 1, + STATE(904), 1, sym_comment, - ACTIONS(829), 16, + ACTIONS(865), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -115535,7 +116334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(867), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -115579,79 +116378,251 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14670] = 5, - ACTIONS(143), 1, + [15618] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(897), 1, + STATE(905), 1, sym_comment, - ACTIONS(2447), 2, + ACTIONS(933), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(793), 16, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(931), 33, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym__, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 41, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_mod, + [15688] = 17, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + ACTIONS(2393), 1, + anon_sym_bit_DASHxor, + ACTIONS(2395), 1, + anon_sym_bit_DASHor, + ACTIONS(2475), 1, + anon_sym_and, + STATE(906), 1, + sym_comment, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(2359), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 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, + ACTIONS(801), 16, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(803), 17, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14742] = 4, - ACTIONS(143), 1, + [15784] = 32, + ACTIONS(3), 1, anon_sym_POUND, - STATE(898), 1, + ACTIONS(2397), 1, + anon_sym_LBRACK, + ACTIONS(2399), 1, + anon_sym_LPAREN, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2407), 1, + anon_sym_LBRACE, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2425), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2427), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + STATE(97), 1, + sym_val_number, + STATE(907), 1, sym_comment, - ACTIONS(829), 16, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1809), 1, + sym__expression, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + STATE(2695), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [15910] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(908), 1, + sym_comment, + ACTIONS(881), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -115668,7 +116639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(831), 43, + ACTIONS(883), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -115712,26 +116683,101 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14812] = 7, - ACTIONS(143), 1, + [15980] = 20, + ACTIONS(145), 1, anon_sym_POUND, - STATE(899), 1, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2361), 1, + anon_sym_bit_DASHand, + ACTIONS(2393), 1, + anon_sym_bit_DASHxor, + ACTIONS(2395), 1, + anon_sym_bit_DASHor, + ACTIONS(2475), 1, + anon_sym_and, + ACTIONS(2477), 1, + anon_sym_xor, + ACTIONS(2479), 1, + anon_sym_or, + ACTIONS(2485), 1, + anon_sym_COMMA, + STATE(909), 1, sym_comment, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, + ACTIONS(2343), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2345), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2351), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, + ACTIONS(2355), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2359), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 14, + ACTIONS(2347), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2357), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2481), 14, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2483), 16, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [16082] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(910), 1, + sym_comment, + ACTIONS(877), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_not, @@ -115741,12 +116787,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 39, + ACTIONS(879), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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, @@ -115781,10 +116831,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14888] = 4, - ACTIONS(143), 1, + [16152] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(900), 1, + STATE(911), 1, sym_comment, ACTIONS(829), 16, anon_sym_DOLLAR, @@ -115847,41 +116897,46 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [14958] = 13, - ACTIONS(143), 1, + [16222] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(2367), 1, anon_sym_in, - STATE(901), 1, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + STATE(912), 1, sym_comment, - ACTIONS(2439), 2, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2441), 2, + ACTIONS(2365), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2445), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, + ACTIONS(2371), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, + ACTIONS(2373), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2455), 3, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2453), 4, + ACTIONS(2375), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 9, + ACTIONS(801), 9, anon_sym_DOLLAR, anon_sym__, anon_sym_not, @@ -115891,15 +116946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 30, + ACTIONS(803), 27, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, 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, @@ -115922,10 +116974,10 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15046] = 4, - ACTIONS(143), 1, + [16314] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(902), 1, + STATE(913), 1, sym_comment, ACTIONS(829), 16, anon_sym_DOLLAR, @@ -115988,28 +117040,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15116] = 8, - ACTIONS(143), 1, + [16384] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(903), 1, + STATE(914), 1, sym_comment, - ACTIONS(2441), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 12, + ACTIONS(889), 16, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, @@ -116018,12 +117062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(795), 39, + ACTIONS(891), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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, @@ -116058,183 +117106,78 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15194] = 36, - ACTIONS(143), 1, + [16454] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2333), 1, + STATE(915), 1, + sym_comment, + ACTIONS(863), 26, anon_sym_LBRACK, - ACTIONS(2335), 1, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - anon_sym_DASH, - ACTIONS(2341), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym__, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2367), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2471), 1, - anon_sym_RBRACE, - STATE(98), 1, - sym_val_number, - STATE(818), 1, - aux_sym_ctrl_match_repeat1, - STATE(904), 1, - sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, - sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - STATE(2202), 1, - sym__expression, - STATE(2450), 1, - sym_match_arm, - STATE(3473), 1, - sym_match_pattern, - STATE(3474), 1, - sym__match_or_pattern, - STATE(3476), 1, - sym__match_list_destructure_pattern, - STATE(3480), 1, - sym_default_arm, - ACTIONS(2349), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2355), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2361), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2359), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2081), 11, - 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, - [15328] = 11, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(905), 1, - sym_comment, - ACTIONS(2439), 2, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(861), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2445), 2, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 10, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym__, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(795), 33, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_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_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + anon_sym_not, + anon_sym_DOT_DOT, sym_val_nothing, anon_sym_true, anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [15412] = 4, - ACTIONS(143), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [16524] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(906), 1, + STATE(916), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(105), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -116261,7 +117204,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(103), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -116295,128 +117238,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [15482] = 4, - ACTIONS(143), 1, + [16594] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(907), 1, + STATE(917), 1, sym_comment, - ACTIONS(853), 16, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_not, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(855), 43, + ACTIONS(887), 26, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15552] = 12, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(908), 1, - sym_comment, - ACTIONS(2409), 2, + ACTIONS(885), 33, + sym_cmd_identifier, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2415), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 20, - sym_cmd_identifier, - anon_sym_DOLLAR, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -116435,12 +117304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [15638] = 4, - ACTIONS(143), 1, + [16664] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(909), 1, + STATE(918), 1, sym_comment, - ACTIONS(831), 26, + ACTIONS(871), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -116467,7 +117336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(869), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -116501,29 +117370,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [15708] = 8, - ACTIONS(143), 1, + [16734] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(910), 1, + STATE(919), 1, sym_comment, - ACTIONS(2411), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2415), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(795), 23, + ACTIONS(835), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -116542,11 +117402,16 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 28, + ACTIONS(833), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_LT2, @@ -116571,12 +117436,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [15786] = 4, - ACTIONS(143), 1, + [16804] = 36, + ACTIONS(145), 1, anon_sym_POUND, - STATE(911), 1, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, + anon_sym_DASH, + ACTIONS(2443), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym__, + ACTIONS(2449), 1, + anon_sym_not, + ACTIONS(2453), 1, + anon_sym_DOT_DOT, + ACTIONS(2465), 1, + anon_sym_DQUOTE, + ACTIONS(2469), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2471), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2487), 1, + anon_sym_RBRACE, + STATE(100), 1, + sym_val_number, + STATE(920), 1, sym_comment, - ACTIONS(831), 26, + STATE(951), 1, + aux_sym_ctrl_match_repeat1, + STATE(1720), 1, + sym_expr_parenthesized, + STATE(1738), 1, + sym__var, + STATE(2043), 1, + sym__inter_single_quotes, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, + sym__str_double_quotes, + STATE(2183), 1, + sym__expression, + STATE(2464), 1, + sym_match_arm, + STATE(3468), 1, + sym__match_list_destructure_pattern, + STATE(3472), 1, + sym__match_or_pattern, + STATE(3478), 1, + sym_match_pattern, + STATE(3569), 1, + sym_default_arm, + ACTIONS(2451), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2455), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2457), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2459), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2467), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2463), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2461), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2005), 11, + 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, + [16938] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(921), 1, + sym_comment, + ACTIONS(835), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -116603,7 +117566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(829), 33, + ACTIONS(833), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -116637,12 +117600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [15856] = 4, - ACTIONS(143), 1, + [17008] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(912), 1, + STATE(922), 1, sym_comment, - ACTIONS(899), 16, + ACTIONS(893), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -116659,7 +117622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(901), 43, + ACTIONS(895), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -116703,151 +117666,144 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [15926] = 11, - ACTIONS(143), 1, + [17078] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - STATE(913), 1, + STATE(923), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(897), 16, + anon_sym_DOLLAR, anon_sym_GT, - anon_sym_LT2, - ACTIONS(2411), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2415), 3, + anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(2423), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 19, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(793), 24, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [16010] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(914), 1, - sym_comment, - ACTIONS(839), 26, + ACTIONS(899), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, 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_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(837), 33, - sym_cmd_identifier, + [17148] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(924), 1, + sym_comment, + ACTIONS(905), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(907), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LT2, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [16080] = 4, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [17218] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(915), 1, + STATE(925), 1, sym_comment, - ACTIONS(857), 16, + ACTIONS(909), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -116864,7 +117820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(859), 43, + ACTIONS(911), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -116908,206 +117864,168 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16150] = 20, - ACTIONS(143), 1, + [17288] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2419), 1, - anon_sym_SLASH_SLASH, - ACTIONS(2427), 1, - anon_sym_bit_DASHand, - ACTIONS(2429), 1, - anon_sym_bit_DASHxor, - ACTIONS(2431), 1, - anon_sym_bit_DASHor, - ACTIONS(2433), 1, - anon_sym_and, - ACTIONS(2435), 1, - anon_sym_xor, - ACTIONS(2437), 1, - anon_sym_or, - ACTIONS(2477), 1, - anon_sym_COMMA, - STATE(916), 1, + STATE(926), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(2411), 2, + ACTIONS(2365), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2417), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2421), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2425), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2415), 3, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2371), 2, anon_sym_mod, - ACTIONS(2413), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2423), 4, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2375), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2473), 14, - sym_cmd_identifier, + ACTIONS(801), 10, anon_sym_DOLLAR, + anon_sym_in, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2475), 16, + ACTIONS(803), 33, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, + 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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16252] = 4, - ACTIONS(143), 1, + [17372] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(917), 1, + STATE(927), 1, sym_comment, - ACTIONS(843), 26, + ACTIONS(829), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, 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_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(841), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [16322] = 20, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [17442] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_in, - ACTIONS(2459), 1, - anon_sym_bit_DASHand, - ACTIONS(2461), 1, - anon_sym_bit_DASHxor, - ACTIONS(2463), 1, - anon_sym_bit_DASHor, - ACTIONS(2465), 1, - anon_sym_and, - ACTIONS(2467), 1, - anon_sym_xor, - ACTIONS(2469), 1, - anon_sym_or, - STATE(918), 1, + STATE(928), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(2441), 2, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2365), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2445), 2, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(2447), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(2449), 2, + ACTIONS(2371), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(2451), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(2457), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2455), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(2453), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2481), 9, + ACTIONS(801), 12, anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_in, anon_sym__, + anon_sym_LT2, anon_sym_not, anon_sym_DOT_DOT, aux_sym_val_number_token1, @@ -117115,12 +118033,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2479), 22, + ACTIONS(803), 39, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, 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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, sym_val_nothing, @@ -117138,12 +118073,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16424] = 4, - ACTIONS(143), 1, + [17520] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(919), 1, + STATE(929), 1, sym_comment, - ACTIONS(865), 16, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -117160,7 +118095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(867), 43, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -117204,152 +118139,107 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16494] = 4, - ACTIONS(143), 1, + [17590] = 13, + ACTIONS(145), 1, anon_sym_POUND, - STATE(920), 1, + ACTIONS(2367), 1, + anon_sym_in, + STATE(930), 1, sym_comment, - ACTIONS(847), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2341), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(845), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(2363), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2371), 2, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + ACTIONS(2377), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2375), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, anon_sym_not, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [16564] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(921), 1, - sym_comment, - ACTIONS(897), 26, + ACTIONS(803), 30, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + 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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(895), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, + [17678] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2353), 1, + anon_sym_SLASH_SLASH, + STATE(931), 1, + sym_comment, + ACTIONS(2345), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + ACTIONS(2351), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2355), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [16634] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(922), 1, - sym_comment, - ACTIONS(881), 26, + ACTIONS(2349), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(803), 23, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -117368,18 +118258,11 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(879), 33, + ACTIONS(801), 26, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, anon_sym_LT2, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -117402,17 +118285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [16704] = 6, - ACTIONS(143), 1, + [17758] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(147), 1, - anon_sym_DOT_DOT, - STATE(923), 1, + STATE(932), 1, sym_comment, - ACTIONS(145), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 15, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -117423,12 +118301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_not, + anon_sym_DOT_DOT, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(851), 41, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -117455,6 +118334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -117470,19 +118351,26 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16778] = 4, - ACTIONS(143), 1, + [17828] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(924), 1, + STATE(933), 1, sym_comment, - ACTIONS(849), 16, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 14, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_not, @@ -117492,16 +118380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(851), 43, + ACTIONS(803), 39, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, 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, @@ -117536,78 +118420,90 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16848] = 4, - ACTIONS(143), 1, + [17904] = 16, + ACTIONS(145), 1, anon_sym_POUND, - STATE(925), 1, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + STATE(934), 1, sym_comment, - ACTIONS(115), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2341), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(113), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, + ACTIONS(2363), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(2369), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(2371), 2, anon_sym_mod, - anon_sym_PLUS, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - anon_sym_LT2, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, + ACTIONS(2375), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(803), 26, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [16918] = 4, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [17998] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(926), 1, + STATE(935), 1, sym_comment, - ACTIONS(895), 16, + ACTIONS(939), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -117624,7 +118520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(897), 43, + ACTIONS(941), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -117668,78 +118564,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [16988] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(927), 1, - sym_comment, - ACTIONS(893), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(891), 33, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [17058] = 4, - ACTIONS(143), 1, + [18068] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(928), 1, + STATE(936), 1, sym_comment, - ACTIONS(905), 26, + ACTIONS(883), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -117766,7 +118596,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(903), 33, + ACTIONS(881), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -117800,93 +118630,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [17128] = 36, - ACTIONS(143), 1, + [18138] = 32, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2335), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, - anon_sym__, - ACTIONS(2347), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2483), 1, - anon_sym_RBRACE, - STATE(98), 1, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + STATE(97), 1, sym_val_number, - STATE(929), 1, + STATE(937), 1, sym_comment, - STATE(951), 1, - aux_sym_ctrl_match_repeat1, - STATE(1681), 1, + STATE(1653), 1, sym__var, - STATE(1705), 1, + STATE(1773), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1807), 1, + sym__expression, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, sym__str_double_quotes, - STATE(2202), 1, - sym__expression, - STATE(2450), 1, - sym_match_arm, - STATE(3473), 1, - sym_match_pattern, - STATE(3474), 1, - sym__match_or_pattern, - STATE(3476), 1, - sym__match_list_destructure_pattern, - STATE(3514), 1, - sym_default_arm, - ACTIONS(2349), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + STATE(2703), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2321), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2323), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2417), 8, + aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -117898,12 +118724,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17262] = 4, - ACTIONS(143), 1, + [18264] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(930), 1, + STATE(938), 1, sym_comment, - ACTIONS(909), 26, + ACTIONS(831), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -117930,7 +118756,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(907), 33, + ACTIONS(829), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -117964,268 +118790,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [17332] = 32, - ACTIONS(3), 1, + [18334] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, + STATE(939), 1, + sym_comment, + ACTIONS(931), 16, anon_sym_DOLLAR, - ACTIONS(2379), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(845), 1, - sym__flag, - STATE(931), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1839), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2275), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2277), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, - 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, - [17458] = 32, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(933), 43, anon_sym_LBRACK, - ACTIONS(2373), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2381), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(844), 1, - sym__flag, - STATE(932), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1839), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2275), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2277), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_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_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [17584] = 32, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18404] = 32, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2397), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2399), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2403), 1, + anon_sym_DASH_DASH, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2407), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2421), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2425), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2427), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(102), 1, + STATE(97), 1, sym_val_number, - STATE(843), 1, + STATE(907), 1, sym__flag, - STATE(933), 1, + STATE(940), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1653), 1, sym__var, - STATE(1839), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1807), 1, sym__expression, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2023), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2275), 2, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2277), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(2387), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2423), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -118234,7 +118938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -118246,106 +118950,78 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [17710] = 32, - ACTIONS(3), 1, + [18530] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, - anon_sym_LPAREN, - ACTIONS(2375), 1, + STATE(941), 1, + sym_comment, + ACTIONS(927), 16, anon_sym_DOLLAR, - ACTIONS(2379), 1, + anon_sym_GT, anon_sym_DASH, - ACTIONS(2381), 1, - anon_sym_LBRACE, - ACTIONS(2383), 1, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_not, - ACTIONS(2395), 1, - anon_sym_DQUOTE, - ACTIONS(2399), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, - sym_val_number, - STATE(842), 1, - sym__flag, - STATE(934), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(1839), 1, - sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2275), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2277), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2397), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(929), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, - 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, - [17836] = 4, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18600] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(935), 1, + STATE(942), 1, sym_comment, - ACTIONS(911), 16, + ACTIONS(923), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -118362,7 +119038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(913), 43, + ACTIONS(925), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -118406,12 +119082,94 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [17906] = 4, - ACTIONS(143), 1, + [18670] = 20, + ACTIONS(145), 1, anon_sym_POUND, - STATE(936), 1, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + ACTIONS(2385), 1, + anon_sym_bit_DASHor, + ACTIONS(2387), 1, + anon_sym_and, + ACTIONS(2389), 1, + anon_sym_xor, + ACTIONS(2391), 1, + anon_sym_or, + STATE(943), 1, sym_comment, - ACTIONS(931), 16, + ACTIONS(2341), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2375), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2491), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2489), 22, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [18772] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(944), 1, + sym_comment, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, @@ -118428,7 +119186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(933), 43, + ACTIONS(831), 43, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_LPAREN, @@ -118472,78 +119230,255 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [17976] = 4, - ACTIONS(143), 1, + [18842] = 17, + ACTIONS(145), 1, anon_sym_POUND, - STATE(937), 1, + ACTIONS(2367), 1, + anon_sym_in, + ACTIONS(2381), 1, + anon_sym_bit_DASHand, + ACTIONS(2383), 1, + anon_sym_bit_DASHxor, + ACTIONS(2385), 1, + anon_sym_bit_DASHor, + STATE(945), 1, sym_comment, - ACTIONS(925), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(2341), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(2363), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(2365), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2369), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(2371), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(2373), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(2379), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2377), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(2375), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(801), 9, + anon_sym_DOLLAR, + anon_sym__, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(803), 25, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(923), 33, - sym_cmd_identifier, + [18938] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(946), 1, + sym_comment, + ACTIONS(829), 16, anon_sym_DOLLAR, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym__, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(831), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LT2, + 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_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [19008] = 36, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2435), 1, + anon_sym_LBRACK, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, + anon_sym_DASH, + ACTIONS(2443), 1, + anon_sym_LBRACE, + ACTIONS(2447), 1, + anon_sym__, + ACTIONS(2449), 1, anon_sym_not, + ACTIONS(2453), 1, anon_sym_DOT_DOT, + ACTIONS(2465), 1, + anon_sym_DQUOTE, + ACTIONS(2469), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2471), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2493), 1, + anon_sym_RBRACE, + STATE(100), 1, + sym_val_number, + STATE(947), 1, + sym_comment, + STATE(951), 1, + aux_sym_ctrl_match_repeat1, + STATE(1720), 1, + sym_expr_parenthesized, + STATE(1738), 1, + sym__var, + STATE(2043), 1, + sym__inter_single_quotes, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, + sym__str_double_quotes, + STATE(2183), 1, + sym__expression, + STATE(2464), 1, + sym_match_arm, + STATE(3468), 1, + sym__match_list_destructure_pattern, + STATE(3472), 1, + sym__match_or_pattern, + STATE(3478), 1, + sym_match_pattern, + STATE(3573), 1, + sym_default_arm, + ACTIONS(2451), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2455), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + ACTIONS(2467), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [18046] = 4, - ACTIONS(143), 1, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2461), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + STATE(2005), 11, + 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, + [19142] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(938), 1, + STATE(948), 1, sym_comment, - ACTIONS(929), 26, + ACTIONS(903), 26, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -118570,7 +119505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(927), 33, + ACTIONS(901), 33, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -118604,12 +119539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [18116] = 4, - ACTIONS(143), 1, + [19212] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(939), 1, + ACTIONS(149), 1, + anon_sym_DOT_DOT, + STATE(949), 1, sym_comment, - ACTIONS(929), 26, + ACTIONS(147), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(903), 24, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, @@ -118624,8 +119564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, @@ -118636,7 +119574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(927), 33, + ACTIONS(901), 32, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_GT, @@ -118644,119 +119582,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_LT2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [19286] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(950), 1, + sym_comment, + ACTIONS(913), 16, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym__, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + anon_sym_not, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(915), 43, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + 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_LT2, + 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_not, - anon_sym_DOT_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, 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, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [18186] = 36, - ACTIONS(143), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [19356] = 34, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2333), 1, + ACTIONS(2495), 1, anon_sym_LBRACK, - ACTIONS(2335), 1, + ACTIONS(2498), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2501), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2504), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2507), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, + ACTIONS(2510), 1, + anon_sym_RBRACE, + ACTIONS(2512), 1, anon_sym__, - ACTIONS(2347), 1, + ACTIONS(2514), 1, anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2520), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2538), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2544), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2547), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2485), 1, - anon_sym_RBRACE, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(929), 1, - aux_sym_ctrl_match_repeat1, - STATE(940), 1, - sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2202), 1, + STATE(2183), 1, sym__expression, - STATE(2450), 1, + STATE(2464), 1, sym_match_arm, + STATE(3468), 1, + sym__match_list_destructure_pattern, STATE(3472), 1, - sym_default_arm, - STATE(3473), 1, - sym_match_pattern, - STATE(3474), 1, sym__match_or_pattern, - STATE(3476), 1, - sym__match_list_destructure_pattern, - ACTIONS(2349), 2, + STATE(3478), 1, + sym_match_pattern, + ACTIONS(2517), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(2523), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2526), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, + ACTIONS(2529), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2541), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + STATE(951), 2, + sym_comment, + aux_sym_ctrl_match_repeat1, + ACTIONS(2535), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2532), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -118768,89 +119768,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18320] = 32, - ACTIONS(3), 1, + [19485] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2566), 1, + anon_sym_DOT_DOT, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2586), 1, sym_short_flag, - STATE(102), 1, + STATE(109), 1, sym_val_number, - STATE(848), 1, - sym__flag, - STATE(941), 1, + STATE(952), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1356), 1, + sym__flag, + STATE(1964), 1, sym__var, - STATE(1837), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2029), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2285), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -118862,89 +119858,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18446] = 32, - ACTIONS(3), 1, + [19607] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2566), 1, + anon_sym_DOT_DOT, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2586), 1, sym_short_flag, - STATE(102), 1, + STATE(109), 1, sym_val_number, - STATE(849), 1, - sym__flag, - STATE(942), 1, + STATE(953), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1345), 1, + sym__flag, + STATE(1964), 1, sym__var, - STATE(1837), 1, + STATE(1980), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2285), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -118956,155 +119948,265 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18572] = 4, - ACTIONS(143), 1, + [19729] = 32, + ACTIONS(145), 1, anon_sym_POUND, - STATE(943), 1, - sym_comment, - ACTIONS(887), 16, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - anon_sym_in, - anon_sym__, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2586), 1, + sym_short_flag, + STATE(109), 1, + sym_val_number, + STATE(954), 1, + sym_comment, + STATE(1343), 1, + sym__flag, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2047), 1, + sym__expression, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2570), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2572), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(889), 43, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2574), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [19851] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2550), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2552), 1, anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 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(2562), 1, + anon_sym_not, + ACTIONS(2566), 1, + anon_sym_DOT_DOT, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2586), 1, + sym_short_flag, + STATE(109), 1, + sym_val_number, + STATE(955), 1, + sym_comment, + STATE(1353), 1, + sym__flag, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2028), 1, + sym__expression, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [18642] = 32, - ACTIONS(3), 1, + STATE(2429), 11, + 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, + [19973] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2566), 1, + anon_sym_DOT_DOT, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2586), 1, sym_short_flag, - STATE(102), 1, + STATE(109), 1, sym_val_number, - STATE(827), 1, - sym__flag, - STATE(944), 1, + STATE(956), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1354), 1, + sym__flag, + STATE(1964), 1, sym__var, - STATE(1786), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2027), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2225), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2227), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119116,89 +120218,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18768] = 32, - ACTIONS(3), 1, + [20095] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2566), 1, + anon_sym_DOT_DOT, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, + ACTIONS(2586), 1, sym_short_flag, - STATE(102), 1, + STATE(109), 1, sym_val_number, - STATE(841), 1, - sym__flag, - STATE(945), 1, + STATE(957), 1, sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(1341), 1, + sym__flag, + STATE(1964), 1, sym__var, - STATE(1786), 1, + STATE(1975), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2225), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2227), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 8, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, - anon_sym_DASHinf, anon_sym_NaN, - STATE(2015), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119210,287 +120308,442 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [18894] = 4, - ACTIONS(143), 1, + [20217] = 32, + ACTIONS(145), 1, anon_sym_POUND, - STATE(946), 1, - sym_comment, - ACTIONS(859), 26, + ACTIONS(2550), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(2552), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(857), 33, - sym_cmd_identifier, + ACTIONS(2554), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2586), 1, + sym_short_flag, + STATE(109), 1, + sym_val_number, + STATE(958), 1, + sym_comment, + STATE(1352), 1, + sym__flag, + STATE(1964), 1, + sym__var, + STATE(1968), 1, + sym__expression, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2572), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [18964] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(947), 1, - sym_comment, - ACTIONS(105), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2574), 5, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(103), 33, - sym_cmd_identifier, + anon_sym_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [20339] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2556), 1, + anon_sym_DASH_DASH, + ACTIONS(2558), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2562), 1, anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2586), 1, + sym_short_flag, + STATE(109), 1, + sym_val_number, + STATE(959), 1, + sym_comment, + STATE(1347), 1, + sym__flag, + STATE(1964), 1, + sym__var, + STATE(1977), 1, + sym__expression, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2493), 1, + sym_long_flag, + ACTIONS(2564), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2568), 2, sym_val_nothing, + sym_val_date, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2572), 3, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, + anon_sym_DASHinf, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - [19034] = 4, - ACTIONS(143), 1, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2574), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [20461] = 32, + ACTIONS(145), 1, anon_sym_POUND, - STATE(948), 1, - sym_comment, - ACTIONS(921), 26, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(2592), 1, anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(2594), 1, + anon_sym_DOLLAR, + ACTIONS(2596), 1, + anon_sym_DASH, + ACTIONS(2598), 1, anon_sym_LBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2604), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(2622), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2624), 1, + anon_sym_DOLLAR_DQUOTE, + STATE(11), 1, + sym_val_number, + STATE(742), 1, + sym__var, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, + sym__expression, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(960), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + ACTIONS(2608), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2614), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(919), 33, + STATE(948), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(916), 11, + 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, + [20582] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2588), 1, sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - anon_sym_GT, + ACTIONS(2596), 1, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_LT2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2598), 1, + anon_sym_LBRACE, + ACTIONS(2600), 1, anon_sym_not, + ACTIONS(2604), 1, anon_sym_DOT_DOT, + ACTIONS(2606), 1, sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(2622), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2624), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2626), 1, + anon_sym_RBRACK, + STATE(11), 1, + sym_val_number, + STATE(742), 1, + sym__var, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, + sym__expression, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(961), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2614), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [19104] = 32, - ACTIONS(3), 1, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(916), 11, + 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, + [20703] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2604), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2403), 1, - sym_short_flag, - STATE(102), 1, + ACTIONS(2628), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(949), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(1837), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, sym__expression, - STATE(2023), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2683), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2285), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, + STATE(949), 1, + sym_expr_parenthesized, + STATE(962), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, + STATE(948), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119502,89 +120755,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19230] = 32, - ACTIONS(3), 1, + [20824] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2371), 1, - anon_sym_LBRACK, - ACTIONS(2373), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2375), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2381), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2383), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2395), 1, + ACTIONS(2604), 1, + anon_sym_DOT_DOT, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2399), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2401), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2405), 1, - anon_sym_DASH_DASH, - ACTIONS(2407), 1, - sym_short_flag, - STATE(102), 1, + ACTIONS(2630), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(850), 1, - sym__flag, - STATE(950), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(1837), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(774), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(1865), 1, - sym_long_flag, - STATE(2023), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2285), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, + STATE(949), 1, + sym_expr_parenthesized, + STATE(963), 1, + sym_comment, + STATE(968), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2397), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 8, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2015), 11, + STATE(948), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119592,94 +120842,89 @@ 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, - [19356] = 34, - ACTIONS(143), 1, + [20947] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2487), 1, - anon_sym_LBRACK, - ACTIONS(2490), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2493), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2496), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2499), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2502), 1, - anon_sym_RBRACE, - ACTIONS(2504), 1, - anon_sym__, - ACTIONS(2506), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2512), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2530), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2536), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2539), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - STATE(98), 1, + ACTIONS(2632), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(1681), 1, + STATE(742), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, - sym__inter_single_quotes, - STATE(2111), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2202), 1, + STATE(806), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(2450), 1, - sym_match_arm, - STATE(3473), 1, - sym_match_pattern, - STATE(3474), 1, - sym__match_or_pattern, - STATE(3476), 1, - sym__match_list_destructure_pattern, - ACTIONS(2509), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(964), 1, + sym_comment, + STATE(984), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2515), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2518), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2521), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2533), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(951), 2, - sym_comment, - aux_sym_ctrl_match_repeat1, - ACTIONS(2527), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2524), 6, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2081), 11, + STATE(948), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119687,89 +120932,89 @@ 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, - [19485] = 32, - ACTIONS(143), 1, + [21070] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2634), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(952), 1, - sym_comment, - STATE(1348), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2003), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(785), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(965), 1, + sym_comment, + STATE(971), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119777,89 +121022,87 @@ 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, - [19607] = 32, - ACTIONS(143), 1, + [21193] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2636), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(953), 1, - sym_comment, - STATE(1354), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2005), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(966), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119871,85 +121114,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19729] = 32, - ACTIONS(143), 1, + [21314] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2638), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(954), 1, - sym_comment, - STATE(1351), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2036), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(967), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -119961,85 +121203,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19851] = 32, - ACTIONS(143), 1, + [21435] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2640), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(955), 1, - sym_comment, - STATE(1346), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2037), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(968), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120051,85 +121292,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [19973] = 32, - ACTIONS(143), 1, + [21556] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2642), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(956), 1, - sym_comment, - STATE(1343), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1962), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(786), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(960), 1, + aux_sym_val_list_repeat1, + STATE(969), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120137,89 +121379,89 @@ 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, - [20095] = 32, - ACTIONS(143), 1, + [21679] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2644), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(957), 1, - sym_comment, - STATE(1344), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(1974), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(777), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(970), 1, + sym_comment, + STATE(993), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120227,89 +121469,87 @@ 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, - [20217] = 32, - ACTIONS(143), 1, + [21802] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2646), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(958), 1, - sym_comment, - STATE(1352), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2061), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(971), 1, + sym_comment, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120321,85 +121561,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20339] = 32, - ACTIONS(143), 1, + [21923] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2548), 1, - anon_sym_DASH_DASH, - ACTIONS(2550), 1, + ACTIONS(2588), 1, + sym_cmd_identifier, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2606), 1, + sym_val_nothing, + ACTIONS(2616), 1, + sym_val_date, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2578), 1, - sym_short_flag, - STATE(109), 1, + ACTIONS(2648), 1, + anon_sym_RBRACK, + ACTIONS(2650), 1, + anon_sym_DOLLAR, + STATE(11), 1, sym_val_number, - STATE(959), 1, - sym_comment, - STATE(1350), 1, - sym__flag, - STATE(1953), 1, + STATE(742), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(1999), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(776), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2491), 1, - sym_long_flag, - ACTIONS(2556), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(972), 1, + sym_comment, + STATE(975), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2572), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2568), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + ACTIONS(2610), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(2612), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120407,90 +121648,89 @@ 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, - [20461] = 33, - ACTIONS(143), 1, + [22046] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2584), 1, - anon_sym_RBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - STATE(10), 1, + ACTIONS(2652), 1, + anon_sym_RBRACK, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(788), 1, + STATE(805), 1, sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(960), 1, - sym_comment, - STATE(970), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(967), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(973), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120501,86 +121741,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [20584] = 33, - ACTIONS(143), 1, + [22169] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2588), 1, + ACTIONS(2594), 1, + anon_sym_DOLLAR, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2618), 1, + ACTIONS(2654), 1, anon_sym_RBRACK, - ACTIONS(2620), 1, - anon_sym_DOLLAR, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(782), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(961), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(974), 1, sym_comment, - STATE(984), 1, + STATE(980), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120588,89 +121826,88 @@ 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, - [20707] = 33, - ACTIONS(143), 1, + [22290] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2622), 1, + ACTIONS(2656), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(793), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(962), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(975), 1, sym_comment, - STATE(967), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120678,89 +121915,88 @@ 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, - [20830] = 33, - ACTIONS(143), 1, + [22411] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, - anon_sym_DOLLAR_DQUOTE, ACTIONS(2624), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2658), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(773), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(963), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(976), 1, sym_comment, - STATE(965), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120768,87 +122004,88 @@ 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, - [20953] = 32, - ACTIONS(143), 1, + [22532] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2626), 1, + ACTIONS(2660), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(964), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(977), 1, sym_comment, - STATE(983), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120860,84 +122097,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21074] = 32, - ACTIONS(143), 1, + [22653] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2628), 1, + ACTIONS(2662), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(807), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(965), 1, - sym_comment, - STATE(983), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(966), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(978), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -120945,90 +122184,89 @@ 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, - [21195] = 33, - ACTIONS(143), 1, + [22776] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2630), 1, + ACTIONS(2664), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(781), 1, + STATE(788), 1, sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(964), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(976), 1, aux_sym_val_list_repeat1, - STATE(966), 1, + STATE(979), 1, sym_comment, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121039,84 +122277,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21318] = 32, - ACTIONS(143), 1, + [22899] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2632), 1, + ACTIONS(2666), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(967), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(980), 1, sym_comment, - STATE(983), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121128,84 +122366,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [21439] = 32, - ACTIONS(143), 1, + [23020] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2634), 1, + ACTIONS(2668), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(775), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(968), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(981), 1, sym_comment, - STATE(983), 1, + STATE(982), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121213,90 +122453,87 @@ 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, - [21560] = 33, - ACTIONS(143), 1, + [23143] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2636), 1, + ACTIONS(2670), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(777), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(969), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(982), 1, sym_comment, - STATE(977), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121304,87 +122541,90 @@ 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, - [21683] = 32, - ACTIONS(143), 1, + [23264] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2638), 1, + ACTIONS(2672), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(809), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(970), 1, - sym_comment, - STATE(983), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(961), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(983), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121392,90 +122632,87 @@ 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, - [21804] = 33, - ACTIONS(143), 1, + [23387] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2640), 1, + ACTIONS(2674), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(774), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(971), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(984), 1, sym_comment, - STATE(985), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121483,87 +122720,90 @@ 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, - [21927] = 32, - ACTIONS(143), 1, + [23508] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2642), 1, + ACTIONS(2676), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(769), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(972), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(985), 1, sym_comment, - STATE(983), 1, + STATE(995), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121571,90 +122811,89 @@ 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, - [22048] = 33, - ACTIONS(143), 1, + [23631] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2644), 1, + ACTIONS(2678), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(771), 1, + STATE(773), 1, sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(973), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(986), 1, sym_comment, - STATE(989), 1, + STATE(987), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121665,84 +122904,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22171] = 32, - ACTIONS(143), 1, + [23754] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2646), 1, + ACTIONS(2680), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(974), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(987), 1, sym_comment, - STATE(983), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121754,86 +122993,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22292] = 33, - ACTIONS(143), 1, + [23875] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2648), 1, + ACTIONS(2682), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(789), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(972), 1, - aux_sym_val_list_repeat1, - STATE(975), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(988), 1, sym_comment, - ACTIONS(2594), 2, + STATE(994), 1, + aux_sym_val_list_repeat1, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121841,87 +123078,90 @@ 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, - [22415] = 32, - ACTIONS(143), 1, + [23996] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2650), 1, + ACTIONS(2648), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(776), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(976), 1, - sym_comment, - STATE(983), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(975), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(989), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -121929,88 +123169,89 @@ 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, - [22536] = 32, - ACTIONS(143), 1, + [24119] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2652), 1, + ACTIONS(2684), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(768), 1, + sym_val_list, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(977), 1, - sym_comment, - STATE(983), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(988), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(990), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122018,90 +123259,89 @@ 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, - [22657] = 33, - ACTIONS(143), 1, + [24242] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2654), 1, + ACTIONS(2686), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(766), 1, + STATE(778), 1, sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(974), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(962), 1, aux_sym_val_list_repeat1, - STATE(978), 1, + STATE(991), 1, sym_comment, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122112,86 +123352,86 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22780] = 33, - ACTIONS(143), 1, + [24365] = 33, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2618), 1, + ACTIONS(2688), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(782), 1, + STATE(787), 1, sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(979), 1, - sym_comment, - STATE(984), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(977), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(992), 1, + sym_comment, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 10, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122202,84 +123442,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [22903] = 32, - ACTIONS(143), 1, + [24488] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2656), 1, + ACTIONS(2690), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(980), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(993), 1, sym_comment, - STATE(983), 1, + STATE(994), 1, aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122291,86 +123531,83 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23024] = 33, - ACTIONS(143), 1, + [24609] = 31, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2692), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2695), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2698), 1, + anon_sym_RBRACK, + ACTIONS(2700), 1, + anon_sym_LPAREN, + ACTIONS(2703), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2706), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2709), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2712), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2718), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2721), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2736), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2745), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2658), 1, - anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(769), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(981), 1, - sym_comment, - STATE(991), 1, - aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + ACTIONS(2715), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2724), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2742), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + STATE(994), 2, + sym_comment, + aux_sym_val_list_repeat1, + ACTIONS(2733), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2727), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2730), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122378,87 +123615,88 @@ 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, - [23147] = 32, - ACTIONS(143), 1, + [24728] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2580), 1, + ACTIONS(2588), 1, sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(2590), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(2604), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(2606), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(2616), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2660), 1, + ACTIONS(2751), 1, anon_sym_RBRACK, - STATE(10), 1, + STATE(11), 1, sym_val_number, - STATE(737), 1, + STATE(742), 1, sym__var, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(909), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(968), 1, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(994), 1, aux_sym_val_list_repeat1, - STATE(982), 1, + STATE(995), 1, sym_comment, - ACTIONS(2594), 2, + ACTIONS(2602), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(2610), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(2612), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122470,83 +123708,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23268] = 31, - ACTIONS(143), 1, + [24849] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2662), 1, - sym_cmd_identifier, - ACTIONS(2665), 1, - anon_sym_LBRACK, - ACTIONS(2668), 1, - anon_sym_RBRACK, - ACTIONS(2670), 1, - anon_sym_LPAREN, - ACTIONS(2673), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2676), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2679), 1, - anon_sym_LBRACE, - ACTIONS(2682), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(2688), 1, - anon_sym_DOT_DOT, - ACTIONS(2691), 1, - sym_val_nothing, - ACTIONS(2706), 1, - sym_val_date, - ACTIONS(2709), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2715), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2718), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - STATE(10), 1, + ACTIONS(2769), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(737), 1, + STATE(290), 1, sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, - sym__expression, - STATE(938), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(939), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(422), 1, sym__inter_single_quotes, - ACTIONS(2685), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2694), 2, + STATE(431), 1, + sym__expression, + STATE(436), 1, + sym_unquoted, + STATE(449), 1, + sym__str_double_quotes, + STATE(996), 1, + sym_comment, + ACTIONS(1589), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2712), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(983), 2, - sym_comment, - aux_sym_val_list_repeat1, - ACTIONS(2703), 3, + ACTIONS(1587), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2697), 4, + STATE(406), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2700), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(947), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122558,86 +123793,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23387] = 32, - ACTIONS(143), 1, + [24963] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2721), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(737), 1, + STATE(997), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(758), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, - sym__expression, - STATE(938), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(939), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(984), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(2254), 1, + sym__expression, + STATE(2970), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -122647,86 +123881,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23508] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [25083] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2723), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(998), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2343), 1, sym__expression, - STATE(938), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(985), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(3110), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -122736,84 +123969,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23629] = 32, - ACTIONS(143), 1, + [25203] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2596), 1, - anon_sym_DOT_DOT, - ACTIONS(2598), 1, - sym_val_nothing, - ACTIONS(2608), 1, - sym_val_date, - ACTIONS(2610), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2725), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(737), 1, + STATE(999), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(758), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2223), 1, sym__expression, - STATE(938), 1, + STATE(2227), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(939), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(986), 1, - sym_comment, - ACTIONS(2594), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2604), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(947), 11, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122825,86 +124054,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [23750] = 33, - ACTIONS(143), 1, + [25317] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2596), 1, - anon_sym_DOT_DOT, - ACTIONS(2598), 1, - sym_val_nothing, - ACTIONS(2608), 1, - sym_val_date, - ACTIONS(2610), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2727), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(737), 1, + STATE(1000), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(758), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(798), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2199), 1, sym__expression, - STATE(938), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(939), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(986), 1, - aux_sym_val_list_repeat1, - STATE(987), 1, - sym_comment, - ACTIONS(2594), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + STATE(2261), 1, + sym_unquoted, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2604), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(947), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -122912,89 +124135,84 @@ 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, - [23873] = 33, - ACTIONS(143), 1, + [25431] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2596), 1, - anon_sym_DOT_DOT, - ACTIONS(2598), 1, - sym_val_nothing, - ACTIONS(2608), 1, - sym_val_date, - ACTIONS(2610), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2729), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(737), 1, + STATE(1001), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(758), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(775), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2194), 1, sym__expression, - STATE(938), 1, + STATE(2198), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(939), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(988), 1, - sym_comment, - STATE(992), 1, - aux_sym_val_list_repeat1, - ACTIONS(2594), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(2604), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(947), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -123002,89 +124220,89 @@ 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, - [23996] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [25545] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2731), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1002), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2345), 1, sym__expression, - STATE(938), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(989), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(3111), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -123094,176 +124312,173 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24117] = 33, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [25665] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2733), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1003), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(805), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2348), 1, sym__expression, - STATE(938), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(990), 1, - sym_comment, - STATE(995), 1, - aux_sym_val_list_repeat1, - ACTIONS(2594), 2, + STATE(3114), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(2321), 10, 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, - [24240] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [25785] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2735), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1004), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2352), 1, sym__expression, - STATE(938), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(991), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(3115), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -123273,86 +124488,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24361] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [25905] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2737), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1005), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2355), 1, sym__expression, - STATE(938), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(992), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(3132), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -123362,266 +124576,261 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24482] = 33, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [26025] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2739), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1006), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(792), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, - sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(976), 1, - aux_sym_val_list_repeat1, - STATE(993), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2375), 1, + sym__expression, + STATE(3135), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(2321), 10, 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, - [24605] = 33, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [26145] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2741), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1007), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(780), 1, - sym_val_list, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, - sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(980), 1, - aux_sym_val_list_repeat1, - STATE(994), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2413), 1, + sym__expression, + STATE(3137), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 10, + STATE(2321), 10, 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, - [24728] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_cmd_identifier, - ACTIONS(2582), 1, + [26265] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2596), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(2598), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(2608), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2610), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2743), 1, - anon_sym_RBRACK, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, + STATE(1008), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(758), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(916), 1, - sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(983), 1, - aux_sym_val_list_repeat1, - STATE(995), 1, - sym_comment, - ACTIONS(2594), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2417), 1, + sym__expression, + STATE(3144), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2600), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2602), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2604), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -123631,72 +124840,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24849] = 29, + [26385] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(239), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(106), 1, sym_val_number, - STATE(298), 1, + STATE(1009), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(397), 1, - sym_unquoted, - STATE(401), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, + STATE(2191), 1, + sym__expression, + STATE(2193), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(449), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(460), 1, - sym__expression, - STATE(996), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(233), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(231), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -123704,7 +124913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -123716,7 +124925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [24963] = 32, + [26499] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -123739,31 +124948,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(997), 1, + STATE(1010), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2394), 1, + STATE(2323), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3179), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3087), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -123788,12 +124997,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -123804,72 +125013,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25083] = 29, + [26619] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(239), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(106), 1, sym_val_number, - STATE(266), 1, + STATE(1011), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(341), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(358), 1, + STATE(2185), 1, + sym__expression, + STATE(2190), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(359), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(379), 1, - sym_unquoted, - STATE(380), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(998), 1, - sym_comment, - ACTIONS(1374), 2, + ACTIONS(233), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(231), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -123877,7 +125086,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -123889,72 +125098,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25197] = 29, + [26733] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(239), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(106), 1, sym_val_number, - STATE(266), 1, + STATE(1012), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(341), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(358), 1, + STATE(2182), 1, + sym__expression, + STATE(2184), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(359), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(381), 1, - sym_unquoted, - STATE(382), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(999), 1, - sym_comment, - ACTIONS(1374), 2, + ACTIONS(233), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(231), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -123962,7 +125171,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -123974,85 +125183,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25311] = 32, - ACTIONS(31), 1, + [26847] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1000), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(128), 1, sym__var, - STATE(2315), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, + sym_expr_parenthesized, + STATE(240), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2325), 1, + STATE(251), 1, + sym_unquoted, + STATE(254), 1, sym__expression, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3270), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1013), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124062,85 +125268,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25431] = 32, - ACTIONS(31), 1, + [26961] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1001), 1, + STATE(1014), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2180), 1, + sym__expression, + STATE(2181), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2328), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3271), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124150,85 +125353,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25551] = 32, - ACTIONS(31), 1, + [27075] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1002), 1, + STATE(1015), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2330), 1, - sym__expression, - STATE(2404), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(3279), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(2178), 1, + sym__expression, + STATE(2179), 1, + sym_unquoted, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124238,85 +125438,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25671] = 32, - ACTIONS(31), 1, + [27189] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1003), 1, + STATE(1016), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2168), 1, + sym__expression, + STATE(2177), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2332), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3281), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124326,72 +125523,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25791] = 29, + [27303] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(239), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2775), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(106), 1, sym_val_number, - STATE(266), 1, + STATE(1017), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(341), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(358), 1, + STATE(2166), 1, + sym__expression, + STATE(2167), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(359), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(383), 1, - sym_unquoted, - STATE(384), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1004), 1, - sym_comment, - ACTIONS(1374), 2, + ACTIONS(233), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(231), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -124399,7 +125596,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(2253), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -124411,7 +125608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [25905] = 32, + [27417] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -124434,31 +125631,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1005), 1, + STATE(1018), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2338), 1, + STATE(2304), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3282), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3270), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -124483,12 +125680,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -124499,85 +125696,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26025] = 32, - ACTIONS(31), 1, + [27537] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1006), 1, + STATE(1019), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2160), 1, + sym__expression, + STATE(2161), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2342), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3283), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124587,7 +125781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26145] = 32, + [27651] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -124610,31 +125804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1007), 1, + STATE(1020), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2350), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3285), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3084), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -124659,12 +125853,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -124675,85 +125869,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26265] = 32, - ACTIONS(31), 1, + [27771] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1008), 1, + STATE(1021), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2157), 1, + sym__expression, + STATE(2158), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2352), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3286), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124763,7 +125954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26385] = 32, + [27885] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -124786,31 +125977,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1009), 1, + STATE(1022), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2354), 1, + STATE(2281), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3287), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3148), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -124835,12 +126026,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -124851,85 +126042,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26505] = 32, - ACTIONS(31), 1, + [28005] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(239), 1, + anon_sym_DASHinf, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2775), 1, + aux_sym_unquoted_token1, + STATE(106), 1, sym_val_number, - STATE(1010), 1, + STATE(1023), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2154), 1, + sym__expression, + STATE(2155), 1, + sym_unquoted, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2355), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3288), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(233), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(231), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(237), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2253), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -124939,7 +126127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26625] = 32, + [28119] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -124962,31 +126150,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1011), 1, + STATE(1024), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2358), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3290), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3083), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -125011,12 +126199,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -125027,7 +126215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26745] = 32, + [28239] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -125050,31 +126238,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1012), 1, + STATE(1025), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2359), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2415), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3291), 1, + STATE(3155), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -125099,12 +126287,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -125115,7 +126303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26865] = 32, + [28359] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -125138,31 +126326,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1013), 1, + STATE(1026), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2361), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2412), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3292), 1, + STATE(3169), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -125187,12 +126375,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -125203,72 +126391,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [26985] = 29, + [28479] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, + anon_sym_DASH, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(2821), 1, + anon_sym_not, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(2), 1, sym_val_number, - STATE(266), 1, + STATE(110), 1, sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(359), 1, + STATE(163), 1, sym__inter_single_quotes, - STATE(385), 1, - sym_unquoted, - STATE(386), 1, - sym__expression, - STATE(395), 1, + STATE(185), 1, sym_expr_parenthesized, - STATE(1014), 1, + STATE(190), 1, + sym__str_double_quotes, + STATE(193), 1, + sym__expression, + STATE(194), 1, + sym_unquoted, + STATE(1027), 1, sym_comment, - ACTIONS(1374), 2, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -125276,7 +126464,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -125288,160 +126476,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27099] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1015), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2279), 1, - sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3293), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [27219] = 29, + [28593] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(2787), 1, + anon_sym_not, + ACTIONS(2797), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(2809), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(5), 1, sym_val_number, - STATE(1016), 1, - sym_comment, - STATE(1953), 1, + STATE(128), 1, sym__var, - STATE(1968), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(221), 1, + sym_unquoted, + STATE(223), 1, + sym__expression, + STATE(224), 1, sym_expr_parenthesized, - STATE(2428), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(2430), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2455), 1, - sym__expression, - STATE(2456), 1, - sym_unquoted, - STATE(2463), 1, - sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(1028), 1, + sym_comment, + ACTIONS(2791), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(2803), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2789), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -125449,7 +126549,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -125461,261 +126561,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27333] = 32, - ACTIONS(31), 1, + [28707] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1017), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(128), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2368), 1, - sym__expression, - STATE(2404), 1, + STATE(211), 1, sym__str_double_quotes, - STATE(3294), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [27453] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1018), 1, - sym_comment, - STATE(1871), 1, + STATE(224), 1, sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2315), 1, + STATE(225), 1, + sym_unquoted, + STATE(229), 1, + sym__expression, + STATE(240), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2370), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3296), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1029), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, - 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, - [27573] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1019), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2371), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3297), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -125725,7 +126646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27693] = 32, + [28821] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -125748,31 +126669,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1020), 1, + STATE(1030), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2374), 1, + STATE(2311), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3298), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3080), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -125797,12 +126718,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -125813,85 +126734,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27813] = 32, - ACTIONS(31), 1, + [28941] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1021), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(128), 1, sym__var, - STATE(2315), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, + sym_expr_parenthesized, + STATE(231), 1, + sym_unquoted, + STATE(240), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2375), 1, + STATE(244), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3300), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1031), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -125901,85 +126819,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27933] = 32, - ACTIONS(31), 1, + [29055] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1022), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(128), 1, sym__var, - STATE(2315), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, + sym_expr_parenthesized, + STATE(240), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2376), 1, + STATE(245), 1, + sym_unquoted, + STATE(247), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3303), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1032), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -125989,72 +126904,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28053] = 29, + [29169] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(2787), 1, + anon_sym_not, + ACTIONS(2797), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(2809), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(5), 1, sym_val_number, - STATE(1023), 1, - sym_comment, - STATE(1953), 1, + STATE(128), 1, sym__var, - STATE(1968), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, sym_expr_parenthesized, - STATE(2428), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(2430), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2458), 1, - sym__expression, - STATE(2459), 1, + STATE(248), 1, sym_unquoted, - STATE(2463), 1, - sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(259), 1, + sym__expression, + STATE(1033), 1, + sym_comment, + ACTIONS(2791), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(2803), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2789), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -126062,7 +126977,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -126074,72 +126989,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28167] = 29, + [29283] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(2787), 1, + anon_sym_not, + ACTIONS(2797), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(2809), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(5), 1, sym_val_number, - STATE(1024), 1, - sym_comment, - STATE(1953), 1, + STATE(128), 1, sym__var, - STATE(1968), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, sym_expr_parenthesized, - STATE(2428), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(2430), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2464), 1, + STATE(253), 1, sym__expression, - STATE(2467), 1, + STATE(258), 1, sym_unquoted, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(1034), 1, + sym_comment, + ACTIONS(2791), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(2803), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2789), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -126147,7 +127062,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -126159,72 +127074,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28281] = 29, + [29397] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(2787), 1, + anon_sym_not, + ACTIONS(2797), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(2809), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(5), 1, sym_val_number, - STATE(1025), 1, - sym_comment, - STATE(1953), 1, + STATE(128), 1, sym__var, - STATE(1968), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, sym_expr_parenthesized, - STATE(2428), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(2430), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2469), 1, + STATE(243), 1, sym__expression, - STATE(2470), 1, + STATE(252), 1, sym_unquoted, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(1035), 1, + sym_comment, + ACTIONS(2791), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(2803), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2789), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -126232,7 +127147,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -126244,7 +127159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28395] = 32, + [29511] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126267,31 +127182,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1026), 1, + STATE(1036), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2379), 1, + STATE(2357), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3304), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3333), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126316,12 +127231,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126332,7 +127247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28515] = 32, + [29631] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126355,31 +127270,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1027), 1, + STATE(1037), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2380), 1, + STATE(2356), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3305), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3329), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126404,12 +127319,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126420,82 +127335,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28635] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2542), 1, + [29751] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, - anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, - aux_sym_unquoted_token1, - STATE(109), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1028), 1, + STATE(1038), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2451), 1, - sym_unquoted, - STATE(2463), 1, + STATE(1931), 1, + sym__var, + STATE(2327), 1, sym__str_double_quotes, - STATE(2471), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2349), 1, sym__expression, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2787), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2558), 3, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3328), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2564), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -126505,82 +127423,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28749] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2542), 1, + [29871] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, - anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, - aux_sym_unquoted_token1, - STATE(109), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1029), 1, + STATE(1039), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2463), 1, + STATE(1931), 1, + sym__var, + STATE(2327), 1, sym__str_double_quotes, - STATE(2476), 1, - sym_unquoted, - STATE(2480), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2347), 1, sym__expression, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2787), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2558), 3, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3326), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2564), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -126590,7 +127511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28863] = 32, + [29991] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126613,31 +127534,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1030), 1, + STATE(1040), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2381), 1, + STATE(2342), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3311), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3078), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126662,12 +127583,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126678,7 +127599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [28983] = 32, + [30111] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126701,31 +127622,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1031), 1, + STATE(1041), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2382), 1, + STATE(2301), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3312), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3131), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126750,12 +127671,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126766,7 +127687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29103] = 32, + [30231] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126789,31 +127710,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1032), 1, + STATE(1042), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2383), 1, + STATE(2288), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3313), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3142), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126838,12 +127759,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126854,7 +127775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29223] = 32, + [30351] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126877,31 +127798,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1033), 1, + STATE(1043), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2401), 1, + STATE(2341), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3280), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3320), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -126926,12 +127847,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -126942,7 +127863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29343] = 32, + [30471] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -126965,31 +127886,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1034), 1, + STATE(1044), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2388), 1, + STATE(2303), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3315), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3318), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127014,12 +127935,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -127030,82 +127951,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29463] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + [30591] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(266), 1, + STATE(1045), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(341), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(387), 1, - sym_unquoted, - STATE(389), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2402), 1, sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1035), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, + STATE(3307), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1378), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(361), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -127115,82 +128039,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29577] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2791), 1, + [30711] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, - anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2811), 1, - anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, - aux_sym_unquoted_token1, - STATE(101), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1036), 1, + STATE(1046), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1985), 1, + STATE(1931), 1, + sym__var, + STATE(2285), 1, sym__expression, - STATE(1986), 1, - sym_unquoted, - STATE(2038), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(2331), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2807), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3303), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2809), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2115), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -127200,72 +128127,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29691] = 29, + [30831] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2811), 1, - anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(10), 1, sym_val_number, - STATE(1037), 1, - sym_comment, - STATE(1667), 1, + STATE(734), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(1987), 1, + STATE(829), 1, sym__expression, - STATE(1988), 1, + STATE(830), 1, sym_unquoted, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(851), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(950), 1, + sym__str_double_quotes, + STATE(1047), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -127273,7 +128200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -127285,7 +128212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29805] = 32, + [30945] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -127308,31 +128235,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1038), 1, + STATE(1048), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2402), 1, + STATE(2297), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3278), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3302), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127357,12 +128284,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -127373,7 +128300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [29925] = 32, + [31065] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -127396,31 +128323,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1039), 1, + STATE(1049), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2403), 1, + STATE(2294), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3275), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3287), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127445,12 +128372,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -127461,7 +128388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30045] = 32, + [31185] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -127484,31 +128411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1040), 1, + STATE(1050), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, + STATE(2300), 1, + sym__expression, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2405), 1, - sym__expression, - STATE(3267), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3295), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127533,183 +128460,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [30165] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, - anon_sym_LBRACK, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, - sym_val_number, - STATE(266), 1, - sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(390), 1, - sym_unquoted, - STATE(391), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1041), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2775), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(396), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1378), 7, - aux_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_inf, - anon_sym_NaN, - STATE(361), 11, - 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, - [30279] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, - anon_sym_LBRACK, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, - sym_val_number, - STATE(266), 1, - sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(392), 1, - sym_unquoted, - STATE(393), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1042), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2775), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(396), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, - aux_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_inf, - anon_sym_NaN, - STATE(361), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -127719,7 +128476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30393] = 32, + [31305] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -127742,31 +128499,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1043), 1, + STATE(1051), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2284), 1, + sym__expression, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2327), 1, + STATE(2336), 1, sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(2410), 1, - sym__expression, - STATE(3266), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3286), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127791,12 +128548,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -127807,7 +128564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30513] = 32, + [31425] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -127830,31 +128587,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1044), 1, + STATE(1052), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2411), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2394), 1, sym__expression, - STATE(3265), 1, + STATE(3149), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -127879,12 +128636,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -127895,72 +128652,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30633] = 29, + [31545] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2811), 1, - anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(10), 1, sym_val_number, - STATE(1045), 1, - sym_comment, - STATE(1667), 1, + STATE(734), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(1989), 1, + STATE(827), 1, sym__expression, - STATE(1990), 1, + STATE(828), 1, sym_unquoted, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(851), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(950), 1, + sym__str_double_quotes, + STATE(1053), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -127968,7 +128725,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -127980,72 +128737,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30747] = 29, + [31659] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(5), 1, + STATE(10), 1, sym_val_number, - STATE(125), 1, + STATE(734), 1, sym__var, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(244), 1, + STATE(825), 1, sym__expression, - STATE(245), 1, + STATE(826), 1, sym_unquoted, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(1046), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(950), 1, + sym__str_double_quotes, + STATE(1054), 1, sym_comment, - ACTIONS(2839), 2, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2841), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -128053,7 +128810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(260), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -128065,167 +128822,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [30861] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, + [31773] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(125), 1, - sym__var, - STATE(226), 1, + STATE(1055), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(241), 1, + STATE(1931), 1, + sym__var, + STATE(2286), 1, sym__expression, - STATE(242), 1, - sym_unquoted, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1047), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3285), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2843), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(260), 11, - 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, - [30975] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, - anon_sym_DASH, - ACTIONS(2833), 1, - anon_sym_LBRACE, - ACTIONS(2835), 1, - anon_sym_not, - ACTIONS(2845), 1, anon_sym_DASHinf, - ACTIONS(2849), 1, - anon_sym_DQUOTE, - ACTIONS(2853), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, - sym_val_number, - STATE(125), 1, - sym__var, - STATE(223), 1, - sym__expression, - STATE(224), 1, - sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1048), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(225), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, - aux_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_inf, - anon_sym_NaN, - STATE(260), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128235,82 +128910,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31089] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, + [31893] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(125), 1, + STATE(1056), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(220), 1, + STATE(2291), 1, sym__expression, - STATE(222), 1, - sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1049), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3261), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2843), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(260), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128320,7 +128998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31203] = 32, + [32013] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -128343,31 +129021,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1050), 1, + STATE(1057), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, + STATE(2299), 1, + sym__expression, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2413), 1, - sym__expression, - STATE(3263), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3281), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -128392,12 +129070,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -128408,82 +129086,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31323] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, + [32133] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(125), 1, + STATE(1058), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(217), 1, + STATE(2302), 1, sym__expression, - STATE(218), 1, - sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1051), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3275), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2843), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(260), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128493,72 +129174,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31437] = 29, + [32253] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(5), 1, + STATE(10), 1, sym_val_number, - STATE(125), 1, + STATE(734), 1, sym__var, - STATE(214), 1, + STATE(851), 1, + sym__inter_single_quotes, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(945), 1, sym__expression, - STATE(215), 1, + STATE(946), 1, sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, + STATE(950), 1, sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1052), 1, + STATE(1059), 1, sym_comment, - ACTIONS(2839), 2, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2841), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -128566,7 +129247,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(260), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -128578,9 +129259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31551] = 29, - ACTIONS(3), 1, - anon_sym_POUND, + [32367] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -128591,69 +129270,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(75), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1053), 1, + STATE(1060), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2378), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2416), 1, sym__expression, - STATE(2385), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, + STATE(3265), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(83), 2, anon_sym_true, anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128663,9 +129347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31665] = 29, - ACTIONS(3), 1, - anon_sym_POUND, + [32487] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -128676,154 +129358,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(75), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1054), 1, + STATE(1061), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2372), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2406), 1, sym__expression, - STATE(2373), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, + STATE(3154), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(83), 2, anon_sym_true, anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, - 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, - [31779] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, - anon_sym_DASH, - ACTIONS(2833), 1, - anon_sym_LBRACE, - ACTIONS(2835), 1, - anon_sym_not, - ACTIONS(2845), 1, anon_sym_DASHinf, - ACTIONS(2849), 1, - anon_sym_DQUOTE, - ACTIONS(2853), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, - sym_val_number, - STATE(125), 1, - sym__var, - STATE(205), 1, - sym__expression, - STATE(213), 1, - sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1055), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(225), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, - aux_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_inf, - anon_sym_NaN, - STATE(260), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128833,9 +129435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [31893] = 29, - ACTIONS(3), 1, - anon_sym_POUND, + [32607] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -128846,69 +129446,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(75), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1056), 1, + STATE(1062), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2351), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2344), 1, sym__expression, - STATE(2356), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3269), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(83), 2, anon_sym_true, anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -128918,7 +129523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32007] = 32, + [32727] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -128941,31 +129546,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1057), 1, + STATE(1063), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2418), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2350), 1, sym__expression, - STATE(3262), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3264), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -128990,12 +129595,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -129006,72 +129611,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32127] = 29, + [32847] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(5), 1, + STATE(10), 1, sym_val_number, - STATE(125), 1, + STATE(734), 1, sym__var, - STATE(210), 1, + STATE(851), 1, + sym__inter_single_quotes, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(934), 1, sym__expression, - STATE(212), 1, + STATE(944), 1, sym_unquoted, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, + STATE(950), 1, sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1058), 1, + STATE(1064), 1, sym_comment, - ACTIONS(2839), 2, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2841), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -129079,7 +129684,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(260), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -129091,167 +129696,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32241] = 29, - ACTIONS(3), 1, + [32961] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2825), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(125), 1, - sym__var, - STATE(208), 1, - sym__expression, - STATE(209), 1, - sym_unquoted, - STATE(226), 1, + STATE(1065), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(227), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(256), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2195), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(257), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1059), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, + STATE(3044), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2843), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(260), 11, - 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, - [32355] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, - anon_sym_DASH, - ACTIONS(2833), 1, - anon_sym_LBRACE, - ACTIONS(2835), 1, - anon_sym_not, - ACTIONS(2845), 1, anon_sym_DASHinf, - ACTIONS(2849), 1, - anon_sym_DQUOTE, - ACTIONS(2853), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, - sym_val_number, - STATE(125), 1, - sym__var, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(251), 1, - sym__expression, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(258), 1, - sym_unquoted, - STATE(1060), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(225), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, - aux_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_inf, - anon_sym_NaN, - STATE(260), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -129261,7 +129784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32469] = 32, + [33081] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -129284,31 +129807,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1061), 1, + STATE(1066), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2421), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2353), 1, sym__expression, - STATE(3260), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3162), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -129333,98 +129856,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [32589] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, - anon_sym_DASH, - ACTIONS(2833), 1, - anon_sym_LBRACE, - ACTIONS(2835), 1, - anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, - anon_sym_DQUOTE, - ACTIONS(2853), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, - sym_val_number, - STATE(125), 1, - sym__var, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(248), 1, - sym__expression, - STATE(249), 1, - sym_unquoted, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1062), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(225), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, - aux_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_inf, - anon_sym_NaN, - STATE(260), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -129434,7 +129872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32703] = 32, + [33201] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -129457,31 +129895,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1063), 1, + STATE(1067), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2420), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2359), 1, sym__expression, - STATE(3259), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3250), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -129506,12 +129944,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -129522,7 +129960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32823] = 32, + [33321] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -129545,31 +129983,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1064), 1, + STATE(1068), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2419), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2361), 1, sym__expression, - STATE(3257), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3173), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -129594,12 +130032,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -129610,7 +130048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [32943] = 32, + [33441] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -129633,31 +130071,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1065), 1, + STATE(1069), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2417), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2364), 1, sym__expression, - STATE(3255), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3296), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -129682,12 +130120,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -129698,9 +130136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33063] = 29, - ACTIONS(3), 1, - anon_sym_POUND, + [33561] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -129711,69 +130147,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(75), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, ACTIONS(93), 1, anon_sym_DQUOTE, ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1066), 1, + STATE(1070), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2348), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2368), 1, sym__expression, - STATE(2349), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3168), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(83), 2, anon_sym_true, anon_sym_false, ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -129783,82 +130224,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33177] = 29, - ACTIONS(3), 1, + [33681] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2825), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2835), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(125), 1, - sym__var, - STATE(206), 1, - sym__expression, - STATE(226), 1, + STATE(1071), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(227), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(246), 1, - sym_unquoted, - STATE(256), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2196), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(257), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1067), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, + STATE(3043), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2851), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2843), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(260), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -129868,167 +130312,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33291] = 29, - ACTIONS(3), 1, + [33801] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1068), 1, + STATE(1072), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2197), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2346), 1, - sym__expression, - STATE(2347), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(83), 2, + STATE(3035), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, - 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, - [33405] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, - anon_sym_LBRACK, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2771), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, - sym_val_number, - STATE(266), 1, - sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(377), 1, - sym_unquoted, - STATE(378), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1069), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2775), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(396), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, - aux_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_inf, - anon_sym_NaN, - STATE(361), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -130038,72 +130400,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33519] = 29, + [33921] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2241), 1, + ACTIONS(2851), 1, + anon_sym_LBRACE, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, - anon_sym_LBRACE, - ACTIONS(2867), 1, - anon_sym_DASHinf, - ACTIONS(2869), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(10), 1, sym_val_number, - STATE(1070), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(734), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(1883), 1, - sym_unquoted, - STATE(1884), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(912), 1, sym__expression, - ACTIONS(2245), 2, + STATE(913), 1, + sym_unquoted, + STATE(950), 1, + sym__str_double_quotes, + STATE(1073), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130111,7 +130473,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130123,72 +130485,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33633] = 29, + [34035] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(10), 1, sym_val_number, - STATE(1071), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(734), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2344), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(901), 1, sym__expression, - STATE(2345), 1, + STATE(911), 1, sym_unquoted, - STATE(2404), 1, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(81), 2, + STATE(1074), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130196,7 +130558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130208,82 +130570,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33747] = 29, - ACTIONS(3), 1, + [34149] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1072), 1, + STATE(1075), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2202), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2339), 1, - sym__expression, - STATE(2341), 1, - sym_unquoted, - STATE(2404), 1, - sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(83), 2, + STATE(3034), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(85), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2408), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -130293,72 +130658,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33861] = 29, + [34269] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2853), 1, + anon_sym_not, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(10), 1, sym_val_number, - STATE(1073), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(734), 1, sym__var, - STATE(2021), 1, - sym_unquoted, - STATE(2022), 1, - sym__expression, - STATE(2023), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(853), 1, sym__inter_double_quotes, - STATE(2097), 1, + STATE(882), 1, + sym__expression, + STATE(885), 1, + sym_unquoted, + STATE(899), 1, + sym_expr_parenthesized, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(2387), 2, + STATE(1076), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130366,7 +130731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130378,72 +130743,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33975] = 29, + [34383] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2853), 1, + anon_sym_not, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(10), 1, sym_val_number, - STATE(1074), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(734), 1, sym__var, - STATE(2002), 1, + STATE(816), 1, sym_unquoted, - STATE(2023), 1, + STATE(817), 1, + sym__expression, + STATE(851), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(853), 1, sym__inter_double_quotes, - STATE(2029), 1, - sym__expression, - STATE(2097), 1, + STATE(899), 1, + sym_expr_parenthesized, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(2387), 2, + STATE(1077), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130451,7 +130816,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130463,72 +130828,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34089] = 29, + [34497] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2853), 1, + anon_sym_not, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(10), 1, sym_val_number, - STATE(1075), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(734), 1, sym__var, - STATE(2023), 1, + STATE(818), 1, + sym_unquoted, + STATE(851), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(853), 1, sym__inter_double_quotes, - STATE(2046), 1, - sym_unquoted, - STATE(2053), 1, + STATE(899), 1, + sym_expr_parenthesized, + STATE(933), 1, sym__expression, - STATE(2097), 1, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(2387), 2, + STATE(1078), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130536,7 +130901,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130548,160 +130913,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34203] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1076), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(2409), 1, - sym__expression, - STATE(3248), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [34323] = 29, + [34611] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(10), 1, sym_val_number, - STATE(1077), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(734), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2335), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(930), 1, sym__expression, - STATE(2336), 1, + STATE(932), 1, sym_unquoted, - STATE(2404), 1, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(81), 2, + STATE(1079), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130709,7 +130986,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130721,160 +130998,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34437] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1078), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2400), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3247), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [34557] = 29, + [34725] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2219), 1, + anon_sym_DASHinf, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2851), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2853), 1, anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2871), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(10), 1, sym_val_number, - STATE(1079), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(734), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2331), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(928), 1, sym__expression, - STATE(2334), 1, + STATE(929), 1, sym_unquoted, - STATE(2404), 1, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(81), 2, + STATE(1080), 1, + sym_comment, + ACTIONS(2857), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2855), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -130882,7 +131071,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -130894,173 +131083,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34671] = 32, - 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(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(97), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + [34839] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, - sym_val_number, - STATE(1080), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, - sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2399), 1, - sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3246), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(89), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(85), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, + ACTIONS(2215), 1, + anon_sym_LPAREN, + ACTIONS(2219), 1, anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [34791] = 32, - ACTIONS(31), 1, + ACTIONS(2845), 1, anon_sym_LBRACK, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2847), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2851), 1, + anon_sym_LBRACE, + ACTIONS(2853), 1, + anon_sym_not, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2871), 1, + aux_sym_unquoted_token1, + STATE(10), 1, sym_val_number, - STATE(1081), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(734), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2398), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(926), 1, sym__expression, - STATE(2404), 1, + STATE(927), 1, + sym_unquoted, + STATE(950), 1, sym__str_double_quotes, - STATE(3241), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1081), 1, + sym_comment, + ACTIONS(2857), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2859), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2855), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(892), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2217), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(846), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -131070,85 +131168,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34911] = 32, - ACTIONS(31), 1, + [34953] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2893), 1, + anon_sym_DASHinf, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2905), 1, + aux_sym_unquoted_token1, + STATE(91), 1, sym_val_number, STATE(1082), 1, sym_comment, - STATE(1871), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1558), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2396), 1, + STATE(1655), 1, + sym_unquoted, + STATE(1656), 1, sym__expression, - STATE(2404), 1, + STATE(1693), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, sym__str_double_quotes, - STATE(3240), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(2887), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2885), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(1683), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1691), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -131158,72 +131253,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35031] = 29, + [35067] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2873), 1, + anon_sym_LBRACK, + ACTIONS(2875), 1, + anon_sym_LPAREN, + ACTIONS(2877), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, ACTIONS(2879), 1, - anon_sym_LBRACK, + anon_sym_DASH, ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2883), 1, + anon_sym_not, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(91), 1, sym_val_number, STATE(1083), 1, sym_comment, - STATE(1704), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1733), 1, + STATE(1558), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2055), 1, + STATE(1657), 1, sym_unquoted, - STATE(2078), 1, + STATE(1658), 1, sym__expression, - STATE(2097), 1, + STATE(1693), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, sym__str_double_quotes, - ACTIONS(2387), 2, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -131231,7 +131326,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -131243,72 +131338,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35145] = 29, + [35181] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(87), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(91), 1, sym_val_number, STATE(1084), 1, sym_comment, - STATE(1871), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1558), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2321), 1, + STATE(1659), 1, sym_unquoted, - STATE(2363), 1, + STATE(1660), 1, sym__expression, - STATE(2404), 1, + STATE(1693), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, sym__str_double_quotes, - ACTIONS(81), 2, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -131316,7 +131411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -131328,85 +131423,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35259] = 32, - ACTIONS(31), 1, + [35295] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2893), 1, + anon_sym_DASHinf, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2905), 1, + aux_sym_unquoted_token1, + STATE(91), 1, sym_val_number, STATE(1085), 1, sym_comment, - STATE(1871), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1558), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2393), 1, + STATE(1661), 1, + sym_unquoted, + STATE(1662), 1, sym__expression, - STATE(2404), 1, + STATE(1693), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, sym__str_double_quotes, - STATE(3235), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(2887), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2885), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(1683), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1691), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -131416,84 +131508,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35379] = 32, - ACTIONS(31), 1, + [35409] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, STATE(1086), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, sym_val_variable, - STATE(2391), 1, + STATE(2204), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3233), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3033), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -131504,8 +131596,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35499] = 29, - ACTIONS(3), 1, + [35529] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -131517,69 +131609,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1087), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2253), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2205), 1, sym__expression, - STATE(2254), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3032), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -131589,8 +131684,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35613] = 29, - ACTIONS(3), 1, + [35649] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -131602,69 +131697,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1088), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2201), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2206), 1, sym__expression, - STATE(2252), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3031), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -131674,80 +131772,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35727] = 29, - ACTIONS(3), 1, + [35769] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2845), 1, + anon_sym_LBRACK, + ACTIONS(2847), 1, + anon_sym_DOLLAR, + ACTIONS(2849), 1, anon_sym_DASH, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(87), 1, - anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2855), 1, + anon_sym_DOT_DOT, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2867), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, - aux_sym_unquoted_token1, - STATE(107), 1, + ACTIONS(2907), 1, + anon_sym_LBRACE, + ACTIONS(2909), 1, + anon_sym_not, + STATE(10), 1, sym_val_number, - STATE(1089), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(734), 1, sym__var, - STATE(2294), 1, - sym_unquoted, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(851), 1, sym__inter_single_quotes, - STATE(2369), 1, + STATE(853), 1, + sym__inter_double_quotes, + STATE(899), 1, + sym_expr_parenthesized, + STATE(943), 1, sym__expression, - STATE(2404), 1, + STATE(950), 1, sym__str_double_quotes, - ACTIONS(81), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + STATE(1089), 1, + sym_comment, + STATE(2382), 1, + sym__match_expression, + STATE(2384), 1, + sym_block, + ACTIONS(2217), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2865), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2911), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2913), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2915), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2861), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(892), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2219), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - STATE(2408), 11, + STATE(846), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -131759,72 +131858,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35841] = 29, + [35885] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(91), 1, sym_val_number, STATE(1090), 1, sym_comment, - STATE(1779), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1558), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2248), 1, - sym__expression, - STATE(2250), 1, + STATE(1663), 1, sym_unquoted, - STATE(2260), 1, + STATE(1664), 1, + sym__expression, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1695), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -131832,7 +131931,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -131844,80 +131943,81 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [35955] = 29, - ACTIONS(3), 1, + [35999] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2453), 1, + anon_sym_DOT_DOT, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(2919), 1, + anon_sym_LBRACE, + STATE(100), 1, sym_val_number, STATE(1091), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2244), 1, - sym__expression, - STATE(2246), 1, - sym_unquoted, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(2115), 1, + sym__str_double_quotes, + STATE(2384), 1, + sym_block, + STATE(2489), 1, + sym__expression, + STATE(3444), 1, + sym__match_expression, + ACTIONS(2451), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2459), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, - aux_sym_val_number_token1, - aux_sym_val_number_token2, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, + anon_sym_DASHinf, anon_sym_NaN, - STATE(2257), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -131929,72 +132029,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36069] = 29, + [36115] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(91), 1, sym_val_number, STATE(1092), 1, sym_comment, - STATE(1779), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1558), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2239), 1, - sym__expression, - STATE(2243), 1, + STATE(1665), 1, sym_unquoted, - STATE(2260), 1, + STATE(1666), 1, + sym__expression, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1695), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132002,7 +132102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132014,8 +132114,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36183] = 29, - ACTIONS(3), 1, + [36229] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -132027,69 +132127,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1093), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2235), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2207), 1, sym__expression, - STATE(2237), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2976), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -132099,8 +132202,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36297] = 29, - ACTIONS(3), 1, + [36349] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -132112,69 +132215,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1094), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2227), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2209), 1, sym__expression, - STATE(2231), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3029), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -132184,72 +132290,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36411] = 29, + [36469] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(91), 1, sym_val_number, STATE(1095), 1, sym_comment, - STATE(1779), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1558), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2223), 1, - sym__expression, - STATE(2225), 1, + STATE(1667), 1, sym_unquoted, - STATE(2260), 1, + STATE(1668), 1, + sym__expression, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1695), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132257,7 +132363,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132269,72 +132375,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36525] = 29, + [36583] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(91), 1, sym_val_number, STATE(1096), 1, sym_comment, - STATE(1779), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1558), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2219), 1, - sym__expression, - STATE(2221), 1, + STATE(1669), 1, sym_unquoted, - STATE(2260), 1, + STATE(1670), 1, + sym__expression, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1695), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132342,7 +132448,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132354,8 +132460,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36639] = 29, - ACTIONS(3), 1, + [36697] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -132367,69 +132473,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1097), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2215), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2210), 1, sym__expression, - STATE(2217), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3028), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -132439,8 +132548,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36753] = 29, - ACTIONS(3), 1, + [36817] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -132452,69 +132561,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(227), 1, anon_sym_not, - ACTIONS(239), 1, - anon_sym_DASHinf, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, ACTIONS(245), 1, anon_sym_DQUOTE, ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2897), 1, - aux_sym_unquoted_token1, - STATE(105), 1, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, STATE(1098), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2211), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2212), 1, sym__expression, - STATE(2213), 1, - sym_unquoted, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - ACTIONS(233), 2, - sym_val_nothing, - sym_val_date, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3027), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, ACTIONS(235), 2, anon_sym_true, anon_sym_false, ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(237), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2257), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -132524,72 +132636,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36867] = 29, + [36937] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(87), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(91), 1, sym_val_number, STATE(1099), 1, sym_comment, - STATE(1871), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1558), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2365), 1, - sym__expression, - STATE(2366), 1, + STATE(1671), 1, sym_unquoted, - STATE(2404), 1, + STATE(1672), 1, + sym__expression, + STATE(1693), 1, + sym__inter_single_quotes, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, sym__str_double_quotes, - ACTIONS(81), 2, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132597,7 +132709,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132609,72 +132721,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [36981] = 29, + [37051] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2877), 1, + anon_sym_DOLLAR, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(91), 1, sym_val_number, STATE(1100), 1, sym_comment, - STATE(1779), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1558), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2207), 1, - sym__expression, - STATE(2208), 1, + STATE(1673), 1, sym_unquoted, - STATE(2260), 1, + STATE(1674), 1, + sym__expression, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1695), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132682,7 +132794,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132694,72 +132806,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37095] = 29, + [37165] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2875), 1, + anon_sym_LPAREN, + ACTIONS(2877), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(2604), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(10), 1, + STATE(91), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1101), 1, + sym_comment, + STATE(1529), 1, sym_expr_parenthesized, - STATE(911), 1, + STATE(1558), 1, + sym__var, + STATE(1675), 1, sym_unquoted, - STATE(913), 1, + STATE(1676), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(1693), 1, sym__inter_single_quotes, - STATE(1101), 1, - sym_comment, - ACTIONS(2598), 2, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(2600), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132767,7 +132879,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(947), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132779,72 +132891,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37209] = 29, + [37279] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2875), 1, + anon_sym_LPAREN, + ACTIONS(2877), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(2604), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(10), 1, + STATE(91), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1102), 1, + sym_comment, + STATE(1529), 1, sym_expr_parenthesized, - STATE(909), 1, + STATE(1558), 1, + sym__var, + STATE(1677), 1, sym_unquoted, - STATE(910), 1, + STATE(1678), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(1693), 1, sym__inter_single_quotes, - STATE(1102), 1, - sym_comment, - ACTIONS(2598), 2, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(2600), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132852,7 +132964,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(947), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132864,72 +132976,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37323] = 29, + [37393] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2875), 1, + anon_sym_LPAREN, + ACTIONS(2877), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2883), 1, anon_sym_not, - ACTIONS(2604), 1, + ACTIONS(2893), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, + ACTIONS(2905), 1, aux_sym_unquoted_token1, - STATE(10), 1, + STATE(91), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1103), 1, + sym_comment, + STATE(1529), 1, sym_expr_parenthesized, - STATE(906), 1, + STATE(1558), 1, + sym__var, + STATE(1679), 1, sym_unquoted, - STATE(908), 1, + STATE(1680), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(1693), 1, sym__inter_single_quotes, - STATE(1103), 1, - sym_comment, - ACTIONS(2598), 2, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1732), 1, + sym__str_double_quotes, + ACTIONS(2887), 2, sym_val_nothing, sym_val_date, - ACTIONS(2600), 2, + ACTIONS(2889), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2899), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, + ACTIONS(2885), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, + ACTIONS(2891), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -132937,7 +133049,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(947), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -132949,72 +133061,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37437] = 29, + [37507] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2923), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(2604), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(10), 1, + STATE(102), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1104), 1, + sym_comment, + STATE(1696), 1, sym_expr_parenthesized, - STATE(878), 1, - sym_unquoted, - STATE(879), 1, + STATE(1742), 1, + sym__var, + STATE(2016), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2017), 1, + sym_unquoted, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1104), 1, - sym_comment, - ACTIONS(2598), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(2600), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -133022,7 +133134,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(947), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -133034,72 +133146,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37551] = 29, + [37621] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, + ACTIONS(2923), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(2604), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(10), 1, + STATE(102), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1105), 1, + sym_comment, + STATE(1696), 1, sym_expr_parenthesized, - STATE(876), 1, - sym_unquoted, - STATE(877), 1, + STATE(1742), 1, + sym__var, + STATE(2014), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2015), 1, + sym_unquoted, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1105), 1, - sym_comment, - ACTIONS(2598), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(2600), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -133107,7 +133219,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(947), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -133119,167 +133231,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37665] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [37735] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1106), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(874), 1, - sym_unquoted, - STATE(875), 1, + STATE(1931), 1, + sym__var, + STATE(2325), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1106), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3094), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, - 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, - [37779] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, - anon_sym_DASH, - ACTIONS(2590), 1, - anon_sym_LBRACE, - ACTIONS(2592), 1, - anon_sym_not, - ACTIONS(2604), 1, anon_sym_DASHinf, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(2614), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, - sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, - sym_expr_parenthesized, - STATE(869), 1, - sym_unquoted, - STATE(870), 1, - sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, - sym__inter_single_quotes, - STATE(1107), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(824), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2602), 7, - aux_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_inf, - anon_sym_NaN, - STATE(947), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133289,82 +133319,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [37893] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [37855] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1107), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(867), 1, - sym_unquoted, - STATE(868), 1, + STATE(1931), 1, + sym__var, + STATE(2324), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1108), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3171), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133374,82 +133407,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38007] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [37975] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1108), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(863), 1, - sym_unquoted, - STATE(866), 1, + STATE(1931), 1, + sym__var, + STATE(2318), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1109), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3088), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133459,82 +133495,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38121] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [38095] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1109), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(859), 1, - sym_unquoted, - STATE(860), 1, + STATE(1931), 1, + sym__var, + STATE(2313), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1110), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3309), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133544,82 +133583,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38235] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [38215] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1110), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(856), 1, - sym_unquoted, - STATE(858), 1, + STATE(1931), 1, + sym__var, + STATE(2312), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1111), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3095), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133629,82 +133671,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38349] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [38335] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1111), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(853), 1, - sym_unquoted, - STATE(854), 1, + STATE(1931), 1, + sym__var, + STATE(2307), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1112), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3090), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133714,82 +133759,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38463] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2207), 1, - anon_sym_LPAREN, - ACTIONS(2582), 1, + [38455] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_DOLLAR, - ACTIONS(2588), 1, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2590), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2592), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2604), 1, - anon_sym_DASHinf, - ACTIONS(2610), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2614), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2616), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2899), 1, - aux_sym_unquoted_token1, - STATE(10), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(737), 1, - sym__var, - STATE(758), 1, - sym__str_double_quotes, - STATE(823), 1, + STATE(1112), 1, + sym_comment, + STATE(1865), 1, sym_expr_parenthesized, - STATE(851), 1, - sym_unquoted, - STATE(852), 1, + STATE(1931), 1, + sym__var, + STATE(2295), 1, sym__expression, - STATE(938), 1, - sym__inter_double_quotes, - STATE(939), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1113), 1, - sym_comment, - ACTIONS(2598), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2600), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3081), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2612), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2596), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2606), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(824), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2602), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(947), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -133799,72 +133847,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38577] = 29, + [38575] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(239), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(245), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2897), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(105), 1, + STATE(102), 1, sym_val_number, - STATE(1114), 1, + STATE(1113), 1, sym_comment, - STATE(1779), 1, + STATE(1696), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1742), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2205), 1, + STATE(2012), 1, sym__expression, - STATE(2206), 1, + STATE(2013), 1, sym_unquoted, - STATE(2260), 1, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2119), 1, sym__inter_double_quotes, - ACTIONS(233), 2, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(235), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(231), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(241), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2203), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(237), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -133872,7 +133920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2257), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -133884,7 +133932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38691] = 32, + [38689] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -133907,31 +133955,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1115), 1, + STATE(1114), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2390), 1, + STATE(2293), 1, sym__expression, - STATE(2404), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(3232), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3096), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -133956,12 +134004,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -133972,72 +134020,157 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38811] = 29, + [38809] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(31), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(87), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(93), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(961), 1, + ACTIONS(2953), 1, + aux_sym_unquoted_token1, + STATE(102), 1, + sym_val_number, + STATE(1115), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, + sym__var, + STATE(1972), 1, + sym__expression, + STATE(2009), 1, + sym_unquoted, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2937), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2947), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2933), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2943), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(1967), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2939), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2111), 11, + 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, + [38923] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2921), 1, + anon_sym_LBRACK, + ACTIONS(2923), 1, + anon_sym_LPAREN, + ACTIONS(2925), 1, anon_sym_DOLLAR, - ACTIONS(2859), 1, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, + anon_sym_LBRACE, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, + anon_sym_DASHinf, + ACTIONS(2945), 1, + anon_sym_DQUOTE, + ACTIONS(2949), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2951), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(107), 1, + STATE(102), 1, sym_val_number, STATE(1116), 1, sym_comment, - STATE(1871), 1, + STATE(1696), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1742), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2362), 1, + STATE(2003), 1, sym__expression, - STATE(2364), 1, + STATE(2004), 1, sym_unquoted, - STATE(2404), 1, + STATE(2042), 1, sym__str_double_quotes, - ACTIONS(81), 2, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(83), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(79), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(89), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2319), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(85), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -134045,7 +134178,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2408), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -134057,7 +134190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [38925] = 32, + [39037] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -134080,31 +134213,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, STATE(1117), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2384), 1, + STATE(2351), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3228), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3098), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -134129,12 +134262,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -134145,7 +134278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39045] = 32, + [39157] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -134168,31 +134301,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, STATE(1118), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, sym_val_variable, - STATE(2377), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2374), 1, sym__expression, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3225), 1, + STATE(3101), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -134217,12 +134350,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -134233,7 +134366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39165] = 32, + [39277] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -134256,31 +134389,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, STATE(1119), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2280), 1, - sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(3222), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2377), 1, + sym__expression, + STATE(3102), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -134305,12 +134438,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -134321,7 +134454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39285] = 32, + [39397] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -134344,31 +134477,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, STATE(1120), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2320), 1, - sym__expression, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(3221), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2381), 1, + sym__expression, + STATE(3106), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -134393,183 +134526,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, - 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, - [39405] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, - anon_sym_DQUOTE, - ACTIONS(2891), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, - aux_sym_unquoted_token1, - STATE(102), 1, - sym_val_number, - STATE(1121), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2098), 1, - sym_unquoted, - STATE(2104), 1, - sym__expression, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2889), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 7, - aux_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_inf, - anon_sym_NaN, - STATE(2015), 11, - 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, - [39519] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2825), 1, - anon_sym_LBRACK, - ACTIONS(2827), 1, - anon_sym_LPAREN, - ACTIONS(2829), 1, - anon_sym_DOLLAR, - ACTIONS(2831), 1, - anon_sym_DASH, - ACTIONS(2833), 1, - anon_sym_LBRACE, - ACTIONS(2835), 1, - anon_sym_not, - ACTIONS(2845), 1, - anon_sym_DASHinf, - ACTIONS(2849), 1, - anon_sym_DQUOTE, - ACTIONS(2853), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2857), 1, - aux_sym_unquoted_token1, - STATE(5), 1, - sym_val_number, - STATE(125), 1, - sym__var, - STATE(226), 1, - sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(235), 1, - sym__expression, - STATE(236), 1, - sym_unquoted, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, - sym__inter_single_quotes, - STATE(1122), 1, - sym_comment, - ACTIONS(2839), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2841), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2837), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2847), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(225), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2843), 7, - aux_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_inf, - anon_sym_NaN, - STATE(260), 11, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -134579,7 +134542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39633] = 32, + [39517] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -134602,31 +134565,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1123), 1, + STATE(1121), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(2416), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2387), 1, sym__expression, - STATE(3252), 1, + STATE(3100), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -134651,12 +134614,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -134667,72 +134630,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39753] = 29, + [39637] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1124), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2110), 1, + STATE(844), 1, sym_unquoted, - STATE(2112), 1, + STATE(849), 1, sym__expression, - ACTIONS(2387), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1122), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -134740,7 +134703,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -134752,72 +134715,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39867] = 29, + [39751] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(11), 1, sym_val_number, - STATE(1125), 1, - sym_comment, - STATE(1667), 1, + STATE(742), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(1991), 1, - sym__expression, - STATE(1992), 1, - sym_unquoted, - STATE(2038), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(841), 1, + sym_unquoted, + STATE(843), 1, + sym__expression, + STATE(919), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1123), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -134825,7 +134788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -134837,157 +134800,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39981] = 29, + [39865] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(11), 1, sym_val_number, - STATE(1126), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(742), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(1880), 1, + STATE(839), 1, sym_unquoted, - STATE(1881), 1, + STATE(840), 1, sym__expression, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2871), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 7, - aux_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_inf, - anon_sym_NaN, - STATE(1859), 11, - 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, - [40095] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, - anon_sym_DQUOTE, - ACTIONS(2891), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, - aux_sym_unquoted_token1, - STATE(102), 1, - sym_val_number, - STATE(1127), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, - sym__var, - STATE(2023), 1, + STATE(919), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(2097), 1, - sym__str_double_quotes, - STATE(2119), 1, - sym_unquoted, - STATE(2121), 1, - sym__expression, - ACTIONS(2387), 2, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1124), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -134995,7 +134873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135007,72 +134885,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40209] = 29, + [39979] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(11), 1, sym_val_number, - STATE(1128), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(742), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(1888), 1, + STATE(837), 1, sym_unquoted, - STATE(1889), 1, + STATE(838), 1, sym__expression, - ACTIONS(2245), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1125), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135080,7 +134958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135092,72 +134970,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40323] = 29, + [40093] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1129), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2130), 1, + STATE(835), 1, sym_unquoted, - STATE(2131), 1, + STATE(836), 1, sym__expression, - ACTIONS(2387), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1126), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135165,7 +135043,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135177,72 +135055,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40437] = 29, + [40207] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1130), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(824), 1, + sym_unquoted, + STATE(919), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(2032), 1, - sym_unquoted, - STATE(2089), 1, + STATE(931), 1, sym__expression, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2387), 2, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1127), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135250,7 +135128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135262,72 +135140,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40551] = 29, + [40321] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1131), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, + STATE(759), 1, + sym__str_double_quotes, + STATE(820), 1, + sym__expression, + STATE(821), 1, + sym_unquoted, + STATE(919), 1, sym__inter_single_quotes, - STATE(2024), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(2092), 1, - sym_unquoted, - STATE(2095), 1, - sym__expression, - STATE(2097), 1, - sym__str_double_quotes, - ACTIONS(2387), 2, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1128), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135335,7 +135213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135347,72 +135225,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40665] = 29, + [40435] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(11), 1, sym_val_number, - STATE(1132), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(742), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(1877), 1, - sym_unquoted, - STATE(1878), 1, + STATE(822), 1, sym__expression, - ACTIONS(2245), 2, + STATE(823), 1, + sym_unquoted, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1129), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135420,7 +135298,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135432,72 +135310,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40779] = 29, + [40549] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(11), 1, sym_val_number, - STATE(1133), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(742), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(1875), 1, - sym_unquoted, - STATE(1876), 1, + STATE(858), 1, sym__expression, - ACTIONS(2245), 2, + STATE(860), 1, + sym_unquoted, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1130), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135505,7 +135383,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135517,72 +135395,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [40893] = 29, + [40663] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(11), 1, sym_val_number, - STATE(1134), 1, - sym_comment, - STATE(1621), 1, - sym_expr_parenthesized, - STATE(1638), 1, + STATE(742), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(1872), 1, - sym_unquoted, - STATE(1873), 1, + STATE(833), 1, sym__expression, - ACTIONS(2245), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(938), 1, + sym_unquoted, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1131), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135590,7 +135468,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135602,72 +135480,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41007] = 29, + [40777] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1135), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2099), 1, + STATE(891), 1, sym_unquoted, - STATE(2101), 1, + STATE(906), 1, sym__expression, - ACTIONS(2387), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1132), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135675,7 +135553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135687,72 +135565,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41121] = 29, + [40891] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2600), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(2), 1, + STATE(11), 1, sym_val_number, - STATE(111), 1, + STATE(742), 1, sym__var, - STATE(157), 1, - sym_expr_parenthesized, - STATE(178), 1, - sym__expression, - STATE(179), 1, - sym_unquoted, - STATE(190), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(202), 1, + STATE(814), 1, + sym_unquoted, + STATE(886), 1, + sym__expression, + STATE(919), 1, sym__inter_single_quotes, - STATE(203), 1, + STATE(921), 1, sym__inter_double_quotes, - STATE(1136), 1, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1133), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135760,7 +135638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135772,72 +135650,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41235] = 29, + [41005] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + ACTIONS(2590), 1, + anon_sym_LBRACK, + ACTIONS(2594), 1, anon_sym_DOLLAR, - ACTIONS(2379), 1, + ACTIONS(2596), 1, anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, - anon_sym_LBRACK, - ACTIONS(2881), 1, - anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(2598), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, + ACTIONS(2600), 1, + anon_sym_not, + ACTIONS(2612), 1, anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(2622), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(2624), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2955), 1, aux_sym_unquoted_token1, - STATE(102), 1, + STATE(11), 1, sym_val_number, - STATE(1137), 1, - sym_comment, - STATE(1704), 1, - sym_expr_parenthesized, - STATE(1733), 1, + STATE(742), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2103), 1, + STATE(868), 1, sym_unquoted, - STATE(2105), 1, + STATE(879), 1, sym__expression, - ACTIONS(2387), 2, + STATE(919), 1, + sym__inter_single_quotes, + STATE(921), 1, + sym__inter_double_quotes, + STATE(949), 1, + sym_expr_parenthesized, + STATE(1134), 1, + sym_comment, + ACTIONS(2606), 2, sym_val_nothing, sym_val_date, - ACTIONS(2389), 2, + ACTIONS(2608), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, + ACTIONS(2604), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(2614), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, + STATE(948), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2391), 7, + ACTIONS(2610), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -135845,7 +135723,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2015), 11, + STATE(916), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -135857,82 +135735,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41349] = 29, - ACTIONS(3), 1, + [41119] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, - anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, - aux_sym_unquoted_token1, - STATE(94), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1138), 1, + STATE(1135), 1, sym_comment, - STATE(1621), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1790), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(1885), 1, - sym_unquoted, - STATE(1887), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2215), 1, sym__expression, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3026), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1859), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -135942,72 +135823,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41463] = 29, + [41239] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(102), 1, sym_val_number, - STATE(266), 1, + STATE(1136), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(341), 1, + STATE(2001), 1, + sym__expression, + STATE(2002), 1, + sym_unquoted, + STATE(2042), 1, sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, + STATE(2117), 1, sym__inter_single_quotes, - STATE(373), 1, - sym_unquoted, - STATE(374), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1139), 1, - sym_comment, - ACTIONS(1374), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136015,7 +135896,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136027,72 +135908,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41577] = 29, + [41353] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(2), 1, + STATE(102), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1137), 1, + sym_comment, + STATE(1696), 1, sym_expr_parenthesized, - STATE(161), 1, + STATE(1742), 1, + sym__var, + STATE(1998), 1, sym__expression, - STATE(162), 1, + STATE(1999), 1, sym_unquoted, - STATE(190), 1, + STATE(2042), 1, sym__str_double_quotes, - STATE(202), 1, + STATE(2117), 1, sym__inter_single_quotes, - STATE(203), 1, + STATE(2119), 1, sym__inter_double_quotes, - STATE(1140), 1, - sym_comment, - ACTIONS(2915), 2, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136100,7 +135981,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136112,72 +135993,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41691] = 29, + [41467] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(102), 1, sym_val_number, - STATE(298), 1, + STATE(1138), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(410), 1, - sym_unquoted, - STATE(411), 1, + STATE(1995), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(1996), 1, + sym_unquoted, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1141), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136185,7 +136066,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136197,72 +136078,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41805] = 29, + [41581] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(102), 1, sym_val_number, - STATE(298), 1, + STATE(1139), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(412), 1, - sym_unquoted, - STATE(413), 1, + STATE(1947), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(1994), 1, + sym_unquoted, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1142), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136270,7 +136151,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136282,72 +136163,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [41919] = 29, + [41695] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(6), 1, + STATE(102), 1, sym_val_number, - STATE(266), 1, + STATE(1140), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(371), 1, + STATE(1948), 1, sym_unquoted, - STATE(372), 1, + STATE(1949), 1, sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1143), 1, - sym_comment, - ACTIONS(1374), 2, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, + sym__inter_single_quotes, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1376), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1378), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136355,7 +136236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(361), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136367,72 +136248,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42033] = 29, + [41809] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(102), 1, sym_val_number, - STATE(298), 1, + STATE(1141), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(414), 1, + STATE(1950), 1, sym_unquoted, - STATE(422), 1, + STATE(1951), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1144), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136440,7 +136321,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136452,72 +136333,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42147] = 29, + [41923] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, + anon_sym_DASH, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2931), 1, + anon_sym_not, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(102), 1, sym_val_number, - STATE(298), 1, + STATE(1142), 1, + sym_comment, + STATE(1696), 1, + sym_expr_parenthesized, + STATE(1742), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(423), 1, + STATE(1952), 1, sym_unquoted, - STATE(433), 1, + STATE(1953), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2042), 1, + sym__str_double_quotes, + STATE(2117), 1, sym__inter_single_quotes, - STATE(1145), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136525,7 +136406,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136537,72 +136418,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42261] = 29, + [42037] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2925), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2941), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2953), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(102), 1, sym_val_number, - STATE(1146), 1, + STATE(1143), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1696), 1, sym_expr_parenthesized, - STATE(1993), 1, - sym__expression, - STATE(1995), 1, + STATE(1742), 1, + sym__var, + STATE(1954), 1, sym_unquoted, - STATE(2038), 1, + STATE(1956), 1, + sym__expression, + STATE(2042), 1, sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(2117), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(2119), 1, + sym__inter_double_quotes, + ACTIONS(2935), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2933), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2939), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136610,7 +136491,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(2111), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136622,82 +136503,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42375] = 29, - ACTIONS(3), 1, + [42151] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, - aux_sym_unquoted_token1, - STATE(9), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(298), 1, + STATE(1144), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(401), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(435), 1, - sym_unquoted, - STATE(439), 1, + STATE(2156), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(449), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1147), 1, - sym_comment, - ACTIONS(1645), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1647), 2, + STATE(3025), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1649), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(404), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -136707,72 +136591,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42489] = 29, + [42271] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(2574), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(109), 1, sym_val_number, - STATE(298), 1, + STATE(1145), 1, + sym_comment, + STATE(1964), 1, sym__var, - STATE(401), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - STATE(440), 1, + STATE(2480), 1, sym_unquoted, - STATE(444), 1, + STATE(2481), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, - sym__inter_single_quotes, - STATE(1148), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(2961), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(2566), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(2572), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136780,7 +136664,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136792,72 +136676,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42603] = 29, + [42385] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(107), 1, sym_val_number, - STATE(298), 1, + STATE(1146), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(445), 1, + STATE(2310), 1, sym_unquoted, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(451), 1, + STATE(2358), 1, sym__expression, - STATE(1149), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2371), 1, + sym__inter_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -136865,7 +136749,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -136877,82 +136761,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42717] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2542), 1, + [42499] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, - anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, - aux_sym_unquoted_token1, - STATE(109), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1150), 1, + STATE(1147), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2453), 1, + STATE(1931), 1, + sym__var, + STATE(2309), 1, sym__expression, - STATE(2454), 1, - sym_unquoted, - STATE(2463), 1, + STATE(2327), 1, sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2787), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2558), 3, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3204), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2564), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -136962,72 +136849,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42831] = 29, + [42619] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(107), 1, sym_val_number, - STATE(1151), 1, + STATE(1148), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2462), 1, + STATE(1931), 1, + sym__var, + STATE(2314), 1, sym__expression, - STATE(2463), 1, - sym__str_double_quotes, - STATE(2465), 1, + STATE(2316), 1, sym_unquoted, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2371), 1, + sym__inter_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137035,7 +136922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137047,72 +136934,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [42945] = 29, + [42733] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(107), 1, sym_val_number, - STATE(298), 1, + STATE(1149), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(407), 1, - sym_unquoted, - STATE(438), 1, + STATE(2319), 1, sym__expression, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2322), 1, + sym_unquoted, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(1152), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2371), 1, + sym__inter_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137120,7 +137007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137132,72 +137019,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43059] = 29, + [42847] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(107), 1, sym_val_number, - STATE(298), 1, + STATE(1150), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(401), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, - sym__inter_single_quotes, - STATE(458), 1, + STATE(2330), 1, sym__expression, - STATE(459), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2360), 1, sym_unquoted, - STATE(1153), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2371), 1, + sym__inter_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137205,7 +137092,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137217,72 +137104,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43173] = 29, + [42961] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(107), 1, sym_val_number, - STATE(1154), 1, + STATE(1151), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(1931), 1, + sym__var, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2448), 1, + STATE(2362), 1, sym__expression, - STATE(2449), 1, + STATE(2366), 1, sym_unquoted, - STATE(2463), 1, - sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(2371), 1, + sym__inter_double_quotes, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137290,7 +137177,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137302,72 +137189,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43287] = 29, + [43075] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(107), 1, sym_val_number, - STATE(298), 1, + STATE(1152), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(401), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(456), 1, + STATE(2370), 1, sym__expression, - STATE(457), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2378), 1, sym_unquoted, - STATE(1155), 1, - sym_comment, - ACTIONS(1645), 2, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137375,7 +137262,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137387,8 +137274,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43401] = 32, - ACTIONS(143), 1, + [43189] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -137412,29 +137299,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1156), 1, + STATE(1153), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2275), 1, + STATE(2186), 1, sym__expression, - STATE(3072), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3064), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -137459,12 +137346,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -137475,85 +137362,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43521] = 32, - ACTIONS(143), 1, + [43309] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1157), 1, + STATE(1154), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2267), 1, + STATE(2379), 1, sym__expression, - STATE(2273), 1, - sym_val_variable, - STATE(3003), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2380), 1, + sym_unquoted, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -137563,85 +137447,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43641] = 32, - ACTIONS(143), 1, + [43423] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1158), 1, + STATE(1155), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2265), 1, + STATE(2418), 1, + sym_unquoted, + STATE(2420), 1, sym__expression, - STATE(2273), 1, - sym_val_variable, - STATE(3065), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -137651,85 +137532,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43761] = 32, - ACTIONS(143), 1, + [43537] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1159), 1, + STATE(1156), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2263), 1, + STATE(2410), 1, + sym_unquoted, + STATE(2414), 1, sym__expression, - STATE(2273), 1, - sym_val_variable, - STATE(3063), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -137739,72 +137617,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43881] = 29, + [43651] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, - anon_sym_not, - ACTIONS(2745), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2747), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2749), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2751), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(87), 1, anon_sym_DASHinf, - ACTIONS(2753), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2757), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2965), 1, aux_sym_unquoted_token1, - STATE(9), 1, + STATE(107), 1, sym_val_number, - STATE(298), 1, + STATE(1157), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(401), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(454), 1, - sym__expression, - STATE(455), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2405), 1, sym_unquoted, - STATE(1160), 1, - sym_comment, - ACTIONS(1645), 2, + STATE(2408), 1, + sym__expression, + ACTIONS(81), 2, sym_val_nothing, sym_val_date, - ACTIONS(1647), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2755), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1643), 3, + ACTIONS(79), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(446), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(1649), 7, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -137812,7 +137690,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(404), 11, + STATE(2321), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -137824,85 +137702,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [43995] = 32, - ACTIONS(143), 1, + [43765] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1161), 1, + STATE(1158), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2258), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3062), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2401), 1, + sym_unquoted, + STATE(2403), 1, + sym__expression, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -137912,85 +137787,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44115] = 32, - ACTIONS(143), 1, + [43879] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1162), 1, + STATE(1159), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2251), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3059), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2397), 1, + sym_unquoted, + STATE(2399), 1, + sym__expression, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -138000,85 +137872,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44235] = 32, - ACTIONS(143), 1, + [43993] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1163), 1, + STATE(1160), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2249), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1945), 1, sym__expression, - STATE(2260), 1, + STATE(1946), 1, + sym_unquoted, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3058), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, + 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, + [44107] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_LBRACE, + ACTIONS(2973), 1, anon_sym_DASHinf, - STATE(2203), 4, + ACTIONS(2975), 1, + anon_sym_DQUOTE, + ACTIONS(2979), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2981), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, + sym_val_number, + STATE(1161), 1, + sym_comment, + STATE(1653), 1, + sym__var, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1943), 1, + sym__expression, + STATE(1944), 1, + sym_unquoted, + STATE(2044), 1, + sym__inter_single_quotes, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2977), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + ACTIONS(2417), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -138088,85 +138042,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44355] = 32, - ACTIONS(143), 1, + [44221] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(87), 1, + anon_sym_DASHinf, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2965), 1, + aux_sym_unquoted_token1, + STATE(107), 1, sym_val_number, - STATE(1164), 1, + STATE(1162), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2247), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2346), 1, + sym__expression, + STATE(2371), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3056), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2393), 1, + sym_unquoted, + ACTIONS(81), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(79), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(85), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2321), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -138176,85 +138127,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44475] = 32, - ACTIONS(143), 1, + [44335] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1165), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(128), 1, sym__var, - STATE(2070), 1, + STATE(211), 1, sym__str_double_quotes, - STATE(2245), 1, + STATE(224), 1, + sym_expr_parenthesized, + STATE(239), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3054), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(242), 1, + sym__inter_single_quotes, + STATE(256), 1, + sym_unquoted, + STATE(1163), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -138264,8 +138212,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44595] = 32, - ACTIONS(143), 1, + [44449] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -138289,29 +138237,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1166), 1, + STATE(1164), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2242), 1, + STATE(2148), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(3053), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3065), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -138336,12 +138284,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138352,84 +138300,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44715] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [44569] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1167), 1, + STATE(1165), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2240), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3051), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2389), 1, + sym__expression, + STATE(3116), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138440,84 +138388,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44835] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [44689] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1168), 1, + STATE(1166), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2238), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3050), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2390), 1, + sym__expression, + STATE(3117), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138528,84 +138476,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [44955] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [44809] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1169), 1, + STATE(1167), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2236), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3046), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2392), 1, + sym__expression, + STATE(3121), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138616,72 +138564,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45075] = 29, + [44929] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, - anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2574), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(109), 1, sym_val_number, - STATE(1170), 1, + STATE(1168), 1, sym_comment, - STATE(1667), 1, + STATE(1964), 1, sym__var, - STATE(1763), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(2038), 1, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - STATE(2054), 1, + STATE(2478), 1, sym__expression, - STATE(2056), 1, + STATE(2479), 1, sym_unquoted, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, - sym__inter_single_quotes, - ACTIONS(2805), 2, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2961), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2566), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2572), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -138689,7 +138637,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -138701,8 +138649,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45189] = 32, - ACTIONS(143), 1, + [45043] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -138726,117 +138674,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1171), 1, + STATE(1169), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2234), 1, + STATE(2147), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(3045), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(241), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, - 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, - [45309] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(249), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, - sym_val_number, - STATE(1172), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, - sym__var, - STATE(2070), 1, - sym__str_double_quotes, + STATE(2228), 1, + sym__inter_double_quotes, STATE(2232), 1, - sym__expression, - STATE(2260), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3044), 1, + STATE(3066), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -138861,12 +138721,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138877,84 +138737,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45429] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45163] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1173), 1, + STATE(1170), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2230), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3042), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2395), 1, + sym__expression, + STATE(3136), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -138965,84 +138825,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45549] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45283] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1174), 1, + STATE(1171), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2228), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3068), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2400), 1, + sym__expression, + STATE(3139), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139053,84 +138913,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45669] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45403] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1175), 1, + STATE(1172), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2226), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3037), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2404), 1, + sym__expression, + STATE(3141), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139141,84 +139001,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45789] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45523] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1176), 1, + STATE(1173), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2224), 1, + STATE(2280), 1, sym__expression, - STATE(2260), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3035), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3143), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139229,84 +139089,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [45909] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45643] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1177), 1, + STATE(1174), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2222), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3034), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2419), 1, + sym__expression, + STATE(3150), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139317,84 +139177,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46029] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45763] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1178), 1, + STATE(1175), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2220), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3033), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2422), 1, + sym__expression, + STATE(3159), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139405,84 +139265,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46149] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [45883] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1179), 1, + STATE(1176), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2218), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3032), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2385), 1, + sym__expression, + STATE(3164), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139493,8 +139353,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46269] = 32, - ACTIONS(143), 1, + [46003] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -139518,29 +139378,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1180), 1, + STATE(1177), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2216), 1, + STATE(2187), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(3030), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2980), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -139565,12 +139425,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139581,8 +139441,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46389] = 32, - ACTIONS(143), 1, + [46123] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -139606,29 +139466,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1181), 1, + STATE(1178), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2214), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2203), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3028), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2897), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -139653,12 +139513,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139669,8 +139529,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46509] = 32, - ACTIONS(143), 1, + [46243] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -139694,29 +139554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1182), 1, + STATE(1179), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2212), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2208), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3027), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2888), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -139741,12 +139601,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139757,8 +139617,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46629] = 32, - ACTIONS(143), 1, + [46363] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -139782,29 +139642,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1183), 1, + STATE(1180), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2210), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2221), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3026), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2886), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -139829,12 +139689,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -139845,423 +139705,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [46749] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + [46483] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, - sym_val_number, - STATE(266), 1, - sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(369), 1, - sym_unquoted, - STATE(370), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1184), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2775), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(396), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1378), 7, - aux_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_inf, - anon_sym_NaN, - STATE(361), 11, - 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, - [46863] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, - anon_sym_LBRACK, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, - sym_val_number, - STATE(266), 1, - sym__var, - STATE(341), 1, - sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, - sym__inter_single_quotes, - STATE(367), 1, - sym_unquoted, - STATE(368), 1, - sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1185), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2775), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(396), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1378), 7, - aux_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_inf, - anon_sym_NaN, - STATE(361), 11, - 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, - [46977] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1635), 1, - anon_sym_DOLLAR, - ACTIONS(1637), 1, - anon_sym_DASH, - ACTIONS(1641), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(2745), 1, - anon_sym_LBRACK, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(2749), 1, - anon_sym_LBRACE, - ACTIONS(2751), 1, - anon_sym_DASHinf, - ACTIONS(2753), 1, - anon_sym_DQUOTE, - ACTIONS(2757), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2759), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2761), 1, - aux_sym_unquoted_token1, - STATE(9), 1, - sym_val_number, - STATE(298), 1, - sym__var, - STATE(401), 1, - sym__str_double_quotes, - STATE(447), 1, - sym_expr_parenthesized, - STATE(448), 1, - sym__inter_double_quotes, - STATE(449), 1, - sym__inter_single_quotes, - STATE(452), 1, - sym__expression, - STATE(453), 1, - sym_unquoted, - STATE(1186), 1, - sym_comment, - ACTIONS(1645), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1647), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2755), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1643), 3, - anon_sym_DOT_DOT_LT, + ACTIONS(79), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1651), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(446), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1649), 7, - aux_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_inf, - anon_sym_NaN, - STATE(404), 11, - 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, - [47091] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, - anon_sym_DASH, - ACTIONS(2552), 1, - anon_sym_LBRACE, - ACTIONS(2566), 1, - anon_sym_DASHinf, - ACTIONS(2570), 1, - anon_sym_DQUOTE, - ACTIONS(2574), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, - aux_sym_unquoted_token1, - STATE(109), 1, - sym_val_number, - STATE(1187), 1, - sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2446), 1, - sym__expression, - STATE(2447), 1, - sym_unquoted, - STATE(2463), 1, - sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + ACTIONS(81), 1, sym_val_nothing, + ACTIONS(91), 1, sym_val_date, - ACTIONS(2787), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2558), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(2423), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2564), 7, - aux_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_inf, - anon_sym_NaN, - STATE(2439), 11, - 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, - [47205] = 30, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, - anon_sym_DASH, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(2351), 1, - anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 1, - anon_sym_LBRACE, - STATE(98), 1, + ACTIONS(99), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1188), 1, + STATE(1181), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, - sym__inter_single_quotes, - STATE(2111), 1, + STATE(1931), 1, + sym__var, + STATE(2327), 1, sym__str_double_quotes, - STATE(2314), 1, - sym_block, - STATE(2484), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2376), 1, sym__expression, - STATE(3399), 1, - sym__match_expression, - ACTIONS(2349), 2, + STATE(3167), 1, + sym__where_predicate, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2355), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2359), 6, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(2081), 11, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140271,82 +139793,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47321] = 29, - ACTIONS(3), 1, + [46603] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2921), 1, - anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, - aux_sym_unquoted_token1, - STATE(2), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1182), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(163), 1, - sym__expression, - STATE(165), 1, - sym_unquoted, - STATE(190), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2225), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1189), 1, - sym_comment, - ACTIONS(2915), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2917), 2, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2882), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2919), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(198), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140356,83 +139881,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47435] = 30, - ACTIONS(143), 1, + [46723] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2941), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2947), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2949), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2953), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(2961), 1, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - STATE(12), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(735), 1, - sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(918), 1, - sym__expression, - STATE(923), 1, + STATE(1183), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(1190), 1, - sym_comment, - STATE(2313), 1, - sym__match_expression, - STATE(2314), 1, - sym_block, - ACTIONS(2219), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2951), 2, + STATE(2189), 1, + sym_val_variable, + STATE(2226), 1, + sym__expression, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2878), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2955), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2957), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2963), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2959), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2221), 6, + ACTIONS(237), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, - STATE(816), 11, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140442,82 +139969,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47551] = 29, - ACTIONS(3), 1, + [46843] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2921), 1, - anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, - aux_sym_unquoted_token1, - STATE(2), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1184), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(166), 1, - sym__expression, - STATE(167), 1, - sym_unquoted, - STATE(190), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1191), 1, - sym_comment, - ACTIONS(2915), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2917), 2, + STATE(2231), 1, + sym__expression, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2845), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2919), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(198), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140527,82 +140057,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47665] = 29, - ACTIONS(3), 1, + [46963] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1192), 1, + STATE(1185), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1978), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - STATE(2120), 1, + STATE(2234), 1, sym__expression, - STATE(2122), 1, - sym_unquoted, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(2873), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140612,82 +140145,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47779] = 29, - ACTIONS(3), 1, + [47083] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, - anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, - aux_sym_unquoted_token1, - STATE(94), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1193), 1, + STATE(1186), 1, sym_comment, - STATE(1621), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1790), 1, sym__var, - STATE(1854), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1855), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(1900), 1, - sym_unquoted, - STATE(1901), 1, + STATE(2236), 1, sym__expression, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, + STATE(2869), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1859), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140697,82 +140233,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [47893] = 29, - ACTIONS(3), 1, + [47203] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2921), 1, - anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, - aux_sym_unquoted_token1, - STATE(2), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1187), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(168), 1, - sym__expression, - STATE(169), 1, - sym_unquoted, - STATE(190), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1194), 1, - sym_comment, - ACTIONS(2915), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2917), 2, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2237), 1, + sym__expression, + STATE(2867), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2919), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(198), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140782,82 +140321,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48007] = 29, - ACTIONS(3), 1, + [47323] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1195), 1, + STATE(1188), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1978), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - STATE(2116), 1, + STATE(2238), 1, sym__expression, - STATE(2118), 1, - sym_unquoted, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(2866), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140867,82 +140409,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48121] = 29, - ACTIONS(3), 1, + [47443] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2375), 1, - anon_sym_DOLLAR, - ACTIONS(2379), 1, - anon_sym_DASH, - ACTIONS(2383), 1, - anon_sym_not, - ACTIONS(2879), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2881), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2883), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2885), 1, - anon_sym_DASHinf, - ACTIONS(2887), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2891), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2893), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2895), 1, - aux_sym_unquoted_token1, - STATE(102), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1196), 1, + STATE(1189), 1, sym_comment, - STATE(1704), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1733), 1, + STATE(1790), 1, sym__var, - STATE(2023), 1, - sym__inter_single_quotes, - STATE(2024), 1, - sym__inter_double_quotes, - STATE(2097), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2106), 1, - sym_unquoted, - STATE(2109), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2244), 1, sym__expression, - ACTIONS(2387), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2389), 2, + STATE(2919), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2889), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2385), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2393), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1972), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2391), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2015), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -140952,82 +140497,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48235] = 29, - ACTIONS(3), 1, + [47563] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, - anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, - anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, - aux_sym_unquoted_token1, - STATE(109), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1197), 1, + STATE(1190), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(2428), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2430), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2442), 1, + STATE(2246), 1, sym__expression, - STATE(2444), 1, - sym_unquoted, - STATE(2463), 1, - sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2787), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2558), 3, + STATE(2874), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2564), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2439), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -141037,82 +140585,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48349] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1364), 1, - anon_sym_DOLLAR, - ACTIONS(1366), 1, - anon_sym_DASH, - ACTIONS(1370), 1, - anon_sym_not, - ACTIONS(2765), 1, + [47683] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2767), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2769), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2771), 1, - anon_sym_DASHinf, - ACTIONS(2773), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2779), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2781), 1, - aux_sym_unquoted_token1, - STATE(6), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(266), 1, + STATE(1191), 1, + sym_comment, + STATE(1865), 1, + sym_expr_parenthesized, + STATE(1931), 1, sym__var, - STATE(341), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(358), 1, - sym__inter_double_quotes, - STATE(359), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(375), 1, - sym_unquoted, - STATE(376), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(2373), 1, sym__expression, - STATE(395), 1, - sym_expr_parenthesized, - STATE(1198), 1, - sym_comment, - ACTIONS(1374), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(1376), 2, + STATE(3108), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2775), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1372), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(1380), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(396), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(1378), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(361), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -141122,8 +140673,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48463] = 32, - ACTIONS(143), 1, + [47803] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141147,29 +140698,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1199), 1, + STATE(1192), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2197), 1, + STATE(2133), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2901), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2848), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141194,12 +140745,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141210,8 +140761,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48583] = 32, - ACTIONS(143), 1, + [47923] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141235,29 +140786,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1200), 1, + STATE(1193), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2195), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2881), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2251), 1, + sym__expression, + STATE(2849), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141282,12 +140833,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141298,84 +140849,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48703] = 32, - ACTIONS(31), 1, + [48043] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1201), 1, + STATE(1194), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2301), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3126), 1, + STATE(2259), 1, + sym__expression, + STATE(2850), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141386,8 +140937,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48823] = 32, - ACTIONS(143), 1, + [48163] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141411,29 +140962,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1202), 1, + STATE(1195), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2193), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2908), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2263), 1, + sym__expression, + STATE(2851), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141458,12 +141009,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141474,8 +141025,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [48943] = 32, - ACTIONS(143), 1, + [48283] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141499,29 +141050,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1203), 1, + STATE(1196), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2191), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2913), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2265), 1, + sym__expression, + STATE(2852), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141546,12 +141097,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141562,8 +141113,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49063] = 32, - ACTIONS(143), 1, + [48403] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141587,29 +141138,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1204), 1, + STATE(1197), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2189), 1, + STATE(2165), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2920), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2853), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141634,12 +141185,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141650,8 +141201,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49183] = 32, - ACTIONS(143), 1, + [48523] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141675,29 +141226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1205), 1, + STATE(1198), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2187), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2927), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2269), 1, + sym__expression, + STATE(2856), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141722,12 +141273,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141738,8 +141289,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49303] = 32, - ACTIONS(143), 1, + [48643] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141763,29 +141314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1206), 1, + STATE(1199), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2185), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2929), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2270), 1, + sym__expression, + STATE(2859), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141810,12 +141361,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141826,8 +141377,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49423] = 32, - ACTIONS(143), 1, + [48763] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141851,29 +141402,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1207), 1, + STATE(1200), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2184), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2930), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2272), 1, + sym__expression, + STATE(2860), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141898,12 +141449,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -141914,8 +141465,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49543] = 32, - ACTIONS(143), 1, + [48883] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -141939,29 +141490,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1208), 1, + STATE(1201), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2183), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2931), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2274), 1, + sym__expression, + STATE(2870), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -141986,12 +141537,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -142002,8 +141553,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49663] = 32, - ACTIONS(143), 1, + [49003] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -142027,29 +141578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1209), 1, + STATE(1202), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2182), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2939), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2275), 1, + sym__expression, + STATE(2881), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -142074,12 +141625,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -142090,8 +141641,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49783] = 32, - ACTIONS(143), 1, + [49123] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -142115,29 +141666,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1210), 1, + STATE(1203), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2180), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2941), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2276), 1, + sym__expression, + STATE(2898), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -142162,12 +141713,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -142178,8 +141729,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [49903] = 32, - ACTIONS(143), 1, + [49243] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -142203,29 +141754,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1211), 1, + STATE(1204), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2176), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2963), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2278), 1, + sym__expression, + STATE(2899), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -142250,12 +141801,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -142266,85 +141817,595 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50023] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [49363] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1212), 1, + STATE(1205), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2174), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2363), 1, sym__expression, - STATE(2260), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3172), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(95), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(89), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(85), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, + 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, + [49483] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1206), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(2273), 1, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2476), 1, + sym__expression, + STATE(2477), 1, + sym_unquoted, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + sym_val_bool, sym_val_variable, - STATE(2947), 1, - sym__where_predicate, - ACTIONS(229), 2, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [49597] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1207), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2473), 1, + sym__expression, + STATE(2474), 1, + sym_unquoted, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [49711] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1208), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2468), 1, + sym__expression, + STATE(2472), 1, + sym_unquoted, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [49825] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1209), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2465), 1, + sym__expression, + STATE(2466), 1, + sym_unquoted, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, aux_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_inf, anon_sym_NaN, - ACTIONS(239), 4, + STATE(2429), 11, + 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, + [49939] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1210), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2459), 1, + sym__expression, + STATE(2460), 1, + sym_unquoted, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [50053] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, anon_sym_DASHinf, - STATE(2203), 4, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1211), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2424), 1, + sym_unquoted, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2458), 1, + sym__expression, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -142354,72 +142415,157 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50143] = 29, + [50167] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(2574), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1212), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + STATE(2446), 1, + sym__expression, + STATE(2451), 1, + sym_unquoted, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [50281] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(2963), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(109), 1, sym_val_number, STATE(1213), 1, sym_comment, - STATE(1681), 1, + STATE(1964), 1, sym__var, - STATE(1705), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2013), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2440), 1, sym__expression, - STATE(2014), 1, + STATE(2442), 1, sym_unquoted, - STATE(2111), 1, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2365), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2971), 2, + ACTIONS(2959), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(2961), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(2566), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(2572), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -142427,7 +142573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -142439,72 +142585,242 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50257] = 29, + [50395] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(2574), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1214), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2436), 1, + sym__expression, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2439), 1, + sym_unquoted, + STATE(2444), 1, + sym__str_double_quotes, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [50509] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2957), 1, + anon_sym_not, + ACTIONS(2963), 1, + aux_sym_unquoted_token1, + STATE(109), 1, + sym_val_number, + STATE(1215), 1, + sym_comment, + STATE(1964), 1, + sym__var, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2434), 1, + sym__expression, + STATE(2435), 1, + sym_unquoted, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2959), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2961), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2566), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2576), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(2431), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2572), 7, + aux_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_inf, + anon_sym_NaN, + STATE(2429), 11, + 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, + [50623] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, + ACTIONS(2552), 1, + anon_sym_LPAREN, + ACTIONS(2554), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 1, + anon_sym_DASH, + ACTIONS(2560), 1, + anon_sym_LBRACE, + ACTIONS(2574), 1, + anon_sym_DASHinf, + ACTIONS(2578), 1, + anon_sym_DQUOTE, + ACTIONS(2582), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2584), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2957), 1, anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(2963), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(109), 1, sym_val_number, - STATE(1214), 1, + STATE(1216), 1, sym_comment, - STATE(1681), 1, + STATE(1964), 1, sym__var, - STATE(1705), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(1976), 1, + STATE(2432), 1, + sym__expression, + STATE(2433), 1, sym_unquoted, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2010), 1, - sym__expression, - STATE(2111), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2365), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2971), 2, + ACTIONS(2959), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(2961), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(2566), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(2572), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -142512,7 +142828,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -142524,72 +142840,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50371] = 29, + [50737] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, STATE(2), 1, sym_val_number, - STATE(111), 1, + STATE(110), 1, sym__var, - STATE(145), 1, - sym__expression, - STATE(157), 1, + STATE(147), 1, + sym__inter_double_quotes, + STATE(163), 1, + sym__inter_single_quotes, + STATE(185), 1, sym_expr_parenthesized, - STATE(171), 1, - sym_unquoted, STATE(190), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, - sym__inter_double_quotes, - STATE(1215), 1, + STATE(198), 1, + sym__expression, + STATE(199), 1, + sym_unquoted, + STATE(1217), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -142597,7 +142913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -142609,72 +142925,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50485] = 29, + [50851] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, STATE(2), 1, sym_val_number, - STATE(111), 1, + STATE(110), 1, sym__var, - STATE(157), 1, - sym_expr_parenthesized, - STATE(172), 1, + STATE(145), 1, sym__expression, - STATE(174), 1, - sym_unquoted, + STATE(147), 1, + sym__inter_double_quotes, + STATE(163), 1, + sym__inter_single_quotes, + STATE(185), 1, + sym_expr_parenthesized, STATE(190), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, - sym__inter_double_quotes, - STATE(1216), 1, + STATE(195), 1, + sym_unquoted, + STATE(1218), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -142682,7 +142998,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -142694,72 +143010,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50599] = 29, + [50965] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, STATE(2), 1, sym_val_number, - STATE(111), 1, + STATE(110), 1, sym__var, - STATE(149), 1, - sym_unquoted, - STATE(157), 1, + STATE(147), 1, + sym__inter_double_quotes, + STATE(163), 1, + sym__inter_single_quotes, + STATE(185), 1, sym_expr_parenthesized, - STATE(184), 1, + STATE(189), 1, sym__expression, STATE(190), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, - sym__inter_double_quotes, - STATE(1217), 1, + STATE(192), 1, + sym_unquoted, + STATE(1219), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -142767,7 +143083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -142779,85 +143095,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50713] = 32, - ACTIONS(31), 1, + [51079] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1218), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2312), 1, - sym__expression, - STATE(2315), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(174), 1, + sym__expression, + STATE(179), 1, + sym_unquoted, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3139), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1220), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -142867,85 +143180,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50833] = 32, - ACTIONS(31), 1, + [51193] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1219), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2311), 1, - sym__expression, - STATE(2315), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(159), 1, + sym__expression, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(168), 1, + sym_unquoted, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3175), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1221), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -142955,85 +143265,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [50953] = 32, - ACTIONS(31), 1, + [51307] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1220), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2309), 1, - sym__expression, - STATE(2315), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(157), 1, + sym__expression, + STATE(158), 1, + sym_unquoted, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3171), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1222), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143043,85 +143350,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51073] = 32, - ACTIONS(31), 1, + [51421] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1221), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2308), 1, - sym__expression, - STATE(2315), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(153), 1, + sym__expression, + STATE(154), 1, + sym_unquoted, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3155), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1223), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143131,85 +143435,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51193] = 32, - ACTIONS(31), 1, + [51535] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1222), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2307), 1, - sym__expression, - STATE(2315), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(150), 1, + sym__expression, + STATE(151), 1, + sym_unquoted, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3154), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1224), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143219,72 +143520,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51313] = 29, + [51649] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2811), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(2821), 1, + anon_sym_not, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(2), 1, sym_val_number, - STATE(1223), 1, - sym_comment, - STATE(1681), 1, + STATE(110), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1942), 1, - sym_unquoted, - STATE(1943), 1, - sym__expression, - STATE(1978), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(148), 1, + sym__expression, + STATE(149), 1, + sym_unquoted, + STATE(163), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, + STATE(1225), 1, + sym_comment, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(2837), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -143292,7 +143593,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -143304,85 +143605,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51427] = 32, - ACTIONS(31), 1, + [51763] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1224), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(110), 1, sym__var, - STATE(2306), 1, - sym__expression, - STATE(2315), 1, + STATE(146), 1, + sym_unquoted, + STATE(147), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(163), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(164), 1, + sym__expression, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(3153), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1226), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143392,85 +143690,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51547] = 32, - ACTIONS(143), 1, + [51877] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2815), 1, + anon_sym_DOLLAR, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2831), 1, + anon_sym_DASHinf, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2843), 1, + aux_sym_unquoted_token1, + STATE(2), 1, sym_val_number, - STATE(1225), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(110), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2151), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2949), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(163), 1, + sym__inter_single_quotes, + STATE(172), 1, + sym_unquoted, + STATE(183), 1, + sym__expression, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, + sym__str_double_quotes, + STATE(1227), 1, + sym_comment, + ACTIONS(2825), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2823), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(187), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(169), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143480,72 +143775,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51667] = 29, + [51991] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, + ACTIONS(2811), 1, anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2821), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2831), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2843), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(2), 1, sym_val_number, - STATE(1226), 1, - sym_comment, - STATE(1667), 1, + STATE(110), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(1997), 1, - sym__expression, - STATE(1998), 1, - sym_unquoted, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(2108), 1, + STATE(163), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(184), 1, + sym_unquoted, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, + sym__str_double_quotes, + STATE(197), 1, + sym__expression, + STATE(1228), 1, + sym_comment, + ACTIONS(2825), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2827), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2837), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2823), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2829), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -143553,7 +143848,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -143565,72 +143860,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51781] = 29, + [52105] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2991), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(3001), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(1227), 1, + STATE(1229), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(1890), 1, - sym_unquoted, - STATE(1891), 1, + STATE(1884), 1, sym__expression, - ACTIONS(2245), 2, + STATE(1885), 1, + sym_unquoted, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -143638,7 +143933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -143650,8 +143945,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [51895] = 32, - ACTIONS(143), 1, + [52219] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -143675,29 +143970,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1228), 1, + STATE(1230), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2170), 1, + STATE(2143), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2946), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3067), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -143722,12 +144017,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -143738,85 +144033,167 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52015] = 32, - ACTIONS(143), 1, + [52339] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1229), 1, + STATE(1231), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2168), 1, + STATE(1879), 1, sym__expression, - STATE(2260), 1, + STATE(1880), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2951), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, + 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, + [52453] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, + anon_sym_LBRACK, + ACTIONS(2987), 1, + anon_sym_LPAREN, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(2991), 1, anon_sym_DASHinf, - STATE(2203), 4, + ACTIONS(2993), 1, + anon_sym_DQUOTE, + ACTIONS(2997), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2999), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, + sym_val_number, + STATE(1232), 1, + sym_comment, + STATE(1632), 1, + sym_expr_parenthesized, + STATE(1634), 1, + sym__var, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1876), 1, + sym__expression, + STATE(1878), 1, + sym_unquoted, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2995), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + ACTIONS(2255), 7, + aux_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_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143826,85 +144203,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52135] = 32, - ACTIONS(143), 1, + [52567] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1230), 1, + STATE(1233), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2166), 1, + STATE(1874), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2955), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(1875), 1, + sym_unquoted, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -143914,85 +144288,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52255] = 32, - ACTIONS(143), 1, + [52681] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1231), 1, + STATE(1234), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2165), 1, + STATE(1872), 1, sym__expression, - STATE(2260), 1, + STATE(1873), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2956), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144002,85 +144373,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52375] = 32, - ACTIONS(143), 1, + [52795] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1232), 1, + STATE(1235), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2155), 1, + STATE(1870), 1, sym__expression, - STATE(2260), 1, + STATE(1871), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2958), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144090,85 +144458,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52495] = 32, - ACTIONS(143), 1, + [52909] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1233), 1, + STATE(1236), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2133), 1, + STATE(1868), 1, sym__expression, - STATE(2260), 1, + STATE(1869), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2959), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144178,85 +144543,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52615] = 32, - ACTIONS(143), 1, + [53023] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1234), 1, + STATE(1237), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2134), 1, + STATE(1864), 1, sym__expression, - STATE(2260), 1, + STATE(1866), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2960), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144266,72 +144628,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52735] = 29, + [53137] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2241), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2991), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(3001), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(96), 1, sym_val_number, - STATE(1235), 1, + STATE(1238), 1, sym_comment, - STATE(1621), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1634), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(1892), 1, - sym_unquoted, - STATE(1893), 1, + STATE(1862), 1, sym__expression, - ACTIONS(2245), 2, + STATE(1863), 1, + sym_unquoted, + STATE(1908), 1, + sym__inter_single_quotes, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -144339,7 +144701,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -144351,85 +144713,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52849] = 32, - ACTIONS(143), 1, + [53251] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1236), 1, + STATE(1239), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2135), 1, + STATE(1858), 1, sym__expression, - STATE(2260), 1, + STATE(1859), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2961), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144439,72 +144798,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [52969] = 29, + [53365] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, - anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2239), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2243), 1, anon_sym_DASH, - ACTIONS(2799), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2247), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2985), 1, + anon_sym_LBRACK, + ACTIONS(2987), 1, + anon_sym_LPAREN, + ACTIONS(2989), 1, + anon_sym_LBRACE, + ACTIONS(2991), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(3001), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(96), 1, sym_val_number, - STATE(1237), 1, + STATE(1240), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(2008), 1, + STATE(1634), 1, + sym__var, + STATE(1843), 1, + sym__str_double_quotes, + STATE(1855), 1, sym__expression, - STATE(2011), 1, + STATE(1857), 1, sym_unquoted, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(1908), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(1909), 1, + sym__inter_double_quotes, + ACTIONS(2251), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2249), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(1853), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -144512,7 +144871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(1903), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -144524,85 +144883,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53083] = 32, - ACTIONS(143), 1, + [53479] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1238), 1, + STATE(1241), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2136), 1, + STATE(1851), 1, sym__expression, - STATE(2260), 1, + STATE(1854), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2999), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144612,85 +144968,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53203] = 32, - ACTIONS(143), 1, + [53593] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2239), 1, + anon_sym_DOLLAR, + ACTIONS(2243), 1, + anon_sym_DASH, + ACTIONS(2247), 1, + anon_sym_not, + ACTIONS(2985), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2987), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2989), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2991), 1, + anon_sym_DASHinf, + ACTIONS(2993), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2997), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2999), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3001), 1, + aux_sym_unquoted_token1, + STATE(96), 1, sym_val_number, - STATE(1239), 1, + STATE(1242), 1, sym_comment, - STATE(1779), 1, + STATE(1632), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1634), 1, sym__var, - STATE(2070), 1, + STATE(1843), 1, sym__str_double_quotes, - STATE(2137), 1, + STATE(1849), 1, sym__expression, - STATE(2260), 1, + STATE(1850), 1, + sym_unquoted, + STATE(1908), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(1909), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2964), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2251), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2253), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2995), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2249), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2257), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(1853), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2255), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(1903), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144700,85 +145053,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53323] = 32, - ACTIONS(143), 1, + [53707] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1240), 1, + STATE(1243), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2138), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1941), 1, sym__expression, - STATE(2260), 1, + STATE(1942), 1, + sym_unquoted, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2966), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -144788,72 +145138,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53443] = 29, + [53821] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(2973), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(2983), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(97), 1, sym_val_number, - STATE(1241), 1, + STATE(1244), 1, sym_comment, - STATE(1953), 1, + STATE(1653), 1, sym__var, - STATE(1968), 1, + STATE(1773), 1, sym_expr_parenthesized, - STATE(2425), 1, + STATE(1939), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2429), 1, + STATE(1940), 1, sym_unquoted, - STATE(2430), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(2977), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -144861,7 +145211,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -144873,8 +145223,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53557] = 32, - ACTIONS(143), 1, + [53935] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -144898,29 +145248,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1242), 1, + STATE(1245), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2139), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2967), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2240), 1, + sym__expression, + STATE(2997), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -144945,12 +145295,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -144961,82 +145311,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53677] = 29, - ACTIONS(3), 1, + [54055] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1243), 1, + STATE(1246), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1978), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2211), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2006), 1, - sym__expression, - STATE(2007), 1, - sym_unquoted, - STATE(2111), 1, - sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(2998), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -145046,84 +145399,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53791] = 32, - ACTIONS(31), 1, + [54175] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1244), 1, + STATE(1247), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2305), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2146), 1, sym__expression, - STATE(2315), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3205), 1, + STATE(2999), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145134,84 +145487,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [53911] = 32, - ACTIONS(31), 1, + [54295] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1245), 1, + STATE(1248), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2303), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2145), 1, sym__expression, - STATE(2315), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3152), 1, + STATE(3014), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145222,84 +145575,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54031] = 32, - ACTIONS(31), 1, + [54415] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1246), 1, + STATE(1249), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2302), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2170), 1, sym__expression, - STATE(2315), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3151), 1, + STATE(3056), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145310,84 +145663,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54151] = 32, - ACTIONS(31), 1, + [54535] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1247), 1, + STATE(1250), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2300), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3150), 1, + STATE(2239), 1, + sym__expression, + STATE(2889), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145398,84 +145751,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54271] = 32, - ACTIONS(31), 1, + [54655] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1248), 1, + STATE(1251), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2291), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2216), 1, sym__expression, - STATE(2315), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3149), 1, + STATE(3037), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145486,167 +145839,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54391] = 29, - ACTIONS(3), 1, + [54775] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1249), 1, + STATE(1252), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1933), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2213), 1, sym__expression, - STATE(1978), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2004), 1, - sym_unquoted, - STATE(2111), 1, - sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(3042), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, - 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, - [54505] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, - anon_sym_DASH, - ACTIONS(2961), 1, - anon_sym_DQUOTE, - ACTIONS(2965), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, - aux_sym_unquoted_token1, - STATE(12), 1, - sym_val_number, - STATE(735), 1, - sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(880), 1, - sym_unquoted, - STATE(881), 1, - sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, - sym__str_double_quotes, - STATE(1250), 1, - sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2983), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2953), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(924), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, - aux_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_inf, - anon_sym_NaN, - STATE(816), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -145656,167 +145927,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54619] = 29, - ACTIONS(3), 1, + [54895] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, - aux_sym_unquoted_token1, - STATE(12), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(735), 1, + STATE(1253), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(882), 1, - sym_unquoted, - STATE(883), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2235), 1, sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, - sym__str_double_quotes, - STATE(1251), 1, - sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2983), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2953), 3, + STATE(3045), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2219), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(816), 11, - 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, - [54733] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, - anon_sym_DASH, - ACTIONS(2961), 1, - anon_sym_DQUOTE, - ACTIONS(2965), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, - aux_sym_unquoted_token1, - STATE(12), 1, - sym_val_number, - STATE(735), 1, - sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(884), 1, - sym_unquoted, - STATE(885), 1, - sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, - sym__str_double_quotes, - STATE(1252), 1, - sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2983), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2953), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(924), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, - aux_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_inf, - anon_sym_NaN, - STATE(816), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -145826,82 +146015,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54847] = 29, - ACTIONS(3), 1, + [55015] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, - aux_sym_unquoted_token1, - STATE(12), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(735), 1, - sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(886), 1, - sym_unquoted, - STATE(887), 1, - sym__expression, - STATE(923), 1, + STATE(1254), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(1253), 1, - sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2983), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2953), 3, + STATE(2189), 1, + sym_val_variable, + STATE(2219), 1, + sym__expression, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3046), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2219), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(816), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -145911,84 +146103,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [54961] = 32, - ACTIONS(31), 1, + [55135] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1254), 1, + STATE(1255), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, - STATE(2322), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2176), 1, sym__expression, - STATE(2327), 1, + STATE(2189), 1, sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3147), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3047), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -145999,84 +146191,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55081] = 32, - ACTIONS(31), 1, + [55255] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1255), 1, + STATE(1256), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2292), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3146), 1, + STATE(2249), 1, + sym__expression, + STATE(3048), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -146087,82 +146279,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55201] = 29, - ACTIONS(3), 1, + [55375] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2921), 1, - anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, - aux_sym_unquoted_token1, - STATE(2), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1257), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(176), 1, - sym__expression, - STATE(177), 1, - sym_unquoted, - STATE(190), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1256), 1, - sym_comment, - ACTIONS(2915), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2917), 2, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2271), 1, + sym__expression, + STATE(3055), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2919), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(198), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -146172,72 +146367,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55315] = 29, + [55495] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(7), 1, sym_val_number, - STATE(735), 1, + STATE(264), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(357), 1, sym__inter_double_quotes, - STATE(888), 1, - sym_unquoted, - STATE(889), 1, - sym__expression, - STATE(923), 1, + STATE(364), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(369), 1, + sym__inter_single_quotes, + STATE(380), 1, + sym__expression, + STATE(381), 1, sym__str_double_quotes, - STATE(1257), 1, + STATE(384), 1, + sym_unquoted, + STATE(1258), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146245,7 +146440,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146257,72 +146452,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55429] = 29, + [55609] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(7), 1, sym_val_number, - STATE(735), 1, + STATE(264), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(890), 1, - sym_unquoted, - STATE(891), 1, + STATE(349), 1, sym__expression, - STATE(923), 1, + STATE(357), 1, + sym__inter_double_quotes, + STATE(364), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(369), 1, + sym__inter_single_quotes, + STATE(379), 1, + sym_unquoted, + STATE(381), 1, sym__str_double_quotes, - STATE(1258), 1, + STATE(1259), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146330,7 +146525,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146342,72 +146537,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55543] = 29, + [55723] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(7), 1, sym_val_number, - STATE(735), 1, + STATE(264), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(892), 1, + STATE(342), 1, sym_unquoted, - STATE(893), 1, - sym__expression, - STATE(923), 1, + STATE(357), 1, + sym__inter_double_quotes, + STATE(364), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(369), 1, + sym__inter_single_quotes, + STATE(381), 1, sym__str_double_quotes, - STATE(1259), 1, + STATE(396), 1, + sym__expression, + STATE(1260), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146415,7 +146610,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146427,72 +146622,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55657] = 29, + [55837] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(7), 1, sym_val_number, - STATE(1260), 1, - sym_comment, - STATE(1681), 1, + STATE(264), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1978), 1, + STATE(357), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - STATE(2020), 1, + STATE(374), 1, sym__expression, - STATE(2111), 1, + STATE(381), 1, sym__str_double_quotes, - STATE(2114), 1, + STATE(386), 1, sym_unquoted, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, + STATE(1261), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146500,7 +146695,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146512,72 +146707,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55771] = 29, + [55951] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(7), 1, sym_val_number, - STATE(1261), 1, - sym_comment, - STATE(1681), 1, + STATE(264), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1934), 1, - sym_unquoted, - STATE(1935), 1, + STATE(355), 1, sym__expression, - STATE(1978), 1, + STATE(357), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(371), 1, + sym_unquoted, + STATE(381), 1, sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, + STATE(1262), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146585,7 +146780,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146597,72 +146792,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55885] = 29, + [56065] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(7), 1, sym_val_number, - STATE(1262), 1, - sym_comment, - STATE(1681), 1, + STATE(264), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1936), 1, - sym_unquoted, - STATE(1937), 1, + STATE(325), 1, sym__expression, - STATE(1978), 1, + STATE(352), 1, + sym_unquoted, + STATE(357), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(381), 1, sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, + STATE(1263), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146670,7 +146865,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146682,72 +146877,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [55999] = 29, + [56179] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(2566), 1, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2570), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2783), 1, - anon_sym_not, - ACTIONS(2789), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(109), 1, + STATE(7), 1, sym_val_number, - STATE(1263), 1, - sym_comment, - STATE(1953), 1, + STATE(264), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, - sym__inter_single_quotes, - STATE(2434), 1, + STATE(327), 1, sym__expression, - STATE(2437), 1, + STATE(357), 1, + sym__inter_double_quotes, + STATE(360), 1, sym_unquoted, - STATE(2463), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, + sym__inter_single_quotes, + STATE(381), 1, sym__str_double_quotes, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2785), 2, + STATE(1264), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2787), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2558), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2568), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2564), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146755,7 +146950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2439), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146767,72 +146962,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56113] = 29, + [56293] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(1427), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(2), 1, + STATE(7), 1, sym_val_number, - STATE(111), 1, + STATE(264), 1, sym__var, - STATE(157), 1, - sym_expr_parenthesized, - STATE(180), 1, - sym__expression, - STATE(181), 1, + STATE(330), 1, sym_unquoted, - STATE(190), 1, - sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(331), 1, + sym__expression, + STATE(357), 1, sym__inter_double_quotes, - STATE(1264), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, + sym__inter_single_quotes, + STATE(381), 1, + sym__str_double_quotes, + STATE(1265), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(3013), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -146840,7 +147035,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -146852,85 +147047,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56227] = 32, - ACTIONS(31), 1, + [56407] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1421), 1, + anon_sym_DOLLAR, + ACTIONS(1423), 1, + anon_sym_DASH, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(3019), 1, + aux_sym_unquoted_token1, + STATE(7), 1, sym_val_number, - STATE(1265), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(264), 1, sym__var, - STATE(2287), 1, + STATE(332), 1, + sym_unquoted, + STATE(333), 1, sym__expression, - STATE(2315), 1, + STATE(357), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(381), 1, sym__str_double_quotes, - STATE(3145), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1266), 1, + sym_comment, + ACTIONS(1431), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3013), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1429), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(365), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(393), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -146940,72 +147132,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56347] = 29, + [56521] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, - anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2799), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_LBRACE, + ACTIONS(2973), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2983), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(97), 1, sym_val_number, - STATE(1266), 1, + STATE(1267), 1, sym_comment, - STATE(1667), 1, + STATE(1653), 1, sym__var, - STATE(1763), 1, + STATE(1773), 1, sym_expr_parenthesized, - STATE(2018), 1, + STATE(1937), 1, sym__expression, - STATE(2025), 1, + STATE(1938), 1, sym_unquoted, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(2044), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147013,7 +147205,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147025,72 +147217,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56461] = 29, + [56635] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, - anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2799), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(1427), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(7), 1, sym_val_number, - STATE(1267), 1, - sym_comment, - STATE(1667), 1, + STATE(264), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(2031), 1, - sym__expression, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2045), 1, + STATE(334), 1, sym_unquoted, - STATE(2107), 1, + STATE(335), 1, + sym__expression, + STATE(357), 1, sym__inter_double_quotes, - STATE(2108), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(381), 1, + sym__str_double_quotes, + STATE(1268), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(3013), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147098,7 +147290,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147110,72 +147302,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56575] = 29, + [56749] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(7), 1, sym_val_number, - STATE(735), 1, + STATE(264), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, - sym__inter_double_quotes, - STATE(894), 1, + STATE(336), 1, sym_unquoted, - STATE(895), 1, + STATE(337), 1, sym__expression, - STATE(923), 1, + STATE(357), 1, + sym__inter_double_quotes, + STATE(364), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(369), 1, + sym__inter_single_quotes, + STATE(381), 1, sym__str_double_quotes, - STATE(1268), 1, + STATE(1269), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(3013), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147183,7 +147375,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147195,85 +147387,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56689] = 32, - ACTIONS(31), 1, + [56863] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1269), 1, + STATE(1270), 1, sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(1653), 1, sym__var, - STATE(2289), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1935), 1, sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(1936), 1, + sym_unquoted, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, sym__str_double_quotes, - STATE(3144), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147283,72 +147472,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56809] = 29, + [56977] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, - anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(1421), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(1423), 1, anon_sym_DASH, - ACTIONS(2799), 1, - anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(1427), 1, anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(3003), 1, + anon_sym_LBRACK, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(3007), 1, + anon_sym_LBRACE, + ACTIONS(3009), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(3019), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(7), 1, sym_val_number, - STATE(1270), 1, - sym_comment, - STATE(1667), 1, + STATE(264), 1, sym__var, - STATE(1763), 1, - sym_expr_parenthesized, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2048), 1, - sym__expression, - STATE(2052), 1, + STATE(338), 1, sym_unquoted, - STATE(2107), 1, + STATE(339), 1, + sym__expression, + STATE(357), 1, sym__inter_double_quotes, - STATE(2108), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(381), 1, + sym__str_double_quotes, + STATE(1271), 1, + sym_comment, + ACTIONS(1431), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(3013), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(1429), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(365), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -147356,7 +147545,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(393), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -147368,85 +147557,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [56923] = 32, - ACTIONS(31), 1, + [57091] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1421), 1, + anon_sym_DOLLAR, + ACTIONS(1423), 1, + anon_sym_DASH, + ACTIONS(1427), 1, + anon_sym_not, + ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(3005), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(3007), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(3009), 1, + anon_sym_DASHinf, + ACTIONS(3011), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(3015), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(3019), 1, + aux_sym_unquoted_token1, + STATE(7), 1, sym_val_number, - STATE(1271), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(264), 1, sym__var, - STATE(2315), 1, + STATE(340), 1, + sym_unquoted, + STATE(343), 1, + sym__expression, + STATE(357), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(364), 1, + sym_expr_parenthesized, + STATE(369), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(381), 1, sym__str_double_quotes, - STATE(2415), 1, - sym__expression, - STATE(3142), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(1272), 1, + sym_comment, + ACTIONS(1431), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1433), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(3013), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1429), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1437), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(365), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1435), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(393), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147456,85 +147642,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57043] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [57205] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1272), 1, + STATE(1273), 1, sym_comment, - STATE(1871), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1738), 1, sym__var, - STATE(2296), 1, - sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2083), 1, + sym_unquoted, + STATE(2084), 1, + sym__expression, + STATE(2115), 1, sym__str_double_quotes, - STATE(3138), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147544,85 +147727,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57163] = 32, - ACTIONS(143), 1, + [57319] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1273), 1, + STATE(1274), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2196), 1, - sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3019), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2078), 1, + sym_unquoted, + STATE(2080), 1, + sym__expression, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147632,85 +147812,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57283] = 32, - ACTIONS(143), 1, + [57433] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1274), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(128), 1, sym__var, - STATE(2070), 1, + STATE(211), 1, sym__str_double_quotes, - STATE(2194), 1, + STATE(213), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(214), 1, + sym_unquoted, + STATE(224), 1, + sym_expr_parenthesized, + STATE(240), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3018), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(242), 1, + sym__inter_single_quotes, + STATE(1275), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147720,85 +147897,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57403] = 32, - ACTIONS(143), 1, + [57547] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1275), 1, + STATE(1276), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2192), 1, - sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3017), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2072), 1, + sym_unquoted, + STATE(2073), 1, + sym__expression, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147808,85 +147982,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57523] = 32, - ACTIONS(143), 1, + [57661] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1276), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(128), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2190), 1, + STATE(207), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(208), 1, + sym_unquoted, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, + sym_expr_parenthesized, + STATE(240), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3016), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(242), 1, + sym__inter_single_quotes, + STATE(1277), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147896,85 +148067,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57643] = 32, - ACTIONS(143), 1, + [57775] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2781), 1, + anon_sym_DOLLAR, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2797), 1, + anon_sym_DASHinf, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2809), 1, + aux_sym_unquoted_token1, + STATE(5), 1, sym_val_number, - STATE(1277), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(128), 1, sym__var, - STATE(2070), 1, + STATE(211), 1, sym__str_double_quotes, - STATE(2188), 1, + STATE(222), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(224), 1, + sym_expr_parenthesized, + STATE(240), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3014), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(242), 1, + sym__inter_single_quotes, + STATE(250), 1, + sym_unquoted, + STATE(1278), 1, + sym_comment, + ACTIONS(2791), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2789), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(227), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(257), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -147984,84 +148152,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57763] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [57889] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1278), 1, + STATE(1279), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2186), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2336), 1, sym_val_variable, - STATE(3013), 1, + STATE(2337), 1, + sym__expression, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3312), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -148072,85 +148240,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [57883] = 32, - ACTIONS(143), 1, + [58009] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1279), 1, + STATE(1280), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2181), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1934), 1, + sym_unquoted, + STATE(2033), 1, sym__expression, - STATE(2260), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3011), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148160,84 +148325,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58003] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, + [58123] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(79), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(81), 1, sym_val_nothing, - ACTIONS(243), 1, + ACTIONS(91), 1, sym_val_date, - ACTIONS(245), 1, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - STATE(92), 1, + STATE(93), 1, sym_val_number, - STATE(1280), 1, + STATE(1281), 1, sym_comment, - STATE(1779), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2070), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(2179), 1, - sym__expression, - STATE(2260), 1, + STATE(2331), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2335), 1, + sym__expression, + STATE(2336), 1, sym_val_variable, - STATE(3005), 1, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3292), 1, sym__where_predicate, - ACTIONS(229), 2, + ACTIONS(77), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -148248,85 +148413,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58123] = 32, - ACTIONS(143), 1, + [58243] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1281), 1, + STATE(1282), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2177), 1, - sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2997), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2065), 1, + sym_unquoted, + STATE(2069), 1, + sym__expression, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148336,85 +148498,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58243] = 32, - ACTIONS(143), 1, + [58357] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1282), 1, + STATE(1283), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2175), 1, - sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3001), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2049), 1, + sym_unquoted, + STATE(2064), 1, + sym__expression, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148424,85 +148583,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58363] = 32, - ACTIONS(143), 1, + [58471] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1283), 1, + STATE(1284), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2173), 1, + STATE(2030), 1, + sym_unquoted, + STATE(2041), 1, sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3000), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148512,85 +148668,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58483] = 32, - ACTIONS(143), 1, + [58585] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1284), 1, + STATE(1285), 1, sym_comment, - STATE(1779), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1738), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2171), 1, + STATE(2021), 1, + sym_unquoted, + STATE(2026), 1, sym__expression, - STATE(2260), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(3040), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148600,85 +148753,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58603] = 32, - ACTIONS(143), 1, + [58699] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1285), 1, + STATE(1286), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2169), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1974), 1, + sym_unquoted, + STATE(1982), 1, sym__expression, - STATE(2260), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2998), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148688,85 +148838,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58723] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [58813] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1286), 1, + STATE(1287), 1, sym_comment, - STATE(1871), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1738), 1, sym__var, - STATE(2299), 1, + STATE(2019), 1, + sym_unquoted, + STATE(2020), 1, sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(3134), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148776,85 +148923,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58843] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [58927] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1287), 1, + STATE(1288), 1, sym_comment, - STATE(1871), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1738), 1, sym__var, - STATE(2285), 1, + STATE(2011), 1, sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2088), 1, + sym_unquoted, + STATE(2115), 1, sym__str_double_quotes, - STATE(3133), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148864,85 +149008,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [58963] = 32, - ACTIONS(31), 1, - anon_sym_LBRACK, - ACTIONS(33), 1, + [59041] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(2439), 1, + anon_sym_DOLLAR, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, + aux_sym_unquoted_token1, + STATE(100), 1, sym_val_number, - STATE(1288), 1, + STATE(1289), 1, sym_comment, - STATE(1871), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1738), 1, sym__var, - STATE(2286), 1, + STATE(1981), 1, sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, + STATE(2040), 1, + sym_unquoted, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(3131), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(3023), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2453), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(2018), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2005), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -148952,72 +149093,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59083] = 29, + [59155] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(2443), 1, + anon_sym_LBRACE, + ACTIONS(2461), 1, + anon_sym_DASHinf, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(3027), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(100), 1, sym_val_number, - STATE(735), 1, + STATE(1290), 1, + sym_comment, + STATE(1720), 1, + sym_expr_parenthesized, + STATE(1738), 1, sym__var, - STATE(819), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(820), 1, + STATE(2046), 1, sym__inter_double_quotes, - STATE(896), 1, - sym_unquoted, - STATE(897), 1, + STATE(2076), 1, sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, + STATE(2101), 1, + sym_unquoted, + STATE(2115), 1, sym__str_double_quotes, - STATE(1289), 1, - sym_comment, - ACTIONS(2963), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(3023), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(3025), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(2453), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -149025,7 +149166,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149037,72 +149178,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59197] = 29, + [59269] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, - anon_sym_not, - ACTIONS(2811), 1, + ACTIONS(2461), 1, anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, aux_sym_unquoted_token1, - STATE(101), 1, + STATE(100), 1, sym_val_number, - STATE(1290), 1, + STATE(1291), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2060), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, + sym__inter_single_quotes, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2091), 1, sym__expression, - STATE(2062), 1, + STATE(2099), 1, sym_unquoted, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, - sym__inter_single_quotes, - ACTIONS(2805), 2, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3023), 2, sym_val_nothing, sym_val_date, - ACTIONS(2807), 2, + ACTIONS(3025), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2803), 3, + ACTIONS(2453), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2809), 7, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -149110,7 +149251,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2115), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149122,72 +149263,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59311] = 29, + [59383] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2237), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, - anon_sym_LBRACK, - ACTIONS(2863), 1, - anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, + ACTIONS(2461), 1, anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3027), 1, aux_sym_unquoted_token1, - STATE(94), 1, + STATE(100), 1, sym_val_number, - STATE(1291), 1, + STATE(1292), 1, sym_comment, - STATE(1621), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1738), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, + STATE(2043), 1, sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(1894), 1, - sym_unquoted, - STATE(1895), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2057), 1, sym__expression, - ACTIONS(2245), 2, + STATE(2082), 1, + sym_unquoted, + STATE(2115), 1, + sym__str_double_quotes, + ACTIONS(2467), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3023), 2, sym_val_nothing, sym_val_date, - ACTIONS(2247), 2, + ACTIONS(3025), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2243), 3, + ACTIONS(2453), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2249), 7, + ACTIONS(2459), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -149195,7 +149336,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1859), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149207,72 +149348,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59425] = 29, + [59497] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1585), 1, + anon_sym_not, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(8), 1, sym_val_number, - STATE(735), 1, + STATE(290), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(898), 1, + STATE(400), 1, sym_unquoted, - STATE(899), 1, + STATE(401), 1, sym__expression, - STATE(923), 1, + STATE(404), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(449), 1, sym__str_double_quotes, - STATE(1292), 1, + STATE(1293), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(2763), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -149280,7 +149421,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -149292,84 +149433,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59539] = 32, - ACTIONS(31), 1, + [59611] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1293), 1, + STATE(1294), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2288), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3130), 1, + STATE(2260), 1, + sym__expression, + STATE(2958), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -149380,82 +149521,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59659] = 29, - ACTIONS(3), 1, + [59731] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, - anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, - aux_sym_unquoted_token1, - STATE(94), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1294), 1, + STATE(1295), 1, sym_comment, - STATE(1621), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1790), 1, sym__var, - STATE(1854), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1855), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1866), 1, - sym__str_double_quotes, - STATE(1896), 1, - sym_unquoted, - STATE(1897), 1, + STATE(2258), 1, sym__expression, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, + STATE(2967), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1859), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -149465,82 +149609,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59773] = 29, - ACTIONS(3), 1, + [59851] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2791), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, - anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2811), 1, - anon_sym_DASHinf, - ACTIONS(2815), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2823), 1, - aux_sym_unquoted_token1, - STATE(101), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1295), 1, + STATE(1296), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(2038), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(2064), 1, - sym__expression, - STATE(2066), 1, - sym_unquoted, - STATE(2107), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2108), 1, + STATE(2232), 1, sym__inter_single_quotes, - ACTIONS(2805), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2807), 2, + STATE(2267), 1, + sym__expression, + STATE(2969), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2817), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2803), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1980), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2809), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2115), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -149550,7 +149697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [59887] = 32, + [59971] = 32, ACTIONS(31), 1, anon_sym_LBRACK, ACTIONS(33), 1, @@ -149573,31 +149720,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(973), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2773), 1, sym_identifier, STATE(93), 1, sym_val_number, - STATE(1296), 1, + STATE(1297), 1, sym_comment, - STATE(1871), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1931), 1, sym__var, - STATE(2290), 1, - sym__expression, - STATE(2315), 1, - sym__inter_double_quotes, - STATE(2317), 1, - sym__inter_single_quotes, STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, sym__str_double_quotes, - STATE(3129), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2340), 1, + sym__expression, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3089), 1, sym__where_predicate, ACTIONS(77), 2, anon_sym_DOT_DOT_LT, @@ -149622,12 +149769,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2329), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2321), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -149638,84 +149785,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60007] = 32, - ACTIONS(31), 1, + [60091] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1297), 1, + STATE(1298), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2295), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3128), 1, + STATE(2252), 1, + sym__expression, + STATE(2971), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -149726,84 +149873,84 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60127] = 32, - ACTIONS(31), 1, + [60211] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(39), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(75), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(79), 1, + ACTIONS(231), 1, anon_sym_DOT_DOT, - ACTIONS(81), 1, + ACTIONS(233), 1, sym_val_nothing, - ACTIONS(91), 1, + ACTIONS(243), 1, sym_val_date, - ACTIONS(93), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2763), 1, + ACTIONS(2771), 1, sym_identifier, - STATE(93), 1, + STATE(92), 1, sym_val_number, - STATE(1298), 1, + STATE(1299), 1, sym_comment, - STATE(1871), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2297), 1, - sym__expression, - STATE(2315), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, - sym__str_double_quotes, - STATE(3127), 1, + STATE(2245), 1, + sym__expression, + STATE(2847), 1, sym__where_predicate, - ACTIONS(77), 2, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(87), 4, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2319), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2408), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -149814,82 +149961,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60247] = 29, - ACTIONS(3), 1, + [60331] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1299), 1, + STATE(1300), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1938), 1, - sym_unquoted, - STATE(1939), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2217), 1, sym__expression, - STATE(1978), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(2978), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -149899,82 +150049,261 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60361] = 29, - ACTIONS(3), 1, + [60451] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2943), 1, - anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, - aux_sym_unquoted_token1, - STATE(12), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(735), 1, + STATE(1301), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(900), 1, - sym_unquoted, - STATE(901), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2243), 1, sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, - sym__str_double_quotes, - STATE(1300), 1, - sym_comment, - ACTIONS(2963), 2, + STATE(3005), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(241), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, + 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, + [60571] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, sym_val_nothing, + ACTIONS(243), 1, sym_val_date, - ACTIONS(2983), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(245), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(251), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, + sym_val_number, + STATE(1302), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2242), 1, + sym__expression, + STATE(3012), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + ACTIONS(237), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + STATE(2253), 10, + 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, + [60691] = 32, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, + anon_sym_LPAREN, + ACTIONS(189), 1, + anon_sym_DASH, + ACTIONS(207), 1, + anon_sym_LBRACE, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(251), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, + sym_val_number, + STATE(1303), 1, + sym_comment, + STATE(1782), 1, + sym_expr_parenthesized, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(2241), 1, + sym__expression, + STATE(3013), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(816), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -149984,82 +150313,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60475] = 29, - ACTIONS(3), 1, + [60811] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, - anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(227), 1, + anon_sym_not, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, - aux_sym_unquoted_token1, - STATE(98), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1301), 1, + STATE(1304), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1940), 1, - sym_unquoted, - STATE(1941), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2189), 1, + sym_val_variable, + STATE(2222), 1, sym__expression, - STATE(1978), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2973), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2351), 3, + STATE(3019), 1, + sym__where_predicate, + ACTIONS(229), 2, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(235), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(247), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2357), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(2081), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150069,82 +150401,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60589] = 29, - ACTIONS(3), 1, + [60931] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, - anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(2921), 1, - anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, - aux_sym_unquoted_token1, - STATE(2), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(111), 1, - sym__var, - STATE(157), 1, + STATE(1305), 1, + sym_comment, + STATE(1782), 1, sym_expr_parenthesized, - STATE(182), 1, - sym__expression, - STATE(183), 1, - sym_unquoted, - STATE(190), 1, + STATE(1790), 1, + sym__var, + STATE(2103), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2220), 1, + sym__expression, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1302), 1, - sym_comment, - ACTIONS(2915), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2917), 2, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3020), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2919), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(198), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150154,8 +150489,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60703] = 32, - ACTIONS(143), 1, + [61051] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -150179,29 +150514,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1303), 1, + STATE(1306), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2140), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2218), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2975), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3024), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -150226,12 +150561,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -150242,82 +150577,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60823] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_DOLLAR, - ACTIONS(2237), 1, - anon_sym_DASH, - ACTIONS(2241), 1, - anon_sym_not, - ACTIONS(2861), 1, + [61171] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2863), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2865), 1, + ACTIONS(39), 1, + anon_sym_DASH, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2867), 1, - anon_sym_DASHinf, - ACTIONS(2869), 1, + ACTIONS(75), 1, + anon_sym_not, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(2873), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2875), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2877), 1, - aux_sym_unquoted_token1, - STATE(94), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1304), 1, + STATE(1307), 1, sym_comment, - STATE(1621), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1638), 1, + STATE(1931), 1, sym__var, - STATE(1854), 1, - sym__inter_double_quotes, - STATE(1855), 1, - sym__inter_single_quotes, - STATE(1866), 1, + STATE(2327), 1, sym__str_double_quotes, - STATE(1898), 1, - sym_unquoted, - STATE(1899), 1, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2333), 1, sym__expression, - ACTIONS(2245), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(2247), 2, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3325), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(2871), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2243), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(2251), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1909), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(2249), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1859), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150327,82 +150665,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [60937] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2987), 1, + [61291] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1305), 1, + STATE(1308), 1, sym_comment, - STATE(1529), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1531), 1, + STATE(1931), 1, sym__var, - STATE(1713), 1, - sym_unquoted, - STATE(1714), 1, + STATE(2327), 1, + sym__str_double_quotes, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2332), 1, sym__expression, - STATE(1752), 1, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, sym__inter_double_quotes, - STATE(1753), 1, - sym__inter_single_quotes, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, + STATE(3215), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3005), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1715), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150412,72 +150753,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61051] = 29, + [61411] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, + ACTIONS(2777), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(2787), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2797), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2809), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(5), 1, sym_val_number, - STATE(1306), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(128), 1, sym__var, - STATE(1711), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(224), 1, + sym_expr_parenthesized, + STATE(237), 1, sym_unquoted, - STATE(1712), 1, + STATE(238), 1, sym__expression, - STATE(1752), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(1309), 1, + sym_comment, + ACTIONS(2791), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(2793), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2803), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(2789), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(2795), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -150485,7 +150826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -150497,82 +150838,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61165] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2987), 1, + [61525] = 32, + ACTIONS(31), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(39), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(75), 1, anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(79), 1, + anon_sym_DOT_DOT, + ACTIONS(81), 1, + sym_val_nothing, + ACTIONS(91), 1, + sym_val_date, + ACTIONS(93), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(97), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(99), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(973), 1, + anon_sym_DOLLAR, + ACTIONS(2773), 1, + sym_identifier, + STATE(93), 1, sym_val_number, - STATE(1307), 1, + STATE(1310), 1, sym_comment, - STATE(1529), 1, + STATE(1865), 1, sym_expr_parenthesized, - STATE(1531), 1, + STATE(1931), 1, sym__var, - STATE(1707), 1, - sym_unquoted, - STATE(1709), 1, + STATE(2320), 1, sym__expression, - STATE(1752), 1, - sym__inter_double_quotes, - STATE(1753), 1, - sym__inter_single_quotes, - STATE(1778), 1, + STATE(2327), 1, sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, + STATE(2331), 1, + sym__inter_single_quotes, + STATE(2336), 1, + sym_val_variable, + STATE(2371), 1, + sym__inter_double_quotes, + STATE(3207), 1, + sym__where_predicate, + ACTIONS(77), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(83), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(95), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(89), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3005), 7, + ACTIONS(85), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1715), 11, + anon_sym_DASHinf, + STATE(2329), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2321), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150582,82 +150926,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61279] = 29, - ACTIONS(3), 1, + [61645] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2987), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1308), 1, + STATE(1311), 1, sym_comment, - STATE(1529), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1531), 1, + STATE(1790), 1, sym__var, - STATE(1693), 1, - sym_unquoted, - STATE(1706), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2134), 1, sym__expression, - STATE(1752), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, + STATE(3030), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3005), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1715), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150667,72 +151014,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61393] = 29, + [61765] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(2409), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, + anon_sym_LBRACE, + ACTIONS(2973), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2983), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(97), 1, sym_val_number, - STATE(1309), 1, + STATE(1312), 1, sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(1653), 1, sym__var, - STATE(1678), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1984), 1, + sym_unquoted, + STATE(1985), 1, sym__expression, - STATE(1752), 1, - sym__inter_double_quotes, - STATE(1753), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(1760), 1, - sym_unquoted, - STATE(1778), 1, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -150740,7 +151087,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -150752,8 +151099,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61507] = 32, - ACTIONS(143), 1, + [61879] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -150777,29 +151124,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1310), 1, + STATE(1313), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2141), 1, + STATE(2189), 1, + sym_val_variable, + STATE(2214), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2976), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3057), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -150824,12 +151171,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -150840,82 +151187,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61627] = 29, - ACTIONS(3), 1, + [61999] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2987), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1311), 1, + STATE(1314), 1, sym_comment, - STATE(1529), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1531), 1, + STATE(1790), 1, sym__var, - STATE(1752), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2135), 1, + sym__expression, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1757), 1, - sym_unquoted, - STATE(1758), 1, - sym__expression, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, + STATE(3070), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3005), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1715), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -150925,82 +151275,85 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61741] = 29, - ACTIONS(3), 1, + [62119] = 32, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2987), 1, + ACTIONS(179), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(181), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(189), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(207), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(227), 1, anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(231), 1, + anon_sym_DOT_DOT, + ACTIONS(233), 1, + sym_val_nothing, + ACTIONS(243), 1, + sym_val_date, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(249), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, + ACTIONS(971), 1, + anon_sym_DOLLAR, + ACTIONS(2771), 1, + sym_identifier, + STATE(92), 1, sym_val_number, - STATE(1312), 1, + STATE(1315), 1, sym_comment, - STATE(1529), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1531), 1, + STATE(1790), 1, sym__var, - STATE(1747), 1, - sym_unquoted, - STATE(1752), 1, + STATE(2103), 1, + sym__str_double_quotes, + STATE(2136), 1, + sym__expression, + STATE(2189), 1, + sym_val_variable, + STATE(2228), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(2232), 1, sym__inter_single_quotes, - STATE(1756), 1, - sym__expression, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, + STATE(3075), 1, + sym__where_predicate, + ACTIONS(229), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(235), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(247), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(241), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(3005), 7, + ACTIONS(237), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - STATE(1715), 11, + anon_sym_DASHinf, + STATE(2151), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -151010,8 +151363,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61855] = 32, - ACTIONS(143), 1, + [62239] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -151035,29 +151388,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1313), 1, + STATE(1316), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2142), 1, + STATE(2137), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2977), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3071), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -151082,12 +151435,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -151098,72 +151451,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [61975] = 29, + [62359] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(8), 1, sym_val_number, - STATE(1314), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(290), 1, sym__var, - STATE(1700), 1, - sym_unquoted, - STATE(1731), 1, - sym__expression, - STATE(1752), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(412), 1, + sym__expression, + STATE(418), 1, + sym_unquoted, + STATE(422), 1, sym__inter_single_quotes, - STATE(1778), 1, + STATE(449), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(1317), 1, + sym_comment, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -151171,7 +151524,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -151183,72 +151536,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62089] = 29, + [62473] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(8), 1, sym_val_number, - STATE(1315), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(290), 1, sym__var, - STATE(1657), 1, - sym_unquoted, - STATE(1752), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(1753), 1, - sym__inter_single_quotes, - STATE(1762), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(420), 1, sym__expression, - STATE(1778), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(424), 1, + sym_unquoted, + STATE(449), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(1318), 1, + sym_comment, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -151256,7 +151609,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -151268,8 +151621,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62203] = 32, - ACTIONS(143), 1, + [62587] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -151293,29 +151646,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1316), 1, + STATE(1319), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2143), 1, + STATE(2138), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2978), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3074), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -151340,98 +151693,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, - 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, - [62323] = 29, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, - anon_sym_DOLLAR, - ACTIONS(2993), 1, - anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, - anon_sym_not, - ACTIONS(3007), 1, - anon_sym_DASHinf, - ACTIONS(3011), 1, - anon_sym_DQUOTE, - ACTIONS(3015), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, - aux_sym_unquoted_token1, - STATE(90), 1, - sym_val_number, - STATE(1317), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, - sym__var, - STATE(1654), 1, - sym_unquoted, - STATE(1655), 1, - sym__expression, - STATE(1752), 1, - sym__inter_double_quotes, - STATE(1753), 1, - sym__inter_single_quotes, - STATE(1778), 1, - sym__str_double_quotes, - ACTIONS(3001), 2, - sym_val_nothing, - sym_val_date, - ACTIONS(3003), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3013), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2999), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - STATE(1735), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, - aux_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_inf, - anon_sym_NaN, - STATE(1715), 11, + STATE(2253), 10, sym_val_bool, - sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -151441,8 +151709,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62437] = 32, - ACTIONS(143), 1, + [62707] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -151466,29 +151734,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1318), 1, + STATE(1320), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2144), 1, + STATE(2139), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2842), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3072), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -151513,12 +151781,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -151529,72 +151797,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62557] = 29, + [62827] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2335), 1, - anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2401), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2405), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, + anon_sym_LBRACK, + ACTIONS(2969), 1, + anon_sym_LPAREN, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, + ACTIONS(2973), 1, anon_sym_DASHinf, - ACTIONS(2363), 1, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2969), 1, - anon_sym_not, - ACTIONS(2975), 1, + ACTIONS(2983), 1, aux_sym_unquoted_token1, - STATE(98), 1, + STATE(97), 1, sym_val_number, - STATE(1319), 1, + STATE(1321), 1, sym_comment, - STATE(1681), 1, + STATE(1653), 1, sym__var, - STATE(1705), 1, + STATE(1773), 1, sym_expr_parenthesized, - STATE(1944), 1, + STATE(1986), 1, sym_unquoted, - STATE(1945), 1, + STATE(1987), 1, sym__expression, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2045), 1, + sym__inter_double_quotes, + STATE(2118), 1, sym__str_double_quotes, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2971), 2, + ACTIONS(2413), 2, sym_val_nothing, sym_val_date, - ACTIONS(2973), 2, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(2351), 3, + ACTIONS(2977), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2411), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2361), 3, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2077), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2357), 7, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -151602,7 +151870,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(2081), 11, + STATE(2036), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -151614,8 +151882,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62671] = 32, - ACTIONS(143), 1, + [62941] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -151639,117 +151907,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1320), 1, + STATE(1322), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2145), 1, + STATE(2140), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2980), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(247), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(241), 3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(237), 4, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, - 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, - [62791] = 32, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(179), 1, - anon_sym_LBRACK, - ACTIONS(181), 1, - anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, - anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(249), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, - sym_val_number, - STATE(1321), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, - sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2146), 1, - sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, + STATE(2228), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2981), 1, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3069), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -151774,12 +151954,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -151790,8 +151970,8 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [62911] = 32, - ACTIONS(143), 1, + [63061] = 32, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(179), 1, anon_sym_LBRACK, @@ -151815,29 +151995,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, ACTIONS(251), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, + ACTIONS(971), 1, anon_sym_DOLLAR, - ACTIONS(2935), 1, + ACTIONS(2771), 1, sym_identifier, STATE(92), 1, sym_val_number, - STATE(1322), 1, + STATE(1323), 1, sym_comment, - STATE(1779), 1, + STATE(1782), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1790), 1, sym__var, - STATE(2070), 1, + STATE(2103), 1, sym__str_double_quotes, - STATE(2147), 1, + STATE(2142), 1, sym__expression, - STATE(2260), 1, - sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, + STATE(2189), 1, sym_val_variable, - STATE(2983), 1, + STATE(2228), 1, + sym__inter_double_quotes, + STATE(2232), 1, + sym__inter_single_quotes, + STATE(3068), 1, sym__where_predicate, ACTIONS(229), 2, anon_sym_DOT_DOT_LT, @@ -151862,12 +152042,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(2151), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2253), 10, sym_val_bool, sym_val_duration, sym_val_filesize, @@ -151878,72 +152058,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63031] = 29, + [63181] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(2), 1, + STATE(8), 1, sym_val_number, - STATE(111), 1, + STATE(290), 1, sym__var, - STATE(157), 1, + STATE(399), 1, + sym__inter_double_quotes, + STATE(404), 1, sym_expr_parenthesized, - STATE(186), 1, - sym__expression, - STATE(187), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(425), 1, sym_unquoted, - STATE(190), 1, + STATE(449), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, - sym__inter_double_quotes, - STATE(1323), 1, + STATE(455), 1, + sym__expression, + STATE(1324), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -151951,7 +152131,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -151963,72 +152143,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63145] = 29, + [63295] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(8), 1, sym_val_number, - STATE(1324), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(290), 1, sym__var, - STATE(1652), 1, - sym_unquoted, - STATE(1653), 1, - sym__expression, - STATE(1752), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(422), 1, sym__inter_single_quotes, - STATE(1778), 1, + STATE(427), 1, + sym__expression, + STATE(428), 1, + sym_unquoted, + STATE(449), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(1325), 1, + sym_comment, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152036,7 +152216,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152048,72 +152228,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63259] = 29, + [63409] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(8), 1, sym_val_number, - STATE(1325), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(290), 1, sym__var, - STATE(1650), 1, - sym__expression, - STATE(1749), 1, - sym_unquoted, - STATE(1752), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(422), 1, sym__inter_single_quotes, - STATE(1778), 1, + STATE(437), 1, + sym__expression, + STATE(440), 1, + sym_unquoted, + STATE(449), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(1326), 1, + sym_comment, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152121,7 +152301,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152133,72 +152313,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63373] = 29, + [63523] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 1, - anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_LBRACE, - ACTIONS(2997), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(3007), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(3011), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3019), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(90), 1, + STATE(8), 1, sym_val_number, - STATE(1326), 1, - sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(290), 1, sym__var, - STATE(1752), 1, + STATE(397), 1, + sym_unquoted, + STATE(399), 1, sym__inter_double_quotes, - STATE(1753), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(422), 1, sym__inter_single_quotes, - STATE(1764), 1, - sym__expression, - STATE(1774), 1, - sym_unquoted, - STATE(1778), 1, + STATE(449), 1, sym__str_double_quotes, - ACTIONS(3001), 2, + STATE(451), 1, + sym__expression, + STATE(1327), 1, + sym_comment, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(3003), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(3013), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2999), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3009), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3005), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152206,7 +152386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(1715), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152218,72 +152398,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63487] = 29, + [63637] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2911), 1, + ACTIONS(1585), 1, anon_sym_not, - ACTIONS(2921), 1, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, anon_sym_DASHinf, - ACTIONS(2925), 1, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2933), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(2), 1, + STATE(8), 1, sym_val_number, - STATE(111), 1, + STATE(290), 1, sym__var, - STATE(146), 1, - sym__expression, - STATE(157), 1, + STATE(399), 1, + sym__inter_double_quotes, + STATE(404), 1, sym_expr_parenthesized, - STATE(185), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(430), 1, sym_unquoted, - STATE(190), 1, + STATE(449), 1, sym__str_double_quotes, - STATE(202), 1, - sym__inter_single_quotes, - STATE(203), 1, - sym__inter_double_quotes, - STATE(1327), 1, + STATE(454), 1, + sym__expression, + STATE(1328), 1, sym_comment, - ACTIONS(2915), 2, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(2917), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2927), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2913), 3, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2923), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2919), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152291,7 +152471,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(198), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152303,85 +152483,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63601] = 32, - ACTIONS(31), 1, + [63751] = 29, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1579), 1, + anon_sym_DOLLAR, + ACTIONS(1581), 1, + anon_sym_DASH, + ACTIONS(1585), 1, + anon_sym_not, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(33), 1, + ACTIONS(2755), 1, anon_sym_LPAREN, - ACTIONS(39), 1, - anon_sym_DASH, - ACTIONS(57), 1, + ACTIONS(2757), 1, anon_sym_LBRACE, - ACTIONS(75), 1, - anon_sym_not, - ACTIONS(79), 1, - anon_sym_DOT_DOT, - ACTIONS(81), 1, - sym_val_nothing, - ACTIONS(91), 1, - sym_val_date, - ACTIONS(93), 1, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(97), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(99), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(961), 1, - anon_sym_DOLLAR, - ACTIONS(2763), 1, - sym_identifier, - STATE(93), 1, + ACTIONS(2769), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1328), 1, - sym_comment, - STATE(1871), 1, - sym_expr_parenthesized, - STATE(1930), 1, + STATE(290), 1, sym__var, - STATE(2304), 1, - sym__expression, - STATE(2315), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(2317), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(422), 1, sym__inter_single_quotes, - STATE(2327), 1, - sym_val_variable, - STATE(2404), 1, + STATE(449), 1, sym__str_double_quotes, - STATE(3124), 1, - sym__where_predicate, - ACTIONS(77), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(83), 2, + STATE(457), 1, + sym_unquoted, + STATE(458), 1, + sym__expression, + STATE(1329), 1, + sym_comment, + ACTIONS(1589), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(95), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(89), 3, + ACTIONS(1587), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(85), 4, + STATE(406), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(87), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2319), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2408), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(439), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -152391,72 +152568,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63721] = 29, + [63865] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1585), 1, + anon_sym_not, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(8), 1, sym_val_number, - STATE(735), 1, + STATE(290), 1, sym__var, - STATE(814), 1, - sym_unquoted, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(905), 1, - sym__expression, - STATE(923), 1, + STATE(404), 1, sym_expr_parenthesized, - STATE(943), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(438), 1, + sym_unquoted, + STATE(447), 1, + sym__expression, + STATE(449), 1, sym__str_double_quotes, - STATE(1329), 1, + STATE(1330), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(2763), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152464,7 +152641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152476,72 +152653,72 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63835] = 29, + [63979] = 29, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2217), 1, - anon_sym_LPAREN, - ACTIONS(2221), 1, - anon_sym_DASHinf, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(2943), 1, + ACTIONS(1579), 1, anon_sym_DOLLAR, - ACTIONS(2945), 1, + ACTIONS(1581), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(1585), 1, + anon_sym_not, + ACTIONS(2753), 1, + anon_sym_LBRACK, + ACTIONS(2755), 1, + anon_sym_LPAREN, + ACTIONS(2757), 1, + anon_sym_LBRACE, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(2965), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2967), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2977), 1, - anon_sym_LBRACE, - ACTIONS(2979), 1, - anon_sym_not, - ACTIONS(2985), 1, + ACTIONS(2769), 1, aux_sym_unquoted_token1, - STATE(12), 1, + STATE(8), 1, sym_val_number, - STATE(735), 1, + STATE(290), 1, sym__var, - STATE(819), 1, - sym__inter_single_quotes, - STATE(820), 1, + STATE(399), 1, sym__inter_double_quotes, - STATE(902), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(407), 1, sym_unquoted, - STATE(903), 1, + STATE(411), 1, sym__expression, - STATE(923), 1, - sym_expr_parenthesized, - STATE(943), 1, + STATE(422), 1, + sym__inter_single_quotes, + STATE(449), 1, sym__str_double_quotes, - STATE(1330), 1, + STATE(1331), 1, sym_comment, - ACTIONS(2963), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2981), 2, + ACTIONS(1589), 2, sym_val_nothing, sym_val_date, - ACTIONS(2983), 2, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(2953), 3, + ACTIONS(2763), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1587), 3, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(2959), 3, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(924), 4, + STATE(406), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2219), 7, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -152549,7 +152726,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_val_number_token5, anon_sym_inf, anon_sym_NaN, - STATE(816), 11, + STATE(439), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -152561,85 +152738,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [63949] = 32, - ACTIONS(143), 1, + [64093] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(1579), 1, + anon_sym_DOLLAR, + ACTIONS(1581), 1, + anon_sym_DASH, + ACTIONS(1585), 1, + anon_sym_not, + ACTIONS(2753), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2755), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2757), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2759), 1, + anon_sym_DASHinf, + ACTIONS(2761), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2765), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2767), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2769), 1, + aux_sym_unquoted_token1, + STATE(8), 1, sym_val_number, - STATE(1331), 1, - sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(290), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2167), 1, + STATE(399), 1, + sym__inter_double_quotes, + STATE(402), 1, sym__expression, - STATE(2260), 1, + STATE(404), 1, + sym_expr_parenthesized, + STATE(416), 1, + sym_unquoted, + STATE(422), 1, sym__inter_single_quotes, - STATE(2261), 1, - sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2903), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(449), 1, + sym__str_double_quotes, + STATE(1332), 1, + sym_comment, + ACTIONS(1589), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(1591), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2763), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(1587), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(1595), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(406), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(1593), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(439), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -152649,85 +152823,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64069] = 32, - ACTIONS(143), 1, + [64207] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1332), 1, + STATE(1333), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2163), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1932), 1, + sym_unquoted, + STATE(1993), 1, sym__expression, - STATE(2260), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2989), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -152737,85 +152908,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64189] = 32, - ACTIONS(143), 1, + [64321] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1333), 1, + STATE(1334), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2161), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1990), 1, + sym_unquoted, + STATE(1991), 1, sym__expression, - STATE(2260), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2986), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -152825,85 +152993,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64309] = 32, - ACTIONS(143), 1, + [64435] = 29, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2401), 1, + anon_sym_DOLLAR, + ACTIONS(2405), 1, + anon_sym_DASH, + ACTIONS(2409), 1, + anon_sym_not, + ACTIONS(2967), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2969), 1, anon_sym_LPAREN, - ACTIONS(189), 1, - anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2971), 1, anon_sym_LBRACE, - ACTIONS(227), 1, - anon_sym_not, - ACTIONS(231), 1, - anon_sym_DOT_DOT, - ACTIONS(233), 1, - sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2973), 1, + anon_sym_DASHinf, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2979), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2981), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(2983), 1, + aux_sym_unquoted_token1, + STATE(97), 1, sym_val_number, - STATE(1334), 1, + STATE(1335), 1, sym_comment, - STATE(1779), 1, - sym_expr_parenthesized, - STATE(1830), 1, + STATE(1653), 1, sym__var, - STATE(2070), 1, - sym__str_double_quotes, - STATE(2159), 1, + STATE(1773), 1, + sym_expr_parenthesized, + STATE(1988), 1, + sym_unquoted, + STATE(1989), 1, sym__expression, - STATE(2260), 1, + STATE(2044), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2045), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2985), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + STATE(2118), 1, + sym__str_double_quotes, + ACTIONS(2413), 2, + sym_val_nothing, + sym_val_date, + ACTIONS(2415), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2977), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(2411), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2419), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + STATE(2077), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(2417), 7, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(239), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_DASHinf, - STATE(2203), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - STATE(2257), 10, + anon_sym_inf, + anon_sym_NaN, + STATE(2036), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -152913,85 +153078,82 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64429] = 32, - ACTIONS(143), 1, + [64549] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(179), 1, + ACTIONS(2921), 1, anon_sym_LBRACK, - ACTIONS(181), 1, + ACTIONS(2923), 1, anon_sym_LPAREN, - ACTIONS(189), 1, + ACTIONS(2925), 1, + anon_sym_DOLLAR, + ACTIONS(2927), 1, anon_sym_DASH, - ACTIONS(207), 1, + ACTIONS(2929), 1, anon_sym_LBRACE, - ACTIONS(227), 1, + ACTIONS(2931), 1, anon_sym_not, - ACTIONS(231), 1, + ACTIONS(2933), 1, anon_sym_DOT_DOT, - ACTIONS(233), 1, + ACTIONS(2935), 1, sym_val_nothing, - ACTIONS(243), 1, - sym_val_date, - ACTIONS(245), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(249), 1, + ACTIONS(2949), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(251), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(965), 1, - anon_sym_DOLLAR, - ACTIONS(2935), 1, - sym_identifier, - STATE(92), 1, + ACTIONS(3029), 1, + sym_cmd_identifier, + ACTIONS(3033), 1, + sym_val_date, + STATE(102), 1, sym_val_number, - STATE(1335), 1, + STATE(1336), 1, sym_comment, - STATE(1779), 1, + STATE(1696), 1, sym_expr_parenthesized, - STATE(1830), 1, + STATE(1742), 1, sym__var, - STATE(2070), 1, + STATE(2042), 1, sym__str_double_quotes, - STATE(2157), 1, + STATE(2067), 1, sym__expression, - STATE(2260), 1, + STATE(2117), 1, sym__inter_single_quotes, - STATE(2261), 1, + STATE(2119), 1, sym__inter_double_quotes, - STATE(2273), 1, - sym_val_variable, - STATE(2984), 1, - sym__where_predicate, - ACTIONS(229), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(235), 2, + ACTIONS(2937), 2, anon_sym_true, anon_sym_false, - ACTIONS(247), 2, + ACTIONS(2947), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(241), 3, + ACTIONS(3031), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(2943), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(237), 4, + ACTIONS(2939), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(239), 4, + ACTIONS(2941), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(2203), 4, + STATE(1967), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2257), 10, + STATE(2111), 11, sym_val_bool, + sym_val_variable, sym_val_duration, sym_val_filesize, sym_val_binary, @@ -153001,80 +153163,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64549] = 30, - ACTIONS(143), 1, + [64664] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2351), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2353), 1, + ACTIONS(2455), 1, sym_val_date, - ACTIONS(2363), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, + ACTIONS(3021), 1, anon_sym_not, - ACTIONS(2971), 1, + ACTIONS(3023), 1, sym_val_nothing, - ACTIONS(3021), 1, + ACTIONS(3035), 1, sym_identifier, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(1336), 1, + STATE(1337), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2482), 1, + STATE(2486), 1, sym__expression, - ACTIONS(2349), 2, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2365), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2973), 2, + ACTIONS(3025), 2, anon_sym_true, anon_sym_false, - ACTIONS(2361), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2357), 4, + ACTIONS(2459), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2359), 4, + ACTIONS(2461), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153086,80 +153248,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64664] = 30, - ACTIONS(143), 1, + [64779] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2351), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2353), 1, + ACTIONS(2455), 1, sym_val_date, - ACTIONS(2363), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - ACTIONS(2969), 1, + ACTIONS(3021), 1, anon_sym_not, - ACTIONS(2971), 1, - sym_val_nothing, ACTIONS(3023), 1, + sym_val_nothing, + ACTIONS(3037), 1, sym_identifier, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(1337), 1, + STATE(1338), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2481), 1, + STATE(2483), 1, sym__expression, - ACTIONS(2349), 2, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2365), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2973), 2, + ACTIONS(3025), 2, anon_sym_true, anon_sym_false, - ACTIONS(2361), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2357), 4, + ACTIONS(2459), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2359), 4, + ACTIONS(2461), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153171,80 +153333,80 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64779] = 30, - ACTIONS(143), 1, + [64894] = 30, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2791), 1, - anon_sym_LBRACK, - ACTIONS(2793), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2795), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2797), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2799), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2801), 1, - anon_sym_not, - ACTIONS(2803), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2805), 1, - sym_val_nothing, - ACTIONS(2815), 1, + ACTIONS(2455), 1, + sym_val_date, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2819), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2821), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3025), 1, - sym_cmd_identifier, - ACTIONS(3029), 1, - sym_val_date, - STATE(101), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + ACTIONS(3021), 1, + anon_sym_not, + ACTIONS(3023), 1, + sym_val_nothing, + ACTIONS(3039), 1, + sym_identifier, + STATE(100), 1, sym_val_number, - STATE(1338), 1, + STATE(1339), 1, sym_comment, - STATE(1667), 1, - sym__var, - STATE(1763), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(2009), 1, - sym__expression, - STATE(2038), 1, - sym__str_double_quotes, - STATE(2107), 1, - sym__inter_double_quotes, - STATE(2108), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - ACTIONS(2807), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2817), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3027), 2, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, + sym__str_double_quotes, + STATE(2487), 1, + sym__expression, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2813), 3, + ACTIONS(2467), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3025), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2809), 4, + ACTIONS(2459), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(2811), 4, + ACTIONS(2461), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - STATE(1980), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - STATE(2115), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153256,77 +153418,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [64894] = 28, - ACTIONS(143), 1, + [65009] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(1339), 1, + STATE(1340), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2486), 1, + STATE(2482), 1, sym__expression, - ACTIONS(2349), 2, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153338,77 +153500,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65004] = 28, - ACTIONS(143), 1, + [65119] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2550), 1, + anon_sym_LBRACK, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - STATE(98), 1, + STATE(109), 1, sym_val_number, - STATE(1340), 1, + STATE(1341), 1, sym_comment, - STATE(1681), 1, + STATE(1964), 1, sym__var, - STATE(1705), 1, + STATE(1971), 1, + sym__expression, + STATE(2000), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - STATE(2483), 1, - sym__expression, - ACTIONS(2349), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153420,77 +153582,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65114] = 28, - ACTIONS(143), 1, + [65229] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(1341), 1, + STATE(1342), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2487), 1, + STATE(2494), 1, sym__expression, - ACTIONS(2349), 2, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153502,77 +153664,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65224] = 28, - ACTIONS(143), 1, + [65339] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2825), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2827), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2829), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2831), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2833), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2837), 1, + ACTIONS(2562), 1, + anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2849), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2853), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2855), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3031), 1, - anon_sym_not, - STATE(5), 1, + STATE(109), 1, sym_val_number, - STATE(125), 1, + STATE(1343), 1, + sym_comment, + STATE(1964), 1, sym__var, - STATE(207), 1, - sym__expression, - STATE(226), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(227), 1, - sym__str_double_quotes, - STATE(256), 1, - sym__inter_double_quotes, - STATE(257), 1, + STATE(2031), 1, + sym__expression, + STATE(2437), 1, sym__inter_single_quotes, - STATE(1342), 1, - sym_comment, - ACTIONS(2843), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2851), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3033), 2, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, + sym__str_double_quotes, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3035), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(3037), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2847), 3, + ACTIONS(2572), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(225), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2845), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(260), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153584,77 +153746,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65334] = 28, - ACTIONS(143), 1, + [65449] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2873), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2875), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2877), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2879), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2881), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, - anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2885), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2897), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2901), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2903), 1, anon_sym_DOLLAR_DQUOTE, - STATE(109), 1, + ACTIONS(3041), 1, + anon_sym_not, + STATE(91), 1, sym_val_number, - STATE(1343), 1, + STATE(1344), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1960), 1, - sym__expression, - STATE(1968), 1, + STATE(1529), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(1558), 1, + sym__var, + STATE(1693), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(1695), 1, + sym__inter_double_quotes, + STATE(1719), 1, + sym__expression, + STATE(1732), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + ACTIONS(2891), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2899), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3043), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(3045), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(3047), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2572), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2895), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(1683), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2893), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(1691), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153666,77 +153828,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65444] = 28, - ACTIONS(143), 1, + [65559] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, STATE(109), 1, sym_val_number, - STATE(1344), 1, + STATE(1345), 1, sym_comment, - STATE(1953), 1, + STATE(1964), 1, sym__var, - STATE(1963), 1, + STATE(1978), 1, sym__expression, - STATE(1968), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153748,77 +153910,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65554] = 28, - ACTIONS(143), 1, + [65669] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2777), 1, + anon_sym_LBRACK, + ACTIONS(2779), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2781), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2783), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2785), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2789), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2805), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2807), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(3049), 1, + anon_sym_not, + STATE(5), 1, sym_val_number, - STATE(1345), 1, - sym_comment, - STATE(1681), 1, + STATE(128), 1, sym__var, - STATE(1705), 1, + STATE(211), 1, + sym__str_double_quotes, + STATE(215), 1, + sym__expression, + STATE(224), 1, sym_expr_parenthesized, - STATE(1978), 1, + STATE(240), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(242), 1, sym__inter_single_quotes, - STATE(2111), 1, - sym__str_double_quotes, - STATE(2492), 1, - sym__expression, - ACTIONS(2349), 2, + STATE(1346), 1, + sym_comment, + ACTIONS(2795), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2803), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3051), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(3053), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(3055), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2799), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(227), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2797), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(257), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153830,77 +153992,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65664] = 28, - ACTIONS(143), 1, + [65779] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, STATE(109), 1, sym_val_number, - STATE(1346), 1, + STATE(1347), 1, sym_comment, - STATE(1953), 1, + STATE(1964), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2059), 1, + STATE(1973), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153912,77 +154074,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65774] = 28, - ACTIONS(143), 1, + [65889] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2811), 1, + anon_sym_LBRACK, + ACTIONS(2813), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2815), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2817), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2819), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2823), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2839), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2841), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, - anon_sym_LBRACK, - STATE(98), 1, + ACTIONS(3057), 1, + anon_sym_not, + STATE(2), 1, sym_val_number, - STATE(1347), 1, - sym_comment, - STATE(1681), 1, + STATE(110), 1, sym__var, - STATE(1705), 1, - sym_expr_parenthesized, - STATE(1978), 1, + STATE(147), 1, sym__inter_double_quotes, - STATE(1979), 1, + STATE(163), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(185), 1, + sym_expr_parenthesized, + STATE(190), 1, sym__str_double_quotes, - STATE(2490), 1, + STATE(191), 1, sym__expression, - ACTIONS(2349), 2, + STATE(1348), 1, + sym_comment, + ACTIONS(2829), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2837), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3059), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(3061), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(3063), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2365), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2833), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(187), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2831), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(169), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -153994,77 +154156,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65884] = 28, - ACTIONS(143), 1, + [65999] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - STATE(109), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(100), 1, sym_val_number, - STATE(1348), 1, + STATE(1349), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(2000), 1, - sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + STATE(2484), 1, + sym__expression, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154076,77 +154238,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [65994] = 28, - ACTIONS(143), 1, + [66109] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2335), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2337), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2339), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2341), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2351), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2363), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2369), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2937), 1, + ACTIONS(2917), 1, anon_sym_LBRACK, - STATE(98), 1, + STATE(100), 1, sym_val_number, - STATE(1349), 1, + STATE(1350), 1, sym_comment, - STATE(1681), 1, - sym__var, - STATE(1705), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(1978), 1, - sym__inter_double_quotes, - STATE(1979), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2111), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - STATE(2488), 1, + STATE(2490), 1, sym__expression, - ACTIONS(2349), 2, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2353), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2355), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2357), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2365), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2361), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1967), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2359), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2081), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154158,77 +154320,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66104] = 28, - ACTIONS(143), 1, + [66219] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - STATE(109), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(100), 1, sym_val_number, - STATE(1350), 1, + STATE(1351), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1964), 1, - sym__expression, - STATE(1968), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + STATE(2485), 1, + sym__expression, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154240,77 +154402,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66214] = 28, - ACTIONS(143), 1, + [66329] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, STATE(109), 1, sym_val_number, - STATE(1351), 1, + STATE(1352), 1, sym_comment, - STATE(1953), 1, + STATE(1964), 1, sym__var, - STATE(1968), 1, - sym_expr_parenthesized, - STATE(2057), 1, + STATE(1965), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154322,77 +154484,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66324] = 28, - ACTIONS(143), 1, + [66439] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2562), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, STATE(109), 1, sym_val_number, - STATE(1352), 1, + STATE(1353), 1, sym_comment, - STATE(1953), 1, + STATE(1964), 1, sym__var, - STATE(1968), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(2128), 1, + STATE(2024), 1, sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2580), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154404,77 +154566,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66434] = 28, - ACTIONS(143), 1, + [66549] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2901), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2905), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2913), 1, + ACTIONS(2562), 1, + anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(2925), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(2929), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2931), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3039), 1, - anon_sym_not, - STATE(2), 1, + STATE(109), 1, sym_val_number, - STATE(111), 1, + STATE(1354), 1, + sym_comment, + STATE(1933), 1, + sym__expression, + STATE(1964), 1, sym__var, - STATE(157), 1, + STATE(2000), 1, sym_expr_parenthesized, - STATE(190), 1, - sym__str_double_quotes, - STATE(197), 1, - sym__expression, - STATE(202), 1, + STATE(2437), 1, sym__inter_single_quotes, - STATE(203), 1, + STATE(2438), 1, sym__inter_double_quotes, - STATE(1353), 1, - sym_comment, - ACTIONS(2919), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(2927), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3041), 2, + STATE(2444), 1, + sym__str_double_quotes, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3043), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(3045), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(2923), 3, + ACTIONS(2572), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(156), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2921), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(198), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154486,77 +154648,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66544] = 28, - ACTIONS(143), 1, + [66659] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2437), 1, anon_sym_LPAREN, - ACTIONS(2546), 1, + ACTIONS(2439), 1, anon_sym_DOLLAR, - ACTIONS(2550), 1, + ACTIONS(2441), 1, anon_sym_DASH, - ACTIONS(2552), 1, + ACTIONS(2443), 1, anon_sym_LBRACE, - ACTIONS(2554), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(2558), 1, + ACTIONS(2453), 1, anon_sym_DOT_DOT, - ACTIONS(2570), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(2469), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(2576), 1, + ACTIONS(2471), 1, anon_sym_DOLLAR_DQUOTE, - STATE(109), 1, + ACTIONS(2917), 1, + anon_sym_LBRACK, + STATE(100), 1, sym_val_number, - STATE(1354), 1, + STATE(1355), 1, sym_comment, - STATE(1953), 1, - sym__var, - STATE(1968), 1, + STATE(1720), 1, sym_expr_parenthesized, - STATE(2033), 1, - sym__expression, - STATE(2428), 1, - sym__inter_double_quotes, - STATE(2430), 1, + STATE(1738), 1, + sym__var, + STATE(2043), 1, sym__inter_single_quotes, - STATE(2463), 1, + STATE(2046), 1, + sym__inter_double_quotes, + STATE(2115), 1, sym__str_double_quotes, - ACTIONS(2556), 2, + STATE(2492), 1, + sym__expression, + ACTIONS(2451), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(2560), 2, + ACTIONS(2455), 2, sym_val_nothing, sym_val_date, - ACTIONS(2562), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - ACTIONS(2564), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - ACTIONS(2572), 2, + ACTIONS(2467), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2568), 3, + ACTIONS(2463), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(2423), 4, + STATE(2018), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(2566), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(2439), 11, + STATE(2005), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154568,77 +154730,77 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66654] = 28, - ACTIONS(143), 1, + [66769] = 28, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2987), 1, + ACTIONS(2550), 1, anon_sym_LBRACK, - ACTIONS(2989), 1, + ACTIONS(2552), 1, anon_sym_LPAREN, - ACTIONS(2991), 1, + ACTIONS(2554), 1, anon_sym_DOLLAR, - ACTIONS(2993), 1, + ACTIONS(2558), 1, anon_sym_DASH, - ACTIONS(2995), 1, + ACTIONS(2560), 1, anon_sym_LBRACE, - ACTIONS(2999), 1, + ACTIONS(2562), 1, + anon_sym_not, + ACTIONS(2566), 1, anon_sym_DOT_DOT, - ACTIONS(3011), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(3015), 1, + ACTIONS(2582), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(3017), 1, + ACTIONS(2584), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(3047), 1, - anon_sym_not, - STATE(90), 1, + STATE(109), 1, sym_val_number, - STATE(1355), 1, + STATE(1356), 1, sym_comment, - STATE(1529), 1, - sym_expr_parenthesized, - STATE(1531), 1, + STATE(1964), 1, sym__var, - STATE(1752), 1, - sym__inter_double_quotes, - STATE(1753), 1, - sym__inter_single_quotes, - STATE(1769), 1, + STATE(2000), 1, + sym_expr_parenthesized, + STATE(2066), 1, sym__expression, - STATE(1778), 1, + STATE(2437), 1, + sym__inter_single_quotes, + STATE(2438), 1, + sym__inter_double_quotes, + STATE(2444), 1, sym__str_double_quotes, - ACTIONS(3005), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - ACTIONS(3013), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3049), 2, + ACTIONS(2564), 2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - ACTIONS(3051), 2, + ACTIONS(2568), 2, sym_val_nothing, sym_val_date, - ACTIONS(3053), 2, + ACTIONS(2570), 2, anon_sym_true, anon_sym_false, - ACTIONS(3009), 3, + ACTIONS(2572), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + ACTIONS(2580), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2576), 3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - STATE(1735), 4, + STATE(2431), 4, sym_expr_unary, sym_expr_binary, sym_val_range, sym__value, - ACTIONS(3007), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - STATE(1715), 11, + STATE(2429), 11, sym_val_bool, sym_val_variable, sym_val_duration, @@ -154650,27 +154812,27 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [66764] = 8, - ACTIONS(143), 1, + [66879] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3055), 1, + ACTIONS(3065), 1, anon_sym_LPAREN, - STATE(1356), 1, + STATE(1357), 1, sym_comment, - STATE(1666), 2, + STATE(1710), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3057), 4, + ACTIONS(3067), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(3059), 4, + ACTIONS(3069), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - ACTIONS(756), 12, + ACTIONS(758), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -154683,7 +154845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(758), 25, + ACTIONS(760), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -154709,20 +154871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [66831] = 7, + [66946] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(714), 1, + ACTIONS(715), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1357), 1, + STATE(1358), 1, sym_comment, - STATE(1363), 1, + STATE(1365), 1, sym_path, - STATE(1424), 1, + STATE(1439), 1, sym_cell_path, - ACTIONS(712), 42, + ACTIONS(713), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -154765,76 +154927,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [66894] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(758), 1, - anon_sym_LF, - ACTIONS(3063), 1, - anon_sym_LPAREN, - STATE(1358), 1, - sym_comment, - STATE(1851), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2249), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - 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, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [66957] = 7, + [67009] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(708), 1, + ACTIONS(723), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3071), 1, anon_sym_DOT, STATE(1359), 1, sym_comment, - STATE(1363), 1, + STATE(1365), 1, sym_path, - STATE(1437), 1, + STATE(1435), 1, sym_cell_path, - ACTIONS(706), 42, + ACTIONS(721), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -154877,35 +154983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67020] = 7, + [67072] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(734), 1, + ACTIONS(760), 1, anon_sym_LF, - ACTIONS(3061), 1, - anon_sym_DOT, + ACTIONS(3073), 1, + anon_sym_LPAREN, STATE(1360), 1, sym_comment, - STATE(1367), 1, - aux_sym_cell_path_repeat1, - STATE(1392), 1, - sym_path, - ACTIONS(732), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(1922), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2255), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -154914,151 +155004,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67083] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(746), 1, - anon_sym_LF, - ACTIONS(3061), 1, - anon_sym_DOT, - STATE(1361), 1, - sym_comment, - STATE(1363), 1, - sym_path, - STATE(1419), 1, - sym_cell_path, - ACTIONS(744), 42, + ACTIONS(758), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_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, sym_short_flag, - aux_sym_unquoted_token1, - [67146] = 7, + [67135] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(738), 1, + ACTIONS(709), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1362), 1, + STATE(1361), 1, sym_comment, - STATE(1363), 1, + STATE(1365), 1, sym_path, - STATE(1417), 1, + STATE(1444), 1, sym_cell_path, - ACTIONS(736), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67209] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(3061), 1, - anon_sym_DOT, - STATE(1360), 1, - aux_sym_cell_path_repeat1, - STATE(1363), 1, - sym_comment, - STATE(1392), 1, - sym_path, - ACTIONS(728), 42, + ACTIONS(707), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155101,20 +155095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67272] = 7, + [67198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(726), 1, + ACTIONS(731), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3075), 1, anon_sym_DOT, - STATE(1363), 1, + STATE(1391), 1, sym_path, - STATE(1364), 1, + STATE(1362), 2, sym_comment, - STATE(1406), 1, - sym_cell_path, - ACTIONS(724), 42, + aux_sym_cell_path_repeat1, + ACTIONS(729), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155157,76 +155150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67335] = 7, + [67259] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(742), 1, + ACTIONS(738), 1, anon_sym_LF, - ACTIONS(3061), 1, + ACTIONS(3071), 1, anon_sym_DOT, STATE(1363), 1, - sym_path, - STATE(1365), 1, sym_comment, - STATE(1404), 1, - sym_cell_path, - ACTIONS(740), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67398] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(722), 1, - anon_sym_LF, - ACTIONS(3061), 1, - anon_sym_DOT, - STATE(1363), 1, + STATE(1365), 1, sym_path, - STATE(1366), 1, - sym_comment, STATE(1399), 1, sym_cell_path, - ACTIONS(720), 42, + ACTIONS(736), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155269,75 +155206,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67461] = 6, + [67322] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(701), 1, + ACTIONS(742), 1, anon_sym_LF, - ACTIONS(3065), 1, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1392), 1, - sym_path, - STATE(1367), 2, - sym_comment, + STATE(1362), 1, aux_sym_cell_path_repeat1, - ACTIONS(699), 42, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67522] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(718), 1, - anon_sym_LF, - ACTIONS(3061), 1, - anon_sym_DOT, - STATE(1363), 1, - sym_path, - STATE(1368), 1, + STATE(1364), 1, sym_comment, - STATE(1418), 1, - sym_cell_path, - ACTIONS(716), 42, + STATE(1391), 1, + sym_path, + ACTIONS(740), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155380,179 +155262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67585] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(758), 1, - anon_sym_LF, - ACTIONS(1311), 1, - anon_sym_LPAREN, - STATE(1369), 1, - sym_comment, - STATE(1398), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3068), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67647] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_DOT, - STATE(1370), 1, - sym_comment, - STATE(1371), 1, - sym_path, - STATE(1468), 1, - sym_cell_path, - ACTIONS(738), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(736), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67709] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_DOT, - STATE(1371), 1, - sym_comment, - STATE(1387), 1, - aux_sym_cell_path_repeat1, - STATE(1415), 1, - sym_path, - ACTIONS(730), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(728), 40, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [67771] = 4, + [67385] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(754), 1, anon_sym_LF, - STATE(1372), 1, + ACTIONS(3071), 1, + anon_sym_DOT, + STATE(1364), 1, + aux_sym_cell_path_repeat1, + STATE(1365), 1, sym_comment, - ACTIONS(768), 44, + STATE(1391), 1, + sym_path, + ACTIONS(752), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155562,8 +155285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155597,83 +155318,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67827] = 7, + [67448] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3072), 1, - anon_sym_LPAREN, - STATE(1373), 1, - sym_comment, - ACTIONS(758), 2, - ts_builtin_sym_end, + ACTIONS(750), 1, anon_sym_LF, - STATE(2077), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2391), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - 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, - sym_short_flag, - [67889] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1371), 1, + STATE(1365), 1, sym_path, - STATE(1374), 1, + STATE(1366), 1, sym_comment, - STATE(1470), 1, + STATE(1431), 1, sym_cell_path, - ACTIONS(742), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(740), 40, + ACTIONS(748), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155707,28 +155374,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [67951] = 7, + [67511] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(727), 1, + anon_sym_LF, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1371), 1, + STATE(1365), 1, sym_path, - STATE(1375), 1, + STATE(1367), 1, sym_comment, - STATE(1474), 1, + STATE(1418), 1, sym_cell_path, - ACTIONS(718), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(716), 40, + ACTIONS(725), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155762,28 +155430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68013] = 7, + [67574] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(719), 1, + anon_sym_LF, + ACTIONS(3071), 1, anon_sym_DOT, - STATE(1371), 1, + STATE(1365), 1, sym_path, - STATE(1376), 1, + STATE(1368), 1, sym_comment, - STATE(1481), 1, + STATE(1432), 1, sym_cell_path, - ACTIONS(708), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(706), 40, + ACTIONS(717), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155817,14 +155486,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68075] = 4, + [67637] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(746), 1, anon_sym_LF, - STATE(1377), 1, + ACTIONS(3071), 1, + anon_sym_DOT, + STATE(1365), 1, + sym_path, + STATE(1369), 1, sym_comment, - ACTIONS(764), 44, + STATE(1417), 1, + sym_cell_path, + ACTIONS(744), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -155834,8 +155509,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155869,28 +155542,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68131] = 7, + [67700] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_DOT, - STATE(1371), 1, - sym_path, - STATE(1378), 1, - sym_comment, - STATE(1469), 1, - sym_cell_path, - ACTIONS(722), 2, - ts_builtin_sym_end, + ACTIONS(781), 1, anon_sym_LF, - ACTIONS(720), 40, + STATE(1370), 1, + sym_comment, + ACTIONS(779), 44, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155924,28 +155594,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68193] = 7, + [67756] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, - anon_sym_DOT, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3078), 1, + anon_sym_QMARK2, STATE(1371), 1, - sym_path, - STATE(1379), 1, sym_comment, - STATE(1488), 1, - sym_cell_path, - ACTIONS(746), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(744), 40, + ACTIONS(769), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -155979,21 +155647,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68255] = 7, + [67814] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(1372), 1, + sym_comment, + STATE(2052), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3082), 4, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(3084), 4, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + ACTIONS(758), 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(760), 22, + anon_sym_COMMA, + anon_sym_RBRACE, + 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67878] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3086), 1, anon_sym_DOT, - STATE(1371), 1, - sym_path, - STATE(1380), 1, + STATE(1373), 1, sym_comment, - STATE(1460), 1, + STATE(1374), 1, + sym_path, + STATE(1457), 1, sym_cell_path, - ACTIONS(714), 2, + ACTIONS(709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(712), 40, + ACTIONS(707), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156034,76 +155758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68317] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3074), 1, - anon_sym_LPAREN, - STATE(1381), 1, - sym_comment, - ACTIONS(2357), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1970), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2359), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 7, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(758), 27, - anon_sym_COMMA, - anon_sym_PIPE, - 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, - [68381] = 6, + [67940] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3076), 1, + ACTIONS(3086), 1, anon_sym_DOT, - STATE(1415), 1, + STATE(1374), 1, + sym_comment, + STATE(1377), 1, + aux_sym_cell_path_repeat1, + STATE(1442), 1, sym_path, - ACTIONS(701), 2, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1382), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 40, + ACTIONS(752), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156144,26 +155813,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68441] = 5, + [68002] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3079), 1, - anon_sym_QMARK2, - STATE(1383), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1375), 1, sym_comment, - ACTIONS(748), 43, + STATE(1489), 1, + sym_cell_path, + ACTIONS(723), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(721), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156197,26 +155868,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68499] = 5, + [68064] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3079), 1, - anon_sym_QMARK2, - STATE(1384), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1376), 1, sym_comment, - ACTIONS(748), 43, + STATE(1445), 1, + sym_cell_path, + ACTIONS(719), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(717), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156250,21 +155923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68557] = 7, + [68126] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3086), 1, anon_sym_DOT, - STATE(1371), 1, - sym_path, - STATE(1385), 1, + STATE(1377), 1, sym_comment, - STATE(1483), 1, - sym_cell_path, - ACTIONS(726), 2, + STATE(1381), 1, + aux_sym_cell_path_repeat1, + STATE(1442), 1, + sym_path, + ACTIONS(742), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(724), 40, + ACTIONS(740), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156305,49 +155978,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68619] = 8, - ACTIONS(143), 1, + [68188] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3081), 1, + ACTIONS(3088), 1, anon_sym_LPAREN, - STATE(1386), 1, + STATE(1378), 1, sym_comment, - STATE(2075), 2, + ACTIONS(760), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2098), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3083), 4, + ACTIONS(2417), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(3085), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, - ACTIONS(756), 12, - sym_identifier, + anon_sym_NaN, + ACTIONS(758), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, 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(758), 22, - anon_sym_COMMA, - 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, @@ -156358,24 +156029,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68683] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [68250] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3070), 1, + ACTIONS(3086), 1, anon_sym_DOT, - STATE(1382), 1, - aux_sym_cell_path_repeat1, - STATE(1387), 1, - sym_comment, - STATE(1415), 1, + STATE(1374), 1, sym_path, - ACTIONS(734), 2, + STATE(1379), 1, + sym_comment, + STATE(1487), 1, + sym_cell_path, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 40, + ACTIONS(744), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156416,17 +156088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68745] = 5, + [68312] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3087), 1, - anon_sym_QMARK2, - STATE(1388), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1380), 1, sym_comment, - ACTIONS(750), 2, + STATE(1493), 1, + sym_cell_path, + ACTIONS(727), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 41, + ACTIONS(725), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156434,7 +156110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156468,31 +156143,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68802] = 7, + [68374] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(1389), 1, - sym_comment, - ACTIONS(758), 2, + ACTIONS(3090), 1, + anon_sym_DOT, + STATE(1442), 1, + sym_path, + ACTIONS(731), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1477), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3089), 8, - aux_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_inf, - anon_sym_DASHinf, - anon_sym_NaN, - ACTIONS(756), 31, + STATE(1381), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 40, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -156503,6 +156170,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_nothing, 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -156522,15 +156197,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68863] = 4, + [68434] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3093), 1, + anon_sym_LPAREN, + STATE(1382), 1, + sym_comment, + ACTIONS(2459), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2107), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2461), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(758), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(760), 27, + anon_sym_COMMA, + anon_sym_PIPE, + 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, + [68498] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1390), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1383), 1, sym_comment, - ACTIONS(770), 2, + STATE(1480), 1, + sym_cell_path, + ACTIONS(715), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 42, + ACTIONS(713), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156538,8 +156275,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156573,24 +156308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68918] = 5, + [68560] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3087), 1, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3078), 1, anon_sym_QMARK2, - STATE(1391), 1, + STATE(1384), 1, sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(748), 41, + ACTIONS(769), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -156625,14 +156361,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [68975] = 4, + [68618] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(783), 1, + ACTIONS(760), 1, anon_sym_LF, - STATE(1392), 1, + ACTIONS(1319), 1, + anon_sym_LPAREN, + STATE(1385), 1, sym_comment, - ACTIONS(781), 43, + STATE(1428), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3095), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(758), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [68680] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(777), 1, + anon_sym_LF, + STATE(1386), 1, + sym_comment, + ACTIONS(775), 44, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156643,6 +156434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156676,24 +156468,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69030] = 4, + [68736] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, - STATE(1393), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1387), 1, sym_comment, - ACTIONS(777), 43, + STATE(1453), 1, + sym_cell_path, + ACTIONS(738), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(736), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156727,24 +156523,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69085] = 4, + [68798] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(791), 1, - anon_sym_LF, - STATE(1394), 1, + ACTIONS(3086), 1, + anon_sym_DOT, + STATE(1374), 1, + sym_path, + STATE(1388), 1, sym_comment, - ACTIONS(789), 43, + STATE(1452), 1, + sym_cell_path, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156778,24 +156578,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69140] = 4, + [68860] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1395), 1, - sym_comment, - ACTIONS(766), 2, - ts_builtin_sym_end, + ACTIONS(1311), 1, anon_sym_LF, - ACTIONS(764), 42, + ACTIONS(3097), 1, + sym__long_flag_identifier, + STATE(1389), 1, + sym_comment, + ACTIONS(1307), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156829,16 +156630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69195] = 7, + [68917] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(758), 1, + ACTIONS(760), 1, anon_sym_LF, - ACTIONS(3091), 1, + ACTIONS(3099), 1, anon_sym_LPAREN, - STATE(1396), 1, + STATE(1390), 1, sym_comment, - STATE(2148), 2, + STATE(2192), 2, sym_expr_parenthesized, sym_val_number, ACTIONS(237), 8, @@ -156850,7 +156651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(756), 32, + ACTIONS(758), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -156883,16 +156684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [69256] = 5, + [68978] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1303), 1, + ACTIONS(795), 1, anon_sym_LF, - ACTIONS(3093), 1, - sym__long_flag_identifier, - STATE(1397), 1, + STATE(1391), 1, sym_comment, - ACTIONS(1299), 42, + ACTIONS(793), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156902,6 +156701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156935,14 +156735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69313] = 4, + [69033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(835), 1, + ACTIONS(789), 1, anon_sym_LF, - STATE(1398), 1, + STATE(1392), 1, sym_comment, - ACTIONS(833), 42, + ACTIONS(787), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -156952,6 +156752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -156985,14 +156786,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69367] = 4, + [69088] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(871), 1, + ACTIONS(3101), 1, + anon_sym_QMARK2, + STATE(1393), 1, + sym_comment, + ACTIONS(771), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1399), 1, + ACTIONS(769), 41, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [69145] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(799), 1, + anon_sym_LF, + STATE(1394), 1, sym_comment, - ACTIONS(869), 42, + ACTIONS(797), 43, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157002,6 +156855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -157035,23 +156889,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69421] = 4, + [69200] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + STATE(1395), 1, + sym_comment, + ACTIONS(781), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1400), 1, + ACTIONS(779), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [69255] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1396), 1, sym_comment, - ACTIONS(768), 42, + ACTIONS(777), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(775), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -157085,15 +156991,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69475] = 4, + [69310] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1401), 1, + ACTIONS(1535), 1, + anon_sym_LPAREN, + STATE(1397), 1, sym_comment, - ACTIONS(779), 2, + ACTIONS(760), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(777), 41, + STATE(1483), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3103), 8, + aux_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_inf, + anon_sym_DASHinf, + anon_sym_NaN, + ACTIONS(758), 31, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [69371] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3101), 1, + anon_sym_QMARK2, + STATE(1398), 1, + sym_comment, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157135,14 +157097,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69529] = 4, + [69428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(847), 1, + ACTIONS(891), 1, anon_sym_LF, - STATE(1402), 1, + STATE(1399), 1, sym_comment, - ACTIONS(845), 42, + ACTIONS(889), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157185,17 +157147,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69583] = 6, - ACTIONS(143), 1, + [69482] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3095), 1, + ACTIONS(3105), 1, anon_sym_DOT, - STATE(1517), 1, - sym_path, - STATE(1403), 2, + STATE(1400), 1, sym_comment, + STATE(1426), 1, aux_sym_cell_path_repeat1, - ACTIONS(699), 13, + STATE(1516), 1, + sym_path, + ACTIONS(740), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -157209,7 +157172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(701), 27, + ACTIONS(742), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -157237,14 +157200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [69641] = 4, + [69542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(897), 1, + ACTIONS(843), 1, anon_sym_LF, - STATE(1404), 1, + STATE(1401), 1, sym_comment, - ACTIONS(895), 42, + ACTIONS(841), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157287,24 +157250,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69695] = 5, + [69596] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3098), 1, - sym__long_flag_identifier, - STATE(1405), 1, + ACTIONS(781), 1, + anon_sym_LF, + STATE(1402), 1, sym_comment, - ACTIONS(1303), 2, - ts_builtin_sym_end, + ACTIONS(779), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [69650] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(835), 1, anon_sym_LF, - ACTIONS(1299), 40, + STATE(1403), 1, + sym_comment, + ACTIONS(833), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -157338,14 +157350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69751] = 4, + [69704] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(835), 1, anon_sym_LF, - STATE(1406), 1, + STATE(1404), 1, sym_comment, - ACTIONS(861), 42, + ACTIONS(833), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157388,14 +157400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69805] = 4, + [69758] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(881), 1, + ACTIONS(839), 1, anon_sym_LF, - STATE(1407), 1, + STATE(1405), 1, sym_comment, - ACTIONS(879), 42, + ACTIONS(837), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157438,14 +157450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69859] = 4, + [69812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1404), 1, + ACTIONS(855), 1, anon_sym_LF, - STATE(1408), 1, + STATE(1406), 1, sym_comment, - ACTIONS(1402), 42, + ACTIONS(853), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157488,14 +157500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69913] = 4, + [69866] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(847), 1, anon_sym_LF, - STATE(1409), 1, + STATE(1407), 1, sym_comment, - ACTIONS(891), 42, + ACTIONS(845), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157538,14 +157550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [69967] = 4, + [69920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(915), 1, anon_sym_LF, - STATE(1410), 1, + STATE(1408), 1, sym_comment, - ACTIONS(903), 42, + ACTIONS(913), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157588,29 +157600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70021] = 4, + [69974] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(909), 1, - anon_sym_LF, - STATE(1411), 1, - sym_comment, - ACTIONS(907), 42, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3107), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, + STATE(1409), 1, + sym_comment, + ACTIONS(760), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(2391), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(85), 8, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -157619,42 +157622,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - anon_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, - sym_short_flag, - aux_sym_unquoted_token1, - [70075] = 4, + ACTIONS(758), 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, + [70034] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1412), 1, - sym_comment, - ACTIONS(791), 2, - ts_builtin_sym_end, + ACTIONS(887), 1, anon_sym_LF, - ACTIONS(789), 41, + STATE(1410), 1, + sym_comment, + ACTIONS(885), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -157688,14 +157703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70129] = 4, + [70088] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(867), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(1413), 1, + STATE(1411), 1, sym_comment, - ACTIONS(865), 42, + ACTIONS(103), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157738,14 +157753,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70183] = 4, + [70142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1392), 1, + ACTIONS(851), 1, anon_sym_LF, - STATE(1414), 1, + STATE(1412), 1, sym_comment, - ACTIONS(1390), 42, + ACTIONS(849), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157788,15 +157803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70237] = 4, + [70196] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1415), 1, + STATE(1413), 1, sym_comment, - ACTIONS(783), 2, + ACTIONS(799), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(781), 41, + ACTIONS(797), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157838,14 +157853,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70291] = 4, + [70250] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3105), 1, + anon_sym_DOT, + STATE(1414), 1, + sym_comment, + STATE(1420), 1, + sym_path, + STATE(1557), 1, + sym_cell_path, + ACTIONS(748), 13, + 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, + anon_sym_DOT_DOT, + ACTIONS(750), 27, + 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, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [70310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(3111), 1, anon_sym_LF, - STATE(1416), 1, + STATE(1415), 1, sym_comment, - ACTIONS(764), 42, + ACTIONS(3109), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157888,14 +157956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70345] = 4, + [70364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(875), 1, + ACTIONS(941), 1, anon_sym_LF, - STATE(1417), 1, + STATE(1416), 1, sym_comment, - ACTIONS(873), 42, + ACTIONS(939), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157938,14 +158006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70399] = 4, + [70418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(859), 1, anon_sym_LF, - STATE(1418), 1, + STATE(1417), 1, sym_comment, - ACTIONS(825), 42, + ACTIONS(857), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -157988,12 +158056,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70453] = 4, + [70472] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(933), 1, anon_sym_LF, - STATE(1419), 1, + STATE(1418), 1, sym_comment, ACTIONS(931), 42, anon_sym_SEMI, @@ -158038,14 +158106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70507] = 4, + [70526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(823), 1, + ACTIONS(863), 1, anon_sym_LF, - STATE(1420), 1, + STATE(1419), 1, sym_comment, - ACTIONS(821), 42, + ACTIONS(861), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158088,18 +158156,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70561] = 7, - ACTIONS(143), 1, + [70580] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3100), 1, + ACTIONS(3105), 1, anon_sym_DOT, - STATE(1421), 1, + STATE(1400), 1, + aux_sym_cell_path_repeat1, + STATE(1420), 1, sym_comment, - STATE(1432), 1, + STATE(1516), 1, sym_path, - STATE(1543), 1, - sym_cell_path, - ACTIONS(716), 13, + ACTIONS(752), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -158113,7 +158181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(718), 27, + ACTIONS(754), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -158141,14 +158209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [70621] = 4, + [70640] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(925), 1, + ACTIONS(777), 1, anon_sym_LF, - STATE(1422), 1, + STATE(1421), 1, sym_comment, - ACTIONS(923), 42, + ACTIONS(775), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158191,12 +158259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70675] = 4, + [70694] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(929), 1, anon_sym_LF, - STATE(1423), 1, + STATE(1422), 1, sym_comment, ACTIONS(927), 42, anon_sym_SEMI, @@ -158241,14 +158309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70729] = 4, + [70748] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(901), 1, + ACTIONS(871), 1, anon_sym_LF, - STATE(1424), 1, + STATE(1423), 1, sym_comment, - ACTIONS(899), 42, + ACTIONS(869), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158291,14 +158359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70783] = 4, + [70802] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3104), 1, + ACTIONS(875), 1, anon_sym_LF, - STATE(1425), 1, + STATE(1424), 1, sym_comment, - ACTIONS(3102), 42, + ACTIONS(873), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158341,14 +158409,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70837] = 4, + [70856] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(929), 1, + ACTIONS(1449), 1, anon_sym_LF, - STATE(1426), 1, + STATE(1425), 1, sym_comment, - ACTIONS(927), 42, + ACTIONS(1447), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158391,23 +158459,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70891] = 4, + [70910] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3113), 1, + anon_sym_DOT, + STATE(1516), 1, + sym_path, + STATE(1426), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 13, + 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, + anon_sym_DOT_DOT, + ACTIONS(731), 27, + 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, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [70968] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3108), 1, - anon_sym_LF, + ACTIONS(3116), 1, + sym__long_flag_identifier, STATE(1427), 1, sym_comment, - ACTIONS(3106), 42, + ACTIONS(1311), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1307), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -158441,14 +158562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70945] = 4, + [71024] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(889), 1, + ACTIONS(879), 1, anon_sym_LF, STATE(1428), 1, sym_comment, - ACTIONS(887), 42, + ACTIONS(877), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158491,23 +158612,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [70999] = 4, + [71078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(921), 1, - anon_sym_LF, STATE(1429), 1, sym_comment, - ACTIONS(919), 42, + ACTIONS(789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(787), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -158541,14 +158662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71053] = 4, + [71132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(3120), 1, anon_sym_LF, STATE(1430), 1, sym_comment, - ACTIONS(103), 42, + ACTIONS(3118), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158591,14 +158712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71107] = 4, + [71186] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3112), 1, + ACTIONS(895), 1, anon_sym_LF, STATE(1431), 1, sym_comment, - ACTIONS(3110), 42, + ACTIONS(893), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158641,67 +158762,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71161] = 7, - ACTIONS(143), 1, + [71240] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3100), 1, - anon_sym_DOT, + ACTIONS(925), 1, + anon_sym_LF, STATE(1432), 1, sym_comment, - STATE(1436), 1, - aux_sym_cell_path_repeat1, - STATE(1517), 1, - sym_path, - ACTIONS(728), 13, - 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, - anon_sym_DOT_DOT, - ACTIONS(730), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(923), 42, + 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, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [71221] = 4, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [71294] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3116), 1, + ACTIONS(899), 1, anon_sym_LF, STATE(1433), 1, sym_comment, - ACTIONS(3114), 42, + ACTIONS(897), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158744,14 +158862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71275] = 4, + [71348] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3120), 1, + ACTIONS(3124), 1, anon_sym_LF, STATE(1434), 1, sym_comment, - ACTIONS(3118), 42, + ACTIONS(3122), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158794,14 +158912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71329] = 4, + [71402] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3124), 1, + ACTIONS(907), 1, anon_sym_LF, STATE(1435), 1, sym_comment, - ACTIONS(3122), 42, + ACTIONS(905), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158844,67 +158962,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71383] = 7, - ACTIONS(143), 1, + [71456] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3100), 1, - anon_sym_DOT, - STATE(1403), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3128), 1, + anon_sym_LF, STATE(1436), 1, sym_comment, - STATE(1517), 1, - sym_path, - ACTIONS(732), 13, - 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, - anon_sym_DOT_DOT, - ACTIONS(734), 27, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(3126), 42, + 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, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [71443] = 4, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + aux_sym_unquoted_token1, + [71510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(3132), 1, anon_sym_LF, STATE(1437), 1, sym_comment, - ACTIONS(853), 42, + ACTIONS(3130), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158947,18 +159062,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71497] = 5, + [71564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3124), 1, + ACTIONS(3136), 1, anon_sym_LF, STATE(1438), 1, sym_comment, - ACTIONS(281), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3122), 39, + ACTIONS(3134), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -158968,6 +159079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -158998,20 +159112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71553] = 7, + [71618] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3126), 1, - anon_sym_LPAREN, + ACTIONS(911), 1, + anon_sym_LF, STATE(1439), 1, sym_comment, - ACTIONS(758), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(2386), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(85), 8, + ACTIONS(909), 42, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, aux_sym_val_number_token3, @@ -159020,45 +159143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - ACTIONS(756), 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, - [71613] = 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_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + sym_short_flag, + aux_sym_unquoted_token1, + [71672] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(913), 1, + ACTIONS(3136), 1, anon_sym_LF, STATE(1440), 1, sym_comment, - ACTIONS(911), 42, + ACTIONS(289), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3134), 39, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159068,9 +159183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -159101,14 +159213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71667] = 4, + [71728] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(839), 1, + ACTIONS(115), 1, anon_sym_LF, STATE(1441), 1, sym_comment, - ACTIONS(837), 42, + ACTIONS(113), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159151,23 +159263,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71721] = 4, + [71782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, - anon_sym_LF, STATE(1442), 1, sym_comment, - ACTIONS(841), 42, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -159201,14 +159313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71775] = 4, + [71836] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(115), 1, + ACTIONS(1461), 1, anon_sym_LF, STATE(1443), 1, sym_comment, - ACTIONS(113), 42, + ACTIONS(1459), 42, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159251,33 +159363,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [71829] = 6, + [71890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3130), 1, + ACTIONS(867), 1, anon_sym_LF, - ACTIONS(3132), 1, - anon_sym_PIPE, STATE(1444), 1, sym_comment, - STATE(1493), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3128), 39, - sym_cmd_identifier, + ACTIONS(865), 42, + 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_DASH_DASH, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + anon_sym_RBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -159301,164 +159403,21 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [71886] = 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, + sym_short_flag, + aux_sym_unquoted_token1, + [71944] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(3134), 1, - anon_sym_DOT, STATE(1445), 1, sym_comment, - STATE(1494), 1, - aux_sym_cell_path_repeat1, - STATE(1550), 1, - sym_path, - ACTIONS(728), 38, - anon_sym_EQ, - 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_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, - [71945] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3136), 1, - anon_sym_QMARK2, - STATE(1446), 1, - sym_comment, - ACTIONS(748), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(750), 27, - 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [72000] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3136), 1, - anon_sym_QMARK2, - STATE(1447), 1, - sym_comment, - ACTIONS(748), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(750), 27, - 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [72055] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1448), 1, - sym_comment, ACTIONS(925), 2, ts_builtin_sym_end, anon_sym_LF, @@ -159503,15 +159462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72108] = 4, + [71997] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1449), 1, + STATE(1446), 1, sym_comment, - ACTIONS(909), 2, + ACTIONS(929), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(907), 40, + ACTIONS(927), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159552,15 +159511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72161] = 4, + [72050] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1450), 1, + STATE(1447), 1, sym_comment, - ACTIONS(905), 2, + ACTIONS(105), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(903), 40, + ACTIONS(103), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159601,15 +159560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72214] = 4, + [72103] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1451), 1, + STATE(1448), 1, sym_comment, - ACTIONS(893), 2, + ACTIONS(887), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(891), 40, + ACTIONS(885), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159650,15 +159609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72267] = 4, + [72156] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1452), 1, + STATE(1449), 1, sym_comment, - ACTIONS(766), 2, + ACTIONS(3120), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 40, + ACTIONS(3118), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159699,15 +159658,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72320] = 4, + [72209] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1453), 1, + ACTIONS(754), 1, + anon_sym_LF, + ACTIONS(3138), 1, + anon_sym_DOT, + STATE(1450), 1, sym_comment, - ACTIONS(881), 2, + STATE(1471), 1, + aux_sym_cell_path_repeat1, + STATE(1542), 1, + sym_path, + ACTIONS(752), 38, + anon_sym_EQ, + 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_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, + [72268] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1451), 1, + sym_comment, + ACTIONS(3124), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 40, + ACTIONS(3122), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159748,15 +159759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72373] = 4, + [72321] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1454), 1, + STATE(1452), 1, sym_comment, - ACTIONS(1392), 2, + ACTIONS(895), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1390), 40, + ACTIONS(893), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159797,15 +159808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72426] = 4, + [72374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1455), 1, + STATE(1453), 1, sym_comment, - ACTIONS(1404), 2, + ACTIONS(891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1402), 40, + ACTIONS(889), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159846,41 +159857,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72479] = 8, - ACTIONS(143), 1, + [72427] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3138), 1, - anon_sym_LPAREN, - STATE(1456), 1, + STATE(1454), 1, sym_comment, - STATE(2468), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2564), 3, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_DASHinf, - ACTIONS(2566), 5, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_NaN, - ACTIONS(756), 8, + ACTIONS(775), 14, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - sym_short_flag, - ACTIONS(758), 23, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(777), 28, + 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_LBRACE, + 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, @@ -159896,69 +159904,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [72480] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1455), 1, + sym_comment, + ACTIONS(779), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - [72540] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3132), 1, + anon_sym_DOT_DOT, + ACTIONS(781), 28, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3142), 1, - anon_sym_LF, - STATE(1457), 1, - sym_comment, - STATE(1493), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3140), 39, - 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_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, + 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, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - [72597] = 4, + [72533] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1458), 1, + STATE(1456), 1, sym_comment, - ACTIONS(867), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(865), 40, + ACTIONS(833), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -159999,19 +160004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72650] = 5, + [72586] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1459), 1, + STATE(1457), 1, sym_comment, - ACTIONS(3124), 2, + ACTIONS(867), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(287), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3122), 37, + ACTIONS(865), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160019,6 +160020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -160049,18 +160053,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72705] = 4, + [72639] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1460), 1, - sym_comment, - ACTIONS(901), 2, - ts_builtin_sym_end, + ACTIONS(3142), 1, anon_sym_LF, - ACTIONS(899), 40, + STATE(1458), 1, + sym_comment, + ACTIONS(3140), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, @@ -160098,15 +160102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72758] = 4, + [72692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1461), 1, + STATE(1459), 1, sym_comment, - ACTIONS(889), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(887), 40, + ACTIONS(833), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160147,15 +160151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72811] = 4, + [72745] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1462), 1, + STATE(1460), 1, sym_comment, - ACTIONS(3124), 2, + ACTIONS(3128), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3122), 40, + ACTIONS(3126), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160196,15 +160200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72864] = 4, + [72798] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1463), 1, + STATE(1461), 1, sym_comment, - ACTIONS(3120), 2, + ACTIONS(3132), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3118), 40, + ACTIONS(3130), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160245,15 +160249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72917] = 4, + [72851] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1464), 1, + STATE(1462), 1, sym_comment, - ACTIONS(770), 2, + ACTIONS(915), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 40, + ACTIONS(913), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160294,15 +160298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [72970] = 4, + [72904] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1465), 1, + STATE(1463), 1, sym_comment, - ACTIONS(105), 2, + ACTIONS(777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(103), 40, + ACTIONS(775), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160343,33 +160347,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73023] = 6, + [72957] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3146), 1, - anon_sym_LF, - STATE(1466), 1, + STATE(1464), 1, sym_comment, - STATE(1493), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3144), 39, - sym_cmd_identifier, + ACTIONS(3136), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3134), 40, + 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_DASH_DASH, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -160393,16 +160386,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [73080] = 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, + sym_short_flag, + aux_sym_unquoted_token1, + [73010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1467), 1, + STATE(1465), 1, sym_comment, - ACTIONS(921), 2, + ACTIONS(875), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(919), 40, + ACTIONS(873), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160443,15 +160445,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73133] = 4, + [73063] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3144), 1, + anon_sym_LPAREN, + STATE(1466), 1, + sym_comment, + STATE(2470), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2572), 3, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_DASHinf, + ACTIONS(2574), 5, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_NaN, + ACTIONS(758), 8, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + sym_short_flag, + ACTIONS(760), 23, + anon_sym_DASH_DASH, + 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, + [73124] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1468), 1, + STATE(1467), 1, sym_comment, - ACTIONS(875), 2, + ACTIONS(3136), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(873), 40, + ACTIONS(295), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3134), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160459,9 +160518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_val_nothing, anon_sym_true, anon_sym_false, @@ -160492,15 +160548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73186] = 4, + [73179] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1469), 1, + STATE(1468), 1, sym_comment, - ACTIONS(871), 2, + ACTIONS(941), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(869), 40, + ACTIONS(939), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160541,15 +160597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73239] = 4, + [73232] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1470), 1, + STATE(1469), 1, sym_comment, - ACTIONS(897), 2, + ACTIONS(1449), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(895), 40, + ACTIONS(1447), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160590,67 +160646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73292] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1471), 1, - sym_comment, - ACTIONS(764), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(766), 28, - 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [73345] = 6, + [73285] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3150), 1, + ACTIONS(3148), 1, anon_sym_LF, - STATE(1472), 1, + ACTIONS(3151), 1, + anon_sym_PIPE, + STATE(1470), 2, sym_comment, - STATE(1493), 1, aux_sym_pipe_element_repeat1, - ACTIONS(3148), 39, + ACTIONS(3146), 39, sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160690,20 +160696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - [73402] = 7, + [73340] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(708), 1, + ACTIONS(742), 1, anon_sym_LF, - ACTIONS(3134), 1, + ACTIONS(3138), 1, anon_sym_DOT, - STATE(1445), 1, - sym_path, - STATE(1473), 1, + STATE(1471), 1, sym_comment, - STATE(1589), 1, - sym_cell_path, - ACTIONS(706), 38, + STATE(1485), 1, + aux_sym_cell_path_repeat1, + STATE(1542), 1, + sym_path, + ACTIONS(740), 38, anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, @@ -160742,15 +160748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [73461] = 4, + [73399] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1474), 1, + STATE(1472), 1, sym_comment, - ACTIONS(827), 2, + ACTIONS(3111), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(825), 40, + ACTIONS(3109), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160791,15 +160797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73514] = 4, + [73452] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1475), 1, + STATE(1473), 1, sym_comment, - ACTIONS(115), 2, + ACTIONS(839), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(113), 40, + ACTIONS(837), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160840,33 +160846,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73567] = 6, - ACTIONS(3), 1, + [73505] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3154), 1, + anon_sym_QMARK2, + STATE(1474), 1, + sym_comment, + ACTIONS(769), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(771), 27, + 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, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [73560] = 5, + ACTIONS(145), 1, + anon_sym_POUND, ACTIONS(3154), 1, - anon_sym_LF, + anon_sym_QMARK2, + STATE(1475), 1, + sym_comment, + ACTIONS(769), 14, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(771), 27, + 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, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [73615] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(1476), 1, sym_comment, - STATE(1493), 1, - aux_sym_pipe_element_repeat1, - ACTIONS(3152), 39, - sym_cmd_identifier, + ACTIONS(899), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(897), 40, + 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_DASH_DASH, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -160890,16 +160985,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_CARET, - [73624] = 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, + sym_short_flag, + aux_sym_unquoted_token1, + [73668] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1477), 1, sym_comment, - ACTIONS(835), 2, + ACTIONS(843), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(833), 40, + ACTIONS(841), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160940,15 +161044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73677] = 4, + [73721] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1478), 1, sym_comment, - ACTIONS(3116), 2, + ACTIONS(847), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3114), 40, + ACTIONS(845), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -160989,15 +161093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73730] = 4, + [73774] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1479), 1, sym_comment, - ACTIONS(929), 2, + ACTIONS(851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(927), 40, + ACTIONS(849), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161038,15 +161142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73783] = 4, + [73827] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1480), 1, sym_comment, - ACTIONS(929), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(927), 40, + ACTIONS(909), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161087,7 +161191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73836] = 4, + [73880] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1481), 1, @@ -161136,15 +161240,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73889] = 4, + [73933] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3158), 1, + anon_sym_LF, + ACTIONS(3160), 1, + anon_sym_PIPE, + STATE(1470), 1, + aux_sym_pipe_element_repeat1, STATE(1482), 1, sym_comment, - ACTIONS(823), 2, + ACTIONS(3156), 39, + 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_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + [73990] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1483), 1, + sym_comment, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(821), 40, + ACTIONS(877), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161185,15 +161340,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73942] = 4, + [74043] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1483), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3164), 1, + anon_sym_LF, + STATE(1470), 1, + aux_sym_pipe_element_repeat1, + STATE(1484), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(3162), 39, + 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_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + [74100] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(731), 1, + anon_sym_LF, + ACTIONS(3166), 1, + anon_sym_DOT, + STATE(1542), 1, + sym_path, + STATE(1485), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 38, + anon_sym_EQ, + 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_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, + [74157] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(709), 1, + anon_sym_LF, + ACTIONS(3138), 1, + anon_sym_DOT, + STATE(1450), 1, + sym_path, + STATE(1486), 1, + sym_comment, + STATE(1590), 1, + sym_cell_path, + ACTIONS(707), 38, + anon_sym_EQ, + 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_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, + [74216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1487), 1, + sym_comment, + ACTIONS(859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 40, + ACTIONS(857), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161234,15 +161543,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [73995] = 4, + [74269] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1484), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3171), 1, + anon_sym_LF, + STATE(1470), 1, + aux_sym_pipe_element_repeat1, + STATE(1488), 1, + sym_comment, + ACTIONS(3169), 39, + 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_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + [74326] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1489), 1, sym_comment, - ACTIONS(3112), 2, + ACTIONS(907), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3110), 40, + ACTIONS(905), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161283,22 +161643,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74048] = 4, + [74379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3158), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3175), 1, anon_sym_LF, - STATE(1485), 1, + STATE(1470), 1, + aux_sym_pipe_element_repeat1, + STATE(1490), 1, sym_comment, - ACTIONS(3156), 41, - anon_sym_SEMI, + ACTIONS(3173), 39, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -161322,32 +161693,34 @@ 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, - sym_short_flag, - aux_sym_unquoted_token1, - [74101] = 4, + anon_sym_CARET, + [74436] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(1486), 1, - sym_comment, - ACTIONS(3108), 2, - ts_builtin_sym_end, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3179), 1, anon_sym_LF, - ACTIONS(3106), 40, - anon_sym_SEMI, + STATE(1470), 1, + aux_sym_pipe_element_repeat1, + STATE(1491), 1, + sym_comment, + ACTIONS(3177), 39, + sym_cmd_identifier, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PIPE, anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_break, + anon_sym_continue, + anon_sym_do, + anon_sym_if, + anon_sym_match, anon_sym_LBRACE, + anon_sym_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -161371,25 +161744,16 @@ 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, - sym_short_flag, - aux_sym_unquoted_token1, - [74154] = 4, + anon_sym_CARET, + [74493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1487), 1, + STATE(1492), 1, sym_comment, - ACTIONS(847), 2, + ACTIONS(115), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(845), 40, + ACTIONS(113), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161430,10 +161794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74207] = 4, + [74546] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1488), 1, + STATE(1493), 1, sym_comment, ACTIONS(933), 2, ts_builtin_sym_end, @@ -161479,15 +161843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74260] = 4, + [74599] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1489), 1, + STATE(1494), 1, sym_comment, - ACTIONS(3104), 2, + ACTIONS(781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3102), 40, + ACTIONS(779), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161528,66 +161892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74313] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LF, - ACTIONS(3160), 1, - anon_sym_DOT, - STATE(1550), 1, - sym_path, - STATE(1490), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 38, - anon_sym_EQ, - 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_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, - [74370] = 4, + [74652] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1491), 1, + STATE(1495), 1, sym_comment, - ACTIONS(913), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(911), 40, + ACTIONS(861), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161628,14 +161941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74423] = 4, + [74705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3165), 1, + ACTIONS(3183), 1, anon_sym_LF, - STATE(1492), 1, + STATE(1496), 1, sym_comment, - ACTIONS(3163), 41, + ACTIONS(3181), 41, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161677,166 +161990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74476] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3169), 1, - anon_sym_LF, - ACTIONS(3172), 1, - anon_sym_PIPE, - STATE(1493), 2, - sym_comment, - aux_sym_pipe_element_repeat1, - ACTIONS(3167), 39, - 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_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - [74531] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(734), 1, - anon_sym_LF, - ACTIONS(3134), 1, - anon_sym_DOT, - STATE(1490), 1, - aux_sym_cell_path_repeat1, - STATE(1494), 1, - sym_comment, - STATE(1550), 1, - sym_path, - ACTIONS(732), 38, - anon_sym_EQ, - 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_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, - [74590] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1495), 1, - sym_comment, - ACTIONS(768), 14, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(770), 28, - 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [74643] = 4, + [74758] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1496), 1, + STATE(1497), 1, sym_comment, - ACTIONS(839), 2, + ACTIONS(871), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(837), 40, + ACTIONS(869), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161877,15 +162039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74696] = 4, + [74811] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1497), 1, + STATE(1498), 1, sym_comment, - ACTIONS(843), 2, + ACTIONS(1461), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(841), 40, + ACTIONS(1459), 40, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -161926,29 +162088,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, sym_short_flag, aux_sym_unquoted_token1, - [74749] = 7, + [74864] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(3175), 1, + ACTIONS(3185), 1, anon_sym_DOT, - STATE(1498), 1, + STATE(1499), 1, sym_comment, - STATE(1507), 1, + STATE(1506), 1, aux_sym_cell_path_repeat1, - STATE(1581), 1, + STATE(1593), 1, sym_path, - ACTIONS(728), 37, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 36, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, 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, @@ -161973,29 +162139,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [74807] = 5, + [74922] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3187), 1, + anon_sym_RBRACK, + ACTIONS(3195), 1, + anon_sym_list, + STATE(1783), 1, + sym__one_type, + STATE(3595), 1, + sym__type_annotation, + ACTIONS(3192), 2, + anon_sym_table, + anon_sym_record, + STATE(1500), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + STATE(1549), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3189), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [74984] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3177), 1, - anon_sym_QMARK2, + ACTIONS(3185), 1, + anon_sym_DOT, STATE(1499), 1, + sym_path, + STATE(1501), 1, sym_comment, - ACTIONS(748), 39, + STATE(1640), 1, + sym_cell_path, + ACTIONS(709), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(707), 36, anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -162026,29 +162243,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [74861] = 10, - ACTIONS(143), 1, + [75042] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3179), 1, + ACTIONS(3198), 1, anon_sym_RBRACK, - ACTIONS(3185), 1, + ACTIONS(3204), 1, anon_sym_list, STATE(1500), 1, - sym_comment, - STATE(1516), 1, aux_sym__multiple_types_repeat1, - STATE(1802), 1, + STATE(1502), 1, + sym_comment, + STATE(1783), 1, sym__one_type, - STATE(3484), 1, + STATE(3595), 1, sym__type_annotation, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_table, anon_sym_record, - STATE(1563), 3, + STATE(1549), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(3181), 31, + ACTIONS(3200), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162080,26 +162297,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [74925] = 6, + [75106] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3187), 1, - anon_sym_DOT, - STATE(1600), 1, - sym_path, - ACTIONS(701), 2, - ts_builtin_sym_end, + ACTIONS(771), 1, anon_sym_LF, - STATE(1501), 2, + ACTIONS(3206), 1, + anon_sym_QMARK2, + STATE(1503), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 36, + ACTIONS(769), 39, anon_sym_EQ, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -162130,16 +162346,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [74981] = 5, + [75160] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, + ACTIONS(754), 1, + anon_sym_LF, + ACTIONS(3208), 1, + anon_sym_DOT, + STATE(1504), 1, + sym_comment, + STATE(1519), 1, + aux_sym_cell_path_repeat1, + STATE(1578), 1, + sym_path, + ACTIONS(752), 37, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + 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, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [75218] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(771), 1, anon_sym_LF, - ACTIONS(3177), 1, + ACTIONS(3206), 1, anon_sym_QMARK2, - STATE(1502), 1, + STATE(1505), 1, sym_comment, - ACTIONS(748), 39, + ACTIONS(769), 39, anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, @@ -162179,28 +162446,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75035] = 9, - ACTIONS(143), 1, + [75272] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3190), 1, - anon_sym_RBRACK, - ACTIONS(3198), 1, - anon_sym_list, - STATE(1802), 1, - sym__one_type, - STATE(3484), 1, - sym__type_annotation, - ACTIONS(3195), 2, - anon_sym_table, - anon_sym_record, - STATE(1503), 2, + ACTIONS(3185), 1, + anon_sym_DOT, + STATE(1506), 1, sym_comment, - aux_sym__multiple_types_repeat1, - STATE(1563), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3192), 31, + STATE(1517), 1, + aux_sym_cell_path_repeat1, + STATE(1593), 1, + sym_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 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, + [75330] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3212), 1, + anon_sym_LT, + STATE(1507), 1, + sym_comment, + ACTIONS(3210), 40, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162230,16 +162538,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [75097] = 4, - ACTIONS(143), 1, + anon_sym_record, + anon_sym_list, + anon_sym_AT, + anon_sym_LBRACE, + [75382] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3203), 1, + ACTIONS(3214), 1, anon_sym_LT, - STATE(1504), 1, + STATE(1508), 1, sym_comment, - ACTIONS(3201), 40, + ACTIONS(3210), 40, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_COMMA, @@ -162280,66 +162593,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_AT, anon_sym_LBRACE, - [75149] = 4, - ACTIONS(3), 1, + [75434] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3205), 1, - anon_sym_LF, - STATE(1505), 1, - sym_comment, - ACTIONS(3167), 40, - sym_cmd_identifier, + ACTIONS(3204), 1, + anon_sym_list, + ACTIONS(3216), 1, 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_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - [75201] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3207), 1, - anon_sym_LT, - STATE(1506), 1, + STATE(1509), 1, sym_comment, - ACTIONS(3201), 40, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(3530), 1, + sym__multiple_types, + STATE(3549), 1, + sym__type_annotation, + STATE(3571), 1, + sym__one_type, + ACTIONS(3202), 2, + anon_sym_table, + anon_sym_record, + STATE(1549), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3200), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162369,27 +162645,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_AT, - anon_sym_LBRACE, - [75253] = 7, + [75498] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(734), 1, + ACTIONS(750), 1, anon_sym_LF, - ACTIONS(3175), 1, + ACTIONS(3208), 1, anon_sym_DOT, - STATE(1507), 1, - sym_comment, - STATE(1512), 1, - aux_sym_cell_path_repeat1, - STATE(1581), 1, + STATE(1504), 1, sym_path, - ACTIONS(732), 37, + STATE(1510), 1, + sym_comment, + STATE(1619), 1, + sym_cell_path, + ACTIONS(748), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -162427,33 +162698,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [75311] = 7, + [75556] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3209), 1, - anon_sym_DOT, - STATE(1508), 1, + ACTIONS(3218), 1, + anon_sym_LF, + STATE(1511), 1, sym_comment, - STATE(1509), 1, - sym_path, - STATE(1618), 1, - sym_cell_path, - ACTIONS(708), 2, - ts_builtin_sym_end, + ACTIONS(3146), 40, + 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_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + [75608] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(781), 1, anon_sym_LF, - ACTIONS(706), 36, + STATE(1512), 1, + sym_comment, + ACTIONS(779), 40, anon_sym_EQ, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -162478,33 +162794,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75369] = 7, + [75660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3209), 1, - anon_sym_DOT, - STATE(1509), 1, - sym_comment, - STATE(1519), 1, - aux_sym_cell_path_repeat1, - STATE(1600), 1, - sym_path, - ACTIONS(730), 2, - ts_builtin_sym_end, + ACTIONS(777), 1, anon_sym_LF, - ACTIONS(728), 36, + STATE(1513), 1, + sym_comment, + ACTIONS(775), 40, anon_sym_EQ, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -162529,29 +162842,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75427] = 10, - ACTIONS(143), 1, + [75712] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3185), 1, + ACTIONS(3204), 1, anon_sym_list, - ACTIONS(3211), 1, - anon_sym_LBRACK, - STATE(1510), 1, + ACTIONS(3220), 1, + anon_sym_RBRACK, + STATE(1502), 1, + aux_sym__multiple_types_repeat1, + STATE(1514), 1, sym_comment, - STATE(3573), 1, - sym__type_annotation, - STATE(3574), 1, - sym__multiple_types, - STATE(3577), 1, + STATE(1783), 1, sym__one_type, - ACTIONS(3183), 2, + STATE(3595), 1, + sym__type_annotation, + ACTIONS(3202), 2, anon_sym_table, anon_sym_record, - STATE(1563), 3, + STATE(1549), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(3181), 31, + ACTIONS(3200), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -162583,12 +162896,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [75491] = 4, - ACTIONS(143), 1, + [75776] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1511), 1, + STATE(1515), 1, sym_comment, - ACTIONS(777), 14, + ACTIONS(787), 14, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -162603,7 +162916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(779), 27, + ACTIONS(789), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -162631,39 +162944,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [75543] = 6, - ACTIONS(3), 1, + [75828] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LF, - ACTIONS(3213), 1, - anon_sym_DOT, - STATE(1581), 1, - sym_path, - STATE(1512), 2, + STATE(1516), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 37, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(793), 14, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(795), 27, + 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, @@ -162674,37 +162990,34 @@ 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, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [75599] = 4, + [75880] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(3222), 1, + anon_sym_DOT, + STATE(1593), 1, + sym_path, + ACTIONS(731), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1513), 1, + STATE(1517), 2, sym_comment, - ACTIONS(768), 40, + aux_sym_cell_path_repeat1, + ACTIONS(729), 36, anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -162729,30 +163042,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75651] = 4, + [75936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(3227), 1, anon_sym_LF, - STATE(1514), 1, + STATE(1518), 1, sym_comment, - ACTIONS(764), 40, - anon_sym_EQ, + ACTIONS(3225), 40, + 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_try, + anon_sym_return, + anon_sym_where, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + [75988] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(742), 1, + anon_sym_LF, + ACTIONS(3208), 1, + anon_sym_DOT, + STATE(1519), 1, + sym_comment, + STATE(1520), 1, + aux_sym_cell_path_repeat1, + STATE(1578), 1, + sym_path, + ACTIONS(740), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -162777,20 +163137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75703] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [76046] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(718), 1, + ACTIONS(731), 1, anon_sym_LF, - ACTIONS(3175), 1, + ACTIONS(3229), 1, anon_sym_DOT, - STATE(1498), 1, + STATE(1578), 1, sym_path, - STATE(1515), 1, + STATE(1520), 2, sym_comment, - STATE(1614), 1, - sym_cell_path, - ACTIONS(716), 37, + aux_sym_cell_path_repeat1, + ACTIONS(729), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -162828,71 +163191,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [75761] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3185), 1, - anon_sym_list, - ACTIONS(3216), 1, - anon_sym_RBRACK, - STATE(1503), 1, - aux_sym__multiple_types_repeat1, - STATE(1516), 1, - sym_comment, - STATE(1802), 1, - sym__one_type, - STATE(3484), 1, - sym__type_annotation, - ACTIONS(3183), 2, - anon_sym_table, - anon_sym_record, - STATE(1563), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3181), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [75825] = 4, - ACTIONS(143), 1, + [76102] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1517), 1, + ACTIONS(3232), 1, + anon_sym_DOT, + STATE(1521), 1, sym_comment, - ACTIONS(781), 14, + STATE(1566), 1, + sym_path, + STATE(1728), 1, + sym_cell_path, + ACTIONS(725), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -162901,8 +163215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(783), 27, + ACTIONS(727), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -162928,83 +163241,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [75877] = 4, - ACTIONS(3), 1, + [76159] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3220), 1, - anon_sym_LF, - STATE(1518), 1, + STATE(1522), 1, sym_comment, - ACTIONS(3218), 40, - sym_cmd_identifier, + ACTIONS(775), 6, + anon_sym_EQ, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(777), 34, + 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_break, - anon_sym_continue, - anon_sym_do, + anon_sym_in, anon_sym_if, - anon_sym_match, anon_sym_LBRACE, - anon_sym_try, - anon_sym_return, - anon_sym_where, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - [75929] = 7, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT, + 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, + [76210] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1523), 1, + sym_comment, + ACTIONS(3234), 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, + [76259] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1524), 1, + sym_comment, + ACTIONS(3236), 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, + [76308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3209), 1, - anon_sym_DOT, - STATE(1501), 1, - aux_sym_cell_path_repeat1, - STATE(1519), 1, + STATE(1525), 1, sym_comment, - STATE(1600), 1, - sym_path, - ACTIONS(734), 2, + ACTIONS(781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 36, + ACTIONS(779), 38, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -163029,30 +163427,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [75987] = 5, + [76359] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3222), 1, - anon_sym_QMARK2, - STATE(1520), 1, + ACTIONS(3238), 1, + anon_sym_DOT, + STATE(1526), 1, sym_comment, + STATE(1533), 1, + sym_path, + STATE(1747), 1, + sym_cell_path, ACTIONS(750), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 37, - anon_sym_EQ, + ACTIONS(748), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - 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, @@ -163077,41 +163473,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76040] = 7, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [76416] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3224), 1, - anon_sym_DOT, - STATE(1521), 1, + STATE(1527), 1, sym_comment, - STATE(1554), 1, - aux_sym_cell_path_repeat1, - STATE(1642), 1, - sym_path, - ACTIONS(732), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(734), 31, - anon_sym_COMMA, + ACTIONS(777), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(775), 38, + anon_sym_EQ, + 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_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_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, @@ -163125,21 +163524,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [76467] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3244), 1, + anon_sym_PIPE, + STATE(1528), 1, + sym_comment, + ACTIONS(3242), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [76097] = 6, - ACTIONS(143), 1, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(3240), 23, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [76520] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3226), 1, - anon_sym_DOT, - STATE(1605), 1, - sym_path, - STATE(1522), 2, + ACTIONS(303), 1, + anon_sym_DOT_DOT, + STATE(1529), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 12, + ACTIONS(301), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -163149,13 +163595,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + ACTIONS(903), 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, + [76575] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3246), 1, + anon_sym_DOT, + STATE(1530), 1, + sym_comment, + STATE(1547), 1, + sym_path, + STATE(1776), 1, + sym_cell_path, + ACTIONS(748), 6, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(701), 25, + ACTIONS(750), 31, 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, @@ -163171,28 +163666,27 @@ 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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76152] = 5, + [76632] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3222), 1, - anon_sym_QMARK2, - STATE(1523), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, + ACTIONS(789), 1, anon_sym_LF, - ACTIONS(748), 37, + STATE(1531), 1, + sym_comment, + ACTIONS(787), 39, anon_sym_EQ, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, @@ -163224,18 +163718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76205] = 7, - ACTIONS(143), 1, + [76683] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_DOT, - STATE(1522), 1, - aux_sym_cell_path_repeat1, - STATE(1524), 1, + STATE(1532), 1, sym_comment, - STATE(1605), 1, + STATE(1561), 1, + aux_sym_cell_path_repeat1, + STATE(1647), 1, sym_path, - ACTIONS(732), 12, + ACTIONS(752), 12, sym_identifier, anon_sym_GT, anon_sym_in, @@ -163248,7 +163742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(734), 25, + ACTIONS(754), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -163274,87 +163768,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76262] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1525), 1, - sym_comment, - ACTIONS(3231), 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, - [76311] = 7, - ACTIONS(143), 1, + [76740] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, + ACTIONS(3238), 1, anon_sym_DOT, - STATE(1524), 1, - aux_sym_cell_path_repeat1, - STATE(1526), 1, + STATE(1533), 1, sym_comment, - STATE(1605), 1, + STATE(1553), 1, + aux_sym_cell_path_repeat1, + STATE(1630), 1, sym_path, - ACTIONS(728), 12, - sym_identifier, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 35, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, + 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, - anon_sym_DOT_DOT, - ACTIONS(730), 25, - anon_sym_COMMA, - anon_sym_DASH, - 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, @@ -163365,46 +163811,42 @@ 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, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76368] = 7, - ACTIONS(143), 1, + sym_short_flag, + [76797] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3250), 1, anon_sym_DOT, - STATE(1527), 1, - sym_comment, - STATE(1560), 1, + STATE(1603), 1, sym_path, - STATE(1737), 1, - sym_cell_path, - ACTIONS(712), 12, - sym_identifier, + STATE(1534), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 6, 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(714), 25, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(731), 31, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -163420,21 +163862,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [76425] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [76852] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1528), 1, - sym_comment, - ACTIONS(766), 2, - ts_builtin_sym_end, + ACTIONS(799), 1, anon_sym_LF, - ACTIONS(764), 38, + STATE(1535), 1, + sym_comment, + ACTIONS(797), 39, anon_sym_EQ, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_PLUS_EQ, @@ -163442,7 +163890,6 @@ 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, @@ -163467,45 +163914,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76476] = 6, - ACTIONS(143), 1, + [76903] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(295), 1, - anon_sym_DOT_DOT, - STATE(1529), 1, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3253), 1, + anon_sym_QMARK2, + STATE(1536), 1, sym_comment, - ACTIONS(293), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 12, - sym_identifier, + ACTIONS(769), 38, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, 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(851), 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, @@ -163516,87 +163955,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [76531] = 3, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [76956] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1530), 1, + ACTIONS(3244), 1, + anon_sym_PIPE, + STATE(1537), 1, sym_comment, - ACTIONS(3235), 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, + ACTIONS(3257), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(3255), 23, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [77009] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3244), 1, + anon_sym_PIPE, + STATE(1538), 1, + sym_comment, + ACTIONS(3261), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - [76580] = 7, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(3259), 23, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [77062] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3246), 1, anon_sym_DOT, - STATE(1531), 1, + STATE(1534), 1, + aux_sym_cell_path_repeat1, + STATE(1539), 1, sym_comment, - STATE(1560), 1, + STATE(1603), 1, sym_path, - STATE(1675), 1, - sym_cell_path, - ACTIONS(706), 12, - sym_identifier, + ACTIONS(740), 6, 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(708), 25, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(742), 31, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -163612,18 +164103,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [76637] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [77119] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3232), 1, anon_sym_DOT, - STATE(1532), 1, + STATE(1540), 1, sym_comment, - STATE(1560), 1, - sym_path, - STATE(1772), 1, + STATE(1557), 1, sym_cell_path, - ACTIONS(744), 12, + STATE(1566), 1, + sym_path, + ACTIONS(748), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -163636,7 +164132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(746), 25, + ACTIONS(750), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -163662,12 +164158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [76694] = 3, - ACTIONS(143), 1, + [77176] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1533), 1, + STATE(1541), 1, sym_comment, - ACTIONS(3237), 40, + ACTIONS(3263), 40, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_COMMA, @@ -163708,172 +164204,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_AT, anon_sym_LBRACE, - [76743] = 4, + [77225] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(795), 1, anon_sym_LF, - STATE(1534), 1, + STATE(1542), 1, sym_comment, - ACTIONS(764), 39, + ACTIONS(793), 39, + anon_sym_EQ, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, anon_sym_DOT, 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [76794] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_PIPE, - STATE(1535), 1, - sym_comment, - ACTIONS(3241), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - 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(3239), 23, - 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_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [76847] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_PIPE, - STATE(1536), 1, - sym_comment, - ACTIONS(3247), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - 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(3245), 23, - 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_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [76900] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1537), 1, - sym_comment, - ACTIONS(770), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(768), 38, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -163898,66 +164251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [76951] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_PIPE, - STATE(1538), 1, - sym_comment, - ACTIONS(3251), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - 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(3249), 23, - 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_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [77004] = 7, - ACTIONS(143), 1, + [77276] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3265), 1, anon_sym_DOT, - STATE(1539), 1, - sym_comment, - STATE(1560), 1, + STATE(1610), 1, sym_path, - STATE(1720), 1, - sym_cell_path, - ACTIONS(740), 12, + STATE(1543), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -163970,7 +164274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(742), 25, + ACTIONS(731), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -163996,46 +164300,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77061] = 7, - ACTIONS(143), 1, + [77331] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3233), 1, - anon_sym_DOT, - STATE(1540), 1, + ACTIONS(3268), 1, + anon_sym_QMARK2, + STATE(1544), 1, sym_comment, - STATE(1560), 1, - sym_path, - STATE(1690), 1, - sym_cell_path, - ACTIONS(736), 12, - sym_identifier, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 37, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + 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_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(738), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + [77384] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3268), 1, + anon_sym_QMARK2, + STATE(1545), 1, + sym_comment, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 37, + anon_sym_EQ, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + 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_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, @@ -164046,18 +164393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77118] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [77437] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3232), 1, anon_sym_DOT, - STATE(1541), 1, + STATE(1543), 1, + aux_sym_cell_path_repeat1, + STATE(1546), 1, sym_comment, - STATE(1560), 1, + STATE(1610), 1, sym_path, - STATE(1685), 1, - sym_cell_path, - ACTIONS(724), 12, + ACTIONS(740), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164070,7 +164420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(726), 25, + ACTIONS(742), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -164096,25 +164446,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77175] = 7, - ACTIONS(143), 1, + [77494] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3224), 1, + ACTIONS(3246), 1, anon_sym_DOT, - STATE(1542), 1, + STATE(1539), 1, + aux_sym_cell_path_repeat1, + STATE(1547), 1, sym_comment, - STATE(1561), 1, + STATE(1603), 1, sym_path, - STATE(1680), 1, - sym_cell_path, - ACTIONS(716), 6, + ACTIONS(752), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(718), 31, + ACTIONS(754), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -164146,12 +164496,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [77232] = 4, - ACTIONS(143), 1, + [77551] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1543), 1, + STATE(1548), 1, + sym_comment, + ACTIONS(3270), 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, + [77600] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1549), 1, + sym_comment, + ACTIONS(3272), 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, + [77649] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3232), 1, + anon_sym_DOT, + STATE(1550), 1, sym_comment, - ACTIONS(825), 13, + STATE(1566), 1, + sym_path, + STATE(1731), 1, + sym_cell_path, + ACTIONS(717), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164164,8 +164612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(827), 27, + ACTIONS(719), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -164191,18 +164638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [77283] = 5, + [77706] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, + ACTIONS(777), 1, anon_sym_LF, - ACTIONS(3253), 1, - anon_sym_QMARK2, - STATE(1544), 1, + STATE(1551), 1, sym_comment, - ACTIONS(748), 38, + ACTIONS(775), 39, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -164213,6 +164656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -164241,25 +164685,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [77336] = 5, + [77757] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3244), 1, + anon_sym_PIPE, + STATE(1552), 1, + sym_comment, + ACTIONS(3276), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(3274), 23, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [77810] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3253), 1, - anon_sym_QMARK2, - STATE(1545), 1, + ACTIONS(3238), 1, + anon_sym_DOT, + STATE(1553), 1, sym_comment, - ACTIONS(748), 38, + STATE(1568), 1, + aux_sym_cell_path_repeat1, + STATE(1630), 1, + sym_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 35, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -164289,18 +164783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [77389] = 7, - ACTIONS(143), 1, + [77867] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3232), 1, anon_sym_DOT, - STATE(1543), 1, - sym_cell_path, - STATE(1546), 1, + STATE(1554), 1, sym_comment, - STATE(1560), 1, + STATE(1566), 1, sym_path, - ACTIONS(716), 12, + STATE(1704), 1, + sym_cell_path, + ACTIONS(744), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164313,7 +164807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(718), 25, + ACTIONS(746), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -164339,40 +164833,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77446] = 4, - ACTIONS(3), 1, + [77924] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, - STATE(1547), 1, + ACTIONS(3232), 1, + anon_sym_DOT, + STATE(1555), 1, sym_comment, - ACTIONS(777), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(1566), 1, + sym_path, + STATE(1713), 1, + sym_cell_path, + ACTIONS(736), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, 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_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(738), 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, @@ -164383,138 +164883,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, - [77497] = 4, - ACTIONS(3), 1, + [77981] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(791), 1, - anon_sym_LF, - STATE(1548), 1, + ACTIONS(3232), 1, + anon_sym_DOT, + STATE(1556), 1, sym_comment, - ACTIONS(789), 39, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(1566), 1, + sym_path, + STATE(1716), 1, + sym_cell_path, + ACTIONS(721), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, 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_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, - [77548] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_PIPE, - STATE(1549), 1, - sym_comment, - ACTIONS(3257), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - 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(3255), 23, - 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_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [77601] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1550), 1, - sym_comment, - ACTIONS(781), 39, - anon_sym_EQ, - anon_sym_SEMI, + ACTIONS(723), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - 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_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, @@ -164525,20 +164933,12 @@ 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, - [77652] = 6, - ACTIONS(143), 1, + [78038] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3259), 1, - anon_sym_DOT, - STATE(1645), 1, - sym_path, - STATE(1551), 2, + STATE(1557), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 12, + ACTIONS(893), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164551,7 +164951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(701), 25, + anon_sym_DOT_DOT, + ACTIONS(895), 27, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -164577,18 +164978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77707] = 7, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [78089] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3232), 1, anon_sym_DOT, - STATE(1551), 1, - aux_sym_cell_path_repeat1, - STATE(1552), 1, + STATE(1558), 1, sym_comment, - STATE(1645), 1, + STATE(1566), 1, sym_path, - ACTIONS(732), 12, + STATE(1739), 1, + sym_cell_path, + ACTIONS(707), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164601,7 +165004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(734), 25, + ACTIONS(709), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -164627,14 +165030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [77764] = 5, - ACTIONS(143), 1, + [78146] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3243), 1, + ACTIONS(3244), 1, anon_sym_PIPE, - STATE(1553), 1, + STATE(1559), 1, sym_comment, - ACTIONS(3264), 16, + ACTIONS(3280), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -164651,7 +165054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3262), 23, + ACTIONS(3278), 23, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, @@ -164675,40 +165078,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [77817] = 6, - ACTIONS(143), 1, + [78199] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3266), 1, - anon_sym_DOT, - STATE(1642), 1, - sym_path, - STATE(1554), 2, + ACTIONS(781), 1, + anon_sym_LF, + STATE(1560), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 6, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(701), 31, - anon_sym_COMMA, + ACTIONS(779), 39, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + 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_DOT, + 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, @@ -164723,22 +165122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [77872] = 7, - ACTIONS(143), 1, + sym_short_flag, + [78250] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3248), 1, anon_sym_DOT, - STATE(1555), 1, + STATE(1561), 1, sym_comment, - STATE(1560), 1, + STATE(1565), 1, + aux_sym_cell_path_repeat1, + STATE(1647), 1, sym_path, - STATE(1766), 1, - sym_cell_path, - ACTIONS(720), 12, + ACTIONS(740), 12, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -164748,65 +165148,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(722), 25, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(742), 25, 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, - [77929] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3269), 1, - anon_sym_DOT, - STATE(1556), 1, - sym_comment, - STATE(1558), 1, - sym_path, - STATE(1751), 1, - sym_cell_path, - ACTIONS(718), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(716), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + 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, @@ -164817,80 +165170,30 @@ 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, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [77986] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1557), 1, - sym_comment, - ACTIONS(3271), 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, - [78035] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3269), 1, - anon_sym_DOT, - STATE(1558), 1, - sym_comment, - STATE(1566), 1, - aux_sym_cell_path_repeat1, - STATE(1639), 1, - sym_path, - ACTIONS(730), 2, - ts_builtin_sym_end, + ACTIONS(771), 1, anon_sym_LF, - ACTIONS(728), 35, + ACTIONS(3253), 1, + anon_sym_QMARK2, + STATE(1562), 1, + sym_comment, + ACTIONS(769), 38, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -164920,19 +165223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [78092] = 4, - ACTIONS(143), 1, + [78360] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1559), 1, + STATE(1563), 1, sym_comment, - ACTIONS(768), 6, + ACTIONS(779), 6, anon_sym_EQ, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(770), 34, + ACTIONS(781), 34, anon_sym_COLON, anon_sym_LBRACK, anon_sym_COMMA, @@ -164967,18 +165270,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78143] = 7, - ACTIONS(143), 1, + [78411] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3233), 1, + ACTIONS(3232), 1, anon_sym_DOT, - STATE(1552), 1, - aux_sym_cell_path_repeat1, - STATE(1560), 1, + STATE(1564), 1, sym_comment, - STATE(1645), 1, + STATE(1566), 1, sym_path, - ACTIONS(728), 12, + STATE(1717), 1, + sym_cell_path, + ACTIONS(713), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -164991,7 +165294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(730), 25, + ACTIONS(715), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -165017,36 +165320,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [78200] = 7, - ACTIONS(143), 1, + [78468] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3224), 1, + ACTIONS(3282), 1, anon_sym_DOT, - STATE(1521), 1, - aux_sym_cell_path_repeat1, - STATE(1561), 1, - sym_comment, - STATE(1642), 1, + STATE(1647), 1, sym_path, - ACTIONS(728), 6, + STATE(1565), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 12, + sym_identifier, 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, anon_sym_DOT_DOT, - ACTIONS(730), 31, + ACTIONS(731), 25, 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, @@ -165062,40 +165364,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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [78257] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78523] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1562), 1, + ACTIONS(3232), 1, + anon_sym_DOT, + STATE(1546), 1, + aux_sym_cell_path_repeat1, + STATE(1566), 1, sym_comment, - ACTIONS(764), 6, - anon_sym_EQ, + STATE(1610), 1, + sym_path, + ACTIONS(752), 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(766), 34, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(754), 25, anon_sym_COLON, - anon_sym_LBRACK, 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_DOT, - anon_sym_QMARK2, + 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, @@ -165111,67 +165419,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, - [78308] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1563), 1, - sym_comment, - ACTIONS(3273), 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, - [78357] = 7, - ACTIONS(143), 1, + [78580] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3229), 1, + ACTIONS(3248), 1, anon_sym_DOT, - STATE(1526), 1, + STATE(1532), 1, sym_path, - STATE(1564), 1, + STATE(1567), 1, sym_comment, - STATE(1662), 1, + STATE(1689), 1, sym_cell_path, - ACTIONS(716), 12, + ACTIONS(748), 12, sym_identifier, anon_sym_GT, anon_sym_in, @@ -165184,7 +165443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(718), 25, + ACTIONS(750), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -165210,20 +165469,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78414] = 6, + [78637] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3275), 1, + ACTIONS(3285), 1, anon_sym_DOT, - STATE(1639), 1, + STATE(1630), 1, sym_path, - ACTIONS(701), 2, + ACTIONS(731), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1565), 2, + STATE(1568), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(699), 35, + ACTIONS(729), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -165259,86 +165518,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [78469] = 7, - ACTIONS(3), 1, + [78692] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3269), 1, - anon_sym_DOT, - STATE(1565), 1, - aux_sym_cell_path_repeat1, - STATE(1566), 1, + ACTIONS(3288), 1, + anon_sym_QMARK2, + STATE(1569), 1, sym_comment, - STATE(1639), 1, - sym_path, - ACTIONS(734), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(732), 35, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(769), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [78526] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(770), 1, - anon_sym_LF, - STATE(1567), 1, - sym_comment, - ACTIONS(768), 39, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(771), 25, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, - 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, @@ -165349,21 +165560,22 @@ 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, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [78577] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78744] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1568), 1, + ACTIONS(3290), 1, + anon_sym_QMARK2, + STATE(1570), 1, sym_comment, - ACTIONS(768), 13, + ACTIONS(769), 13, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_DOT, anon_sym_STAR, @@ -165374,12 +165586,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(770), 26, + ACTIONS(771), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_QMARK2, + 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, @@ -165397,33 +165612,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [78796] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(709), 1, + anon_sym_LF, + ACTIONS(3292), 1, + anon_sym_DOT, + STATE(1571), 1, + sym_comment, + STATE(1576), 1, + sym_path, + STATE(1802), 1, + sym_cell_path, + ACTIONS(707), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78627] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [78852] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1569), 1, + ACTIONS(3294), 1, + anon_sym_QMARK2, + STATE(1572), 1, sym_comment, - ACTIONS(779), 2, + ACTIONS(771), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(777), 37, - anon_sym_EQ, + ACTIONS(769), 36, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, 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, @@ -165448,23 +165704,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78677] = 5, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [78904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3278), 1, - anon_sym_QMARK2, - STATE(1570), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, + ACTIONS(789), 1, anon_sym_LF, - ACTIONS(748), 36, + STATE(1573), 1, + sym_comment, + ACTIONS(787), 38, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -165495,21 +165754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [78729] = 5, + [78954] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(754), 1, anon_sym_LF, - STATE(1571), 1, + ACTIONS(3296), 1, + anon_sym_DOT, + STATE(1574), 1, sym_comment, - ACTIONS(3280), 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(103), 32, + STATE(1586), 1, + aux_sym_cell_path_repeat1, + STATE(1733), 1, + sym_path, + ACTIONS(752), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -165542,107 +165800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78781] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1572), 1, - sym_comment, - ACTIONS(3284), 16, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - 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(3282), 23, - 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_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - [78831] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1573), 1, - sym_comment, - ACTIONS(764), 13, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(766), 26, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - 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, - anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [78881] = 4, + [79010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1574), 1, + STATE(1575), 1, sym_comment, - ACTIONS(791), 2, + ACTIONS(789), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(789), 37, + ACTIONS(787), 37, anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, @@ -165680,67 +165849,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [78931] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3286), 1, - anon_sym_QMARK2, - STATE(1575), 1, - sym_comment, - ACTIONS(748), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - 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(750), 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, - [78983] = 7, + [79060] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(734), 1, + ACTIONS(754), 1, anon_sym_LF, - ACTIONS(3288), 1, + ACTIONS(3292), 1, anon_sym_DOT, STATE(1576), 1, sym_comment, - STATE(1585), 1, + STATE(1577), 1, aux_sym_cell_path_repeat1, - STATE(1773), 1, + STATE(1686), 1, sym_path, - ACTIONS(732), 35, + ACTIONS(752), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -165776,74 +165898,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [79039] = 5, - ACTIONS(143), 1, + [79116] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3286), 1, - anon_sym_QMARK2, + ACTIONS(742), 1, + anon_sym_LF, + ACTIONS(3292), 1, + anon_sym_DOT, STATE(1577), 1, sym_comment, - ACTIONS(748), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - 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(750), 25, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + STATE(1579), 1, + aux_sym_cell_path_repeat1, + STATE(1686), 1, + sym_path, + ACTIONS(740), 35, + 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, - [79091] = 7, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [79172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(734), 1, + ACTIONS(795), 1, anon_sym_LF, - ACTIONS(3290), 1, - anon_sym_DOT, STATE(1578), 1, sym_comment, - STATE(1594), 1, - aux_sym_cell_path_repeat1, - STATE(1746), 1, - sym_path, - ACTIONS(732), 35, + ACTIONS(793), 38, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -165872,66 +165992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [79147] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1579), 1, - sym_comment, - ACTIONS(764), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - 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(766), 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, - [79197] = 7, + sym_short_flag, + [79222] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(708), 1, + ACTIONS(731), 1, anon_sym_LF, - ACTIONS(3288), 1, + ACTIONS(3298), 1, anon_sym_DOT, - STATE(1580), 1, - sym_comment, - STATE(1588), 1, + STATE(1686), 1, sym_path, - STATE(1822), 1, - sym_cell_path, - ACTIONS(706), 35, + STATE(1579), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -165967,22 +166041,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [79253] = 4, + [79276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1581), 1, + ACTIONS(3294), 1, + anon_sym_QMARK2, + STATE(1580), 1, sym_comment, - ACTIONS(781), 38, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 36, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -166013,12 +166088,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [79303] = 4, - ACTIONS(143), 1, + [79328] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1581), 1, + sym_comment, + ACTIONS(779), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + 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(781), 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, + [79378] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(1582), 1, sym_comment, - ACTIONS(3294), 16, + ACTIONS(3303), 16, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -166035,7 +166156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_CARET, - ACTIONS(3292), 23, + ACTIONS(3301), 23, sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, @@ -166059,24 +166180,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - [79353] = 4, + [79428] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, STATE(1583), 1, sym_comment, - ACTIONS(777), 38, + ACTIONS(781), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(779), 37, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -166105,17 +166226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [79403] = 5, + [79478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3278), 1, - anon_sym_QMARK2, STATE(1584), 1, sym_comment, - ACTIONS(750), 2, + ACTIONS(777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 36, + ACTIONS(775), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -166124,6 +166243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -166152,68 +166272,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, sym_short_flag, - [79455] = 6, + [79528] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1585), 1, + sym_comment, + ACTIONS(775), 13, + sym_identifier, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + 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(777), 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, + [79578] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(701), 1, + ACTIONS(742), 1, anon_sym_LF, ACTIONS(3296), 1, anon_sym_DOT, - STATE(1773), 1, - sym_path, - STATE(1585), 2, + STATE(1586), 1, sym_comment, + STATE(1587), 1, aux_sym_cell_path_repeat1, - ACTIONS(699), 35, + STATE(1733), 1, + sym_path, + ACTIONS(740), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_not, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [79509] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(730), 1, - anon_sym_LF, - ACTIONS(3290), 1, - anon_sym_DOT, - STATE(1578), 1, - aux_sym_cell_path_repeat1, - STATE(1586), 1, - sym_comment, - STATE(1746), 1, + [79634] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(731), 1, + anon_sym_LF, + ACTIONS(3305), 1, + anon_sym_DOT, + STATE(1733), 1, sym_path, - ACTIONS(728), 35, + STATE(1587), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -166249,12 +166415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [79565] = 4, - ACTIONS(143), 1, + [79688] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1587), 1, + ACTIONS(3308), 1, + anon_sym_QMARK2, + STATE(1588), 1, sym_comment, - ACTIONS(764), 7, + ACTIONS(769), 7, anon_sym_GT, anon_sym_DOT, anon_sym_STAR, @@ -166262,7 +166430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(766), 32, + ACTIONS(771), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -166271,7 +166439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -166295,64 +166462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [79615] = 7, + [79740] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(730), 1, + ACTIONS(750), 1, anon_sym_LF, - ACTIONS(3288), 1, + ACTIONS(3296), 1, anon_sym_DOT, - STATE(1576), 1, - aux_sym_cell_path_repeat1, - STATE(1588), 1, - sym_comment, - STATE(1773), 1, + STATE(1574), 1, sym_path, - ACTIONS(728), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [79671] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(855), 1, - anon_sym_LF, STATE(1589), 1, sym_comment, - ACTIONS(853), 38, - anon_sym_EQ, + STATE(1788), 1, + sym_cell_path, + ACTIONS(748), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -166361,11 +166484,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -166390,38 +166508,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [79721] = 5, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [79796] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3299), 1, - anon_sym_QMARK2, + ACTIONS(867), 1, + anon_sym_LF, STATE(1590), 1, sym_comment, - ACTIONS(748), 7, - anon_sym_GT, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(750), 31, - anon_sym_COMMA, + ACTIONS(865), 38, + anon_sym_EQ, + 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_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, @@ -166435,16 +166557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [79773] = 5, - ACTIONS(143), 1, + [79846] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3299), 1, + ACTIONS(3308), 1, anon_sym_QMARK2, STATE(1591), 1, sym_comment, - ACTIONS(748), 7, + ACTIONS(769), 7, anon_sym_GT, anon_sym_DOT, anon_sym_STAR, @@ -166452,7 +166572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(750), 31, + ACTIONS(771), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -166484,35 +166604,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [79825] = 4, - ACTIONS(3), 1, + [79898] = 5, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3288), 1, + anon_sym_QMARK2, STATE(1592), 1, sym_comment, - ACTIONS(770), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(768), 37, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(769), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, anon_sym_in, anon_sym_DOT, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(771), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, @@ -166523,31 +166646,33 @@ 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, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_short_flag, - [79875] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79950] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(1593), 1, sym_comment, - ACTIONS(766), 2, + ACTIONS(795), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 37, + ACTIONS(793), 37, + anon_sym_EQ, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, + 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, @@ -166572,31 +166697,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [79925] = 6, + [80000] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LF, - ACTIONS(3301), 1, - anon_sym_DOT, - STATE(1746), 1, - sym_path, - STATE(1594), 2, + STATE(1594), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 35, + ACTIONS(799), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(797), 37, + anon_sym_EQ, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, 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, @@ -166621,15 +166743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [79979] = 4, - ACTIONS(143), 1, + [80050] = 5, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3290), 1, + anon_sym_QMARK2, STATE(1595), 1, sym_comment, - ACTIONS(768), 13, + ACTIONS(769), 13, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -166643,7 +166764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(770), 26, + ACTIONS(771), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -166652,7 +166773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -166670,33 +166790,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [80029] = 5, - ACTIONS(143), 1, + [80102] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3304), 1, - anon_sym_QMARK2, STATE(1596), 1, sym_comment, - ACTIONS(748), 13, - sym_identifier, + ACTIONS(779), 7, anon_sym_GT, - anon_sym_in, anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(750), 25, + ACTIONS(781), 32, 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_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -166712,17 +166831,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, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80081] = 4, - ACTIONS(143), 1, + [80152] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(1597), 1, sym_comment, - ACTIONS(768), 7, + ACTIONS(775), 7, anon_sym_GT, anon_sym_DOT, anon_sym_STAR, @@ -166730,7 +166849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(770), 32, + ACTIONS(777), 32, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -166763,14 +166882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [80131] = 5, - ACTIONS(143), 1, + [80202] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3304), 1, - anon_sym_QMARK2, STATE(1598), 1, sym_comment, - ACTIONS(748), 13, + ACTIONS(779), 13, sym_identifier, anon_sym_GT, anon_sym_in, @@ -166784,10 +166901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(750), 25, + ACTIONS(781), 26, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -166810,20 +166928,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80183] = 7, + [80252] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(718), 1, + ACTIONS(105), 1, anon_sym_LF, - ACTIONS(3290), 1, - anon_sym_DOT, - STATE(1586), 1, - sym_path, STATE(1599), 1, sym_comment, - STATE(1792), 1, - sym_cell_path, - ACTIONS(716), 35, + ACTIONS(3310), 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(103), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -166856,31 +166975,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + [80304] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1600), 1, + sym_comment, + ACTIONS(3314), 16, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + 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(3312), 23, + 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_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + [80354] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1601), 1, + sym_comment, + ACTIONS(775), 13, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT, + ACTIONS(777), 26, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [80239] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [80404] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1600), 1, - sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, + ACTIONS(719), 1, anon_sym_LF, - ACTIONS(781), 37, - anon_sym_EQ, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1602), 1, + sym_comment, + STATE(1621), 1, + sym_path, + STATE(1860), 1, + sym_cell_path, + ACTIONS(717), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + 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, @@ -166905,12 +167114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [80289] = 4, - ACTIONS(143), 1, + sym_short_flag, + [80459] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1601), 1, + STATE(1603), 1, sym_comment, - ACTIONS(777), 7, + ACTIONS(793), 7, anon_sym_GT, anon_sym_DOT, anon_sym_STAR, @@ -166918,7 +167128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_LT2, anon_sym_DOT_DOT, - ACTIONS(779), 31, + ACTIONS(795), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -166950,41 +167160,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - [80338] = 4, - ACTIONS(143), 1, + [80508] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1602), 1, + ACTIONS(3318), 1, + anon_sym_DOT, + STATE(1604), 1, sym_comment, - ACTIONS(789), 13, - sym_identifier, + STATE(1612), 1, + aux_sym_cell_path_repeat1, + STATE(1784), 1, + sym_path, + ACTIONS(754), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(752), 33, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, 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(791), 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, @@ -166995,25 +167202,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [80387] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [80563] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3324), 1, + anon_sym_list, + STATE(1605), 1, + sym_comment, + STATE(2519), 1, + sym__type_annotation, + ACTIONS(3322), 2, + anon_sym_table, + anon_sym_record, + STATE(2536), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3320), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [80618] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3306), 1, + ACTIONS(731), 1, + anon_sym_LF, + ACTIONS(3326), 1, anon_sym_DOT, - STATE(1783), 1, + STATE(1812), 1, sym_path, - ACTIONS(701), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1603), 2, + STATE(1606), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(699), 33, + ACTIONS(729), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167039,15 +167302,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [80440] = 4, - ACTIONS(143), 1, + sym_short_flag, + [80671] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1604), 1, + STATE(1607), 1, sym_comment, - ACTIONS(777), 13, + ACTIONS(787), 13, sym_identifier, anon_sym_GT, anon_sym_in, @@ -167061,7 +167322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT, - ACTIONS(779), 25, + ACTIONS(789), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -167087,36 +167348,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80489] = 4, - ACTIONS(143), 1, + [80720] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1605), 1, + ACTIONS(781), 1, + anon_sym_LF, + STATE(1608), 1, sym_comment, - ACTIONS(781), 13, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(779), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(783), 25, - anon_sym_COMMA, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [80769] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3329), 1, + anon_sym_QMARK2, + STATE(1609), 1, + sym_comment, + ACTIONS(769), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, + 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_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, @@ -167127,43 +167433,47 @@ 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, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [80538] = 7, - ACTIONS(3), 1, + [80820] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_DOT, - STATE(1603), 1, - aux_sym_cell_path_repeat1, - STATE(1606), 1, + STATE(1610), 1, sym_comment, - STATE(1783), 1, - sym_path, - ACTIONS(734), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(732), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(793), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(795), 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, @@ -167174,34 +167484,71 @@ 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, + [80869] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(777), 1, + anon_sym_LF, + STATE(1611), 1, + sym_comment, + ACTIONS(775), 37, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [80593] = 7, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [80918] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(746), 1, - anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3318), 1, anon_sym_DOT, - STATE(1607), 1, + STATE(1612), 1, sym_comment, - STATE(1634), 1, + STATE(1613), 1, + aux_sym_cell_path_repeat1, + STATE(1784), 1, sym_path, - STATE(1903), 1, - sym_cell_path, - ACTIONS(744), 34, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167227,28 +167574,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [80648] = 6, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [80973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LF, - ACTIONS(3313), 1, + ACTIONS(3331), 1, anon_sym_DOT, - STATE(1826), 1, + STATE(1784), 1, sym_path, - STATE(1608), 2, + ACTIONS(731), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1613), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(699), 34, + ACTIONS(729), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167274,30 +167621,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [80701] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [81026] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(742), 1, + ACTIONS(781), 1, anon_sym_LF, - ACTIONS(3311), 1, - anon_sym_DOT, - STATE(1609), 1, + STATE(1614), 1, sym_comment, - STATE(1634), 1, - sym_path, - STATE(1869), 1, - sym_cell_path, - ACTIONS(740), 34, + ACTIONS(779), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -167322,135 +167666,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [80756] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3185), 1, - anon_sym_list, - STATE(1610), 1, - sym_comment, - STATE(1692), 1, - sym__type_annotation, - ACTIONS(3183), 2, - anon_sym_table, - anon_sym_record, - STATE(1563), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3316), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [80811] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3185), 1, - anon_sym_list, - STATE(1611), 1, - sym_comment, - STATE(3354), 1, - sym__type_annotation, - ACTIONS(3183), 2, - anon_sym_table, - anon_sym_record, - STATE(1563), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3181), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [80866] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [81075] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3309), 1, - anon_sym_DOT, - STATE(1606), 1, - aux_sym_cell_path_repeat1, - STATE(1612), 1, + STATE(1615), 1, sym_comment, - STATE(1783), 1, - sym_path, - ACTIONS(730), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(728), 33, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(787), 13, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, + 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(789), 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, @@ -167461,35 +167714,26 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [80921] = 7, + [81124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3318), 1, - anon_sym_DOT, - STATE(1613), 1, - sym_comment, - STATE(1640), 1, - sym_path, - STATE(1860), 1, - sym_cell_path, - ACTIONS(708), 2, - ts_builtin_sym_end, + ACTIONS(1703), 1, anon_sym_LF, - ACTIONS(706), 33, + STATE(1616), 1, + sym_comment, + ACTIONS(1701), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_else, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_catch, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -167515,14 +167759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [80976] = 4, + [81173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(750), 1, anon_sym_LF, - STATE(1614), 1, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1617), 1, sym_comment, - ACTIONS(825), 37, + STATE(1619), 1, + sym_cell_path, + STATE(1621), 1, + sym_path, + ACTIONS(748), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -167556,30 +167806,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, sym_short_flag, - [81025] = 7, + [81228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3309), 1, + ACTIONS(3334), 1, anon_sym_DOT, - STATE(1612), 1, + STATE(1833), 1, sym_path, - STATE(1615), 1, - sym_comment, - STATE(1926), 1, - sym_cell_path, - ACTIONS(718), 2, + ACTIONS(731), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(716), 33, + STATE(1618), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [81281] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(895), 1, + anon_sym_LF, + STATE(1619), 1, + sym_comment, + ACTIONS(893), 37, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167608,27 +167898,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [81080] = 5, + sym_short_flag, + [81330] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3320), 1, - anon_sym_QMARK2, - STATE(1616), 1, + ACTIONS(3337), 1, + anon_sym_DOT, + STATE(1618), 1, + aux_sym_cell_path_repeat1, + STATE(1620), 1, sym_comment, - ACTIONS(748), 36, + STATE(1833), 1, + sym_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -167654,73 +167947,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [81131] = 5, + [81385] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, + ACTIONS(754), 1, anon_sym_LF, - ACTIONS(3320), 1, - anon_sym_QMARK2, - STATE(1617), 1, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1621), 1, sym_comment, - ACTIONS(748), 36, + STATE(1625), 1, + aux_sym_cell_path_repeat1, + STATE(1812), 1, + sym_path, + ACTIONS(752), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_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, sym_short_flag, - [81182] = 4, + [81440] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1618), 1, - sym_comment, - ACTIONS(855), 2, - ts_builtin_sym_end, + ACTIONS(727), 1, anon_sym_LF, - ACTIONS(853), 36, - anon_sym_EQ, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1621), 1, + sym_path, + STATE(1622), 1, + sym_comment, + STATE(1867), 1, + sym_cell_path, + ACTIONS(725), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, 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, @@ -167745,14 +168042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [81231] = 4, + sym_short_flag, + [81495] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1673), 1, + ACTIONS(1699), 1, anon_sym_LF, - STATE(1619), 1, + STATE(1623), 1, sym_comment, - ACTIONS(1671), 37, + ACTIONS(1697), 37, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -167790,35 +168088,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [81280] = 4, + [81544] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3204), 1, + anon_sym_list, + STATE(1624), 1, + sym_comment, + STATE(1718), 1, + sym__type_annotation, + ACTIONS(3202), 2, + anon_sym_table, + anon_sym_record, + STATE(1549), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3200), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [81599] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(742), 1, anon_sym_LF, - STATE(1620), 1, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1606), 1, + aux_sym_cell_path_repeat1, + STATE(1625), 1, sym_comment, - ACTIONS(768), 37, + STATE(1812), 1, + sym_path, + ACTIONS(740), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, 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_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, + sym_short_flag, + [81654] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1626), 1, + sym_comment, + ACTIONS(787), 7, + anon_sym_GT, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(789), 31, + 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_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -167833,40 +168228,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [81329] = 5, - ACTIONS(3), 1, + [81703] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(851), 1, - anon_sym_LF, - STATE(1621), 1, + STATE(1627), 1, sym_comment, - ACTIONS(377), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(797), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(799), 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, @@ -167877,28 +168274,26 @@ 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, - sym_short_flag, - [81380] = 5, + [81752] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3322), 1, - anon_sym_QMARK2, - STATE(1622), 1, + ACTIONS(3318), 1, + anon_sym_DOT, + STATE(1604), 1, + sym_path, + STATE(1628), 1, sym_comment, - ACTIONS(748), 36, + STATE(1904), 1, + sym_cell_path, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167927,24 +168322,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [81431] = 5, + [81807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3322), 1, - anon_sym_QMARK2, - STATE(1623), 1, + STATE(1629), 1, sym_comment, - ACTIONS(748), 36, + ACTIONS(105), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3339), 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(103), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -167970,31 +168368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [81482] = 7, + [81858] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(714), 1, - anon_sym_LF, - ACTIONS(3311), 1, - anon_sym_DOT, - STATE(1624), 1, + STATE(1630), 1, sym_comment, - STATE(1634), 1, - sym_path, - STATE(1863), 1, - sym_cell_path, - ACTIONS(712), 34, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 36, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -168020,30 +168409,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [81537] = 7, + [81907] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(722), 1, + ACTIONS(777), 1, anon_sym_LF, - ACTIONS(3311), 1, - anon_sym_DOT, - STATE(1625), 1, + STATE(1631), 1, sym_comment, - STATE(1634), 1, - sym_path, - STATE(1862), 1, - sym_cell_path, - ACTIONS(720), 34, + ACTIONS(775), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -168068,21 +168455,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [81592] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [81956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(726), 1, + ACTIONS(903), 1, anon_sym_LF, - ACTIONS(3311), 1, - anon_sym_DOT, - STATE(1626), 1, + STATE(1632), 1, sym_comment, - STATE(1634), 1, - sym_path, - STATE(1868), 1, - sym_cell_path, - ACTIONS(724), 34, + ACTIONS(385), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168117,113 +168504,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [81647] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_LF, - STATE(1627), 1, - sym_comment, - ACTIONS(1679), 37, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_catch, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [81696] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1628), 1, - sym_comment, - ACTIONS(777), 13, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - 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(779), 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, - [81745] = 7, - ACTIONS(143), 1, + [82007] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3185), 1, + ACTIONS(3204), 1, anon_sym_list, - STATE(1629), 1, + STATE(1633), 1, sym_comment, - STATE(1692), 1, + STATE(3414), 1, sym__type_annotation, - ACTIONS(3183), 2, + ACTIONS(3202), 2, anon_sym_table, anon_sym_record, - STATE(1563), 3, + STATE(1549), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(3181), 31, + ACTIONS(3200), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -168255,20 +168552,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [81800] = 7, + [82062] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(738), 1, + ACTIONS(709), 1, anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3316), 1, anon_sym_DOT, - STATE(1630), 1, - sym_comment, - STATE(1634), 1, + STATE(1621), 1, sym_path, - STATE(1856), 1, + STATE(1634), 1, + sym_comment, + STATE(1893), 1, sym_cell_path, - ACTIONS(736), 34, + ACTIONS(707), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168303,14 +168600,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [81855] = 4, + [82117] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(771), 1, anon_sym_LF, - STATE(1631), 1, + ACTIONS(3341), 1, + anon_sym_QMARK2, + STATE(1635), 1, sym_comment, - ACTIONS(768), 37, + ACTIONS(769), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -168322,7 +168621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_DOT, - anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -168348,28 +168646,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [81904] = 6, + [82168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3324), 1, - anon_sym_DOT, - STATE(1788), 1, - sym_path, - ACTIONS(701), 2, - ts_builtin_sym_end, + ACTIONS(771), 1, anon_sym_LF, - STATE(1632), 2, + ACTIONS(3341), 1, + anon_sym_QMARK2, + STATE(1636), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 33, + ACTIONS(769), 36, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -168395,65 +168692,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [81957] = 4, + [82219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, - anon_sym_LF, - STATE(1633), 1, + STATE(1637), 1, sym_comment, - ACTIONS(764), 37, + ACTIONS(789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(787), 36, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_in, anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_not, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, sym_short_flag, - [82006] = 7, + [82268] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(730), 1, + ACTIONS(715), 1, anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3316), 1, anon_sym_DOT, - STATE(1634), 1, - sym_comment, - STATE(1636), 1, - aux_sym_cell_path_repeat1, - STATE(1826), 1, + STATE(1621), 1, sym_path, - ACTIONS(728), 34, + STATE(1638), 1, + sym_comment, + STATE(1929), 1, + sym_cell_path, + ACTIONS(713), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168488,20 +168785,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82061] = 7, + [82323] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(718), 1, + ACTIONS(723), 1, anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3316), 1, anon_sym_DOT, - STATE(1614), 1, - sym_cell_path, - STATE(1634), 1, + STATE(1621), 1, sym_path, - STATE(1635), 1, + STATE(1639), 1, sym_comment, - ACTIONS(716), 34, + STATE(1926), 1, + sym_cell_path, + ACTIONS(721), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168536,20 +168833,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82116] = 7, + [82378] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(734), 1, + STATE(1640), 1, + sym_comment, + ACTIONS(867), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3311), 1, - anon_sym_DOT, - STATE(1608), 1, - aux_sym_cell_path_repeat1, - STATE(1636), 1, + ACTIONS(865), 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, + [82427] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3329), 1, + anon_sym_QMARK2, + STATE(1641), 1, sym_comment, - STATE(1826), 1, + ACTIONS(769), 36, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + 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_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_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [82478] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(738), 1, + anon_sym_LF, + ACTIONS(3316), 1, + anon_sym_DOT, + STATE(1621), 1, sym_path, - ACTIONS(732), 34, + STATE(1642), 1, + sym_comment, + STATE(1924), 1, + sym_cell_path, + ACTIONS(736), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168584,21 +168972,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82171] = 7, + [82533] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3318), 1, + ACTIONS(3337), 1, anon_sym_DOT, - STATE(1632), 1, - aux_sym_cell_path_repeat1, - STATE(1637), 1, + STATE(1643), 1, sym_comment, - STATE(1788), 1, + STATE(1646), 1, sym_path, - ACTIONS(734), 2, + STATE(1856), 1, + sym_cell_path, + ACTIONS(709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 33, + ACTIONS(707), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -168632,20 +169020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [82226] = 7, + [82588] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(708), 1, + ACTIONS(746), 1, anon_sym_LF, - ACTIONS(3311), 1, + ACTIONS(3316), 1, anon_sym_DOT, - STATE(1634), 1, + STATE(1621), 1, sym_path, - STATE(1638), 1, + STATE(1644), 1, sym_comment, - STATE(1913), 1, + STATE(1918), 1, sym_cell_path, - ACTIONS(706), 34, + ACTIONS(744), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -168680,66 +169068,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82281] = 4, - ACTIONS(3), 1, + [82643] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1639), 1, + ACTIONS(3204), 1, + anon_sym_list, + STATE(1645), 1, sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(781), 36, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, - 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_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [82330] = 7, + STATE(1718), 1, + sym__type_annotation, + ACTIONS(3202), 2, + anon_sym_table, + anon_sym_record, + STATE(1549), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(3343), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [82698] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3318), 1, + ACTIONS(3337), 1, anon_sym_DOT, - STATE(1637), 1, + STATE(1620), 1, aux_sym_cell_path_repeat1, - STATE(1640), 1, + STATE(1646), 1, sym_comment, - STATE(1788), 1, + STATE(1833), 1, sym_path, - ACTIONS(730), 2, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 33, + ACTIONS(752), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -168773,39 +169164,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [82385] = 5, - ACTIONS(3), 1, + [82753] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1641), 1, + STATE(1647), 1, sym_comment, - ACTIONS(105), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3327), 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(103), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(793), 13, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, + 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(795), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, @@ -168816,23 +169204,29 @@ 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, - [82436] = 4, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [82802] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1642), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1648), 1, sym_comment, - ACTIONS(781), 7, + STATE(1763), 1, + sym_path, + STATE(2074), 1, + sym_cell_path, + ACTIONS(725), 5, anon_sym_GT, - anon_sym_DOT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(783), 31, + ACTIONS(727), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -168862,36 +169256,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [82485] = 4, - ACTIONS(3), 1, + [82856] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1643), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1649), 1, sym_comment, - ACTIONS(779), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(777), 36, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(1763), 1, + sym_path, + STATE(2094), 1, + sym_cell_path, + ACTIONS(717), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(719), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, - 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, @@ -168905,22 +169303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [82534] = 4, + [82910] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(781), 1, anon_sym_LF, - STATE(1644), 1, + STATE(1650), 1, sym_comment, - ACTIONS(764), 37, + ACTIONS(779), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -168951,20 +169346,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [82583] = 4, - ACTIONS(143), 1, + sym_short_flag, + [82958] = 21, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1645), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(3349), 1, + anon_sym_LF, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + ACTIONS(3371), 1, + anon_sym_and, + ACTIONS(3373), 1, + anon_sym_xor, + ACTIONS(3375), 1, + anon_sym_or, + STATE(1651), 1, sym_comment, - ACTIONS(781), 13, - sym_identifier, - anon_sym_GT, + STATE(2636), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3347), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [83040] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3377), 1, anon_sym_DOT, + STATE(1652), 1, + sym_comment, + STATE(1768), 1, + sym_path, + STATE(2008), 1, + sym_cell_path, + ACTIONS(744), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, @@ -168973,15 +169431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(783), 25, - anon_sym_COLON, + ACTIONS(746), 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, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -168999,69 +169452,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [82632] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3333), 1, - anon_sym_list, - STATE(1646), 1, - sym_comment, - STATE(2516), 1, - sym__type_annotation, - ACTIONS(3331), 2, - anon_sym_table, - anon_sym_record, - STATE(2528), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(3329), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [82687] = 7, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83094] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1647), 1, + STATE(1653), 1, sym_comment, - STATE(1729), 1, + STATE(1701), 1, sym_path, - STATE(2083), 1, + STATE(2092), 1, sym_cell_path, - ACTIONS(738), 2, + ACTIONS(709), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(736), 32, + ACTIONS(707), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -169094,35 +169502,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [82741] = 7, - ACTIONS(143), 1, + [83148] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1648), 1, + STATE(1654), 1, sym_comment, - STATE(1699), 1, - sym_path, - STATE(1973), 1, - sym_cell_path, - ACTIONS(740), 5, + ACTIONS(935), 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(742), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(937), 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, @@ -169138,23 +169546,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, - [82795] = 7, - ACTIONS(143), 1, + [83196] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1649), 1, + STATE(1655), 1, sym_comment, - STATE(1676), 1, - sym_path, - STATE(2067), 1, - sym_cell_path, - ACTIONS(712), 11, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -169164,10 +169564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(714), 23, + ACTIONS(831), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -169185,60 +169590,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [82849] = 19, - ACTIONS(143), 1, + [83244] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3345), 1, + ACTIONS(801), 1, + sym_identifier, + ACTIONS(3385), 1, anon_sym_in, - ACTIONS(3351), 1, + ACTIONS(3391), 1, anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, + ACTIONS(3401), 1, anon_sym_bit_DASHand, - ACTIONS(3363), 1, + ACTIONS(3403), 1, anon_sym_bit_DASHxor, - ACTIONS(3365), 1, + ACTIONS(3405), 1, anon_sym_bit_DASHor, - ACTIONS(3367), 1, + ACTIONS(3407), 1, anon_sym_and, - ACTIONS(3369), 1, + ACTIONS(3409), 1, anon_sym_xor, - STATE(1650), 1, - sym_comment, - ACTIONS(793), 2, - sym_identifier, + ACTIONS(3411), 1, anon_sym_or, - ACTIONS(3341), 2, + STATE(1656), 1, + sym_comment, + ACTIONS(3381), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3343), 2, + ACTIONS(3383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3359), 2, + ACTIONS(3399), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3347), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3357), 3, + ACTIONS(3397), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3355), 4, + ACTIONS(3395), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 8, + ACTIONS(803), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169247,57 +169650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [82927] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1651), 1, - sym_comment, - STATE(1699), 1, - sym_path, - STATE(1965), 1, - sym_cell_path, - ACTIONS(712), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(714), 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, - [82981] = 4, - ACTIONS(143), 1, + [83324] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1652), 1, + STATE(1657), 1, sym_comment, ACTIONS(829), 12, sym_identifier, @@ -169338,56 +169694,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83029] = 18, - ACTIONS(143), 1, + [83372] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3345), 1, + ACTIONS(3385), 1, anon_sym_in, - ACTIONS(3351), 1, + ACTIONS(3391), 1, anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, + ACTIONS(3401), 1, anon_sym_bit_DASHand, - ACTIONS(3363), 1, + ACTIONS(3403), 1, anon_sym_bit_DASHxor, - ACTIONS(3365), 1, + ACTIONS(3405), 1, anon_sym_bit_DASHor, - ACTIONS(3367), 1, + ACTIONS(3407), 1, anon_sym_and, - STATE(1653), 1, + ACTIONS(3409), 1, + anon_sym_xor, + STATE(1658), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(801), 2, + sym_identifier, + anon_sym_or, + ACTIONS(3381), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3343), 2, + ACTIONS(3383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3359), 2, + ACTIONS(3399), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(793), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(3347), 3, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3357), 3, + ACTIONS(3397), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3355), 4, + ACTIONS(3395), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 8, + ACTIONS(803), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169396,10 +169753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83105] = 4, - ACTIONS(143), 1, + [83450] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1654), 1, + STATE(1659), 1, sym_comment, ACTIONS(829), 12, sym_identifier, @@ -169440,55 +169797,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83153] = 17, - ACTIONS(143), 1, + [83498] = 18, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3345), 1, + ACTIONS(3385), 1, anon_sym_in, - ACTIONS(3351), 1, + ACTIONS(3391), 1, anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, + ACTIONS(3401), 1, anon_sym_bit_DASHand, - ACTIONS(3363), 1, + ACTIONS(3403), 1, anon_sym_bit_DASHxor, - ACTIONS(3365), 1, + ACTIONS(3405), 1, anon_sym_bit_DASHor, - STATE(1655), 1, + ACTIONS(3407), 1, + anon_sym_and, + STATE(1660), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(3381), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3343), 2, + ACTIONS(3383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3359), 2, + ACTIONS(3399), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3347), 3, + ACTIONS(801), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3357), 3, + ACTIONS(3397), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3355), 4, + ACTIONS(3395), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 8, + ACTIONS(803), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169497,12 +169855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [83227] = 4, - ACTIONS(143), 1, + [83574] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1656), 1, + STATE(1661), 1, sym_comment, - ACTIONS(845), 12, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -169515,7 +169873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(847), 25, + ACTIONS(831), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169541,146 +169899,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83275] = 4, - ACTIONS(143), 1, + [83622] = 17, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1657), 1, - sym_comment, - ACTIONS(829), 12, - sym_identifier, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3385), 1, 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(831), 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, + ACTIONS(3391), 1, 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, + ACTIONS(3401), 1, anon_sym_bit_DASHand, + ACTIONS(3403), 1, anon_sym_bit_DASHxor, + ACTIONS(3405), 1, anon_sym_bit_DASHor, - [83323] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3371), 1, - anon_sym_QMARK2, - STATE(1658), 1, + STATE(1662), 1, sym_comment, - ACTIONS(748), 7, - anon_sym_EQ, + ACTIONS(3381), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(750), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3393), 2, 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, + ACTIONS(3399), 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, - sym_short_flag, - [83373] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3371), 1, - anon_sym_QMARK2, - STATE(1659), 1, - sym_comment, - ACTIONS(748), 7, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(750), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - 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, + ACTIONS(3397), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, + ACTIONS(801), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [83423] = 4, - ACTIONS(143), 1, + ACTIONS(3395), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 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, + [83696] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1660), 1, + STATE(1663), 1, sym_comment, - ACTIONS(919), 12, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -169693,7 +169974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(921), 25, + ACTIONS(831), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169719,75 +170000,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83471] = 21, - ACTIONS(3), 1, + [83744] = 16, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(3375), 1, - anon_sym_LF, + ACTIONS(3385), 1, + anon_sym_in, ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3403), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - ACTIONS(3399), 1, - anon_sym_xor, - ACTIONS(3401), 1, - anon_sym_or, - STATE(1661), 1, + STATE(1664), 1, sym_comment, - STATE(2602), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, + ACTIONS(3381), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3399), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3373), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, + ACTIONS(3397), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3395), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [83553] = 4, - ACTIONS(143), 1, + ACTIONS(803), 9, + 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_DASHor, + [83816] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1662), 1, + STATE(1665), 1, sym_comment, - ACTIONS(825), 12, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -169797,11 +170074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT, - ACTIONS(827), 25, + ACTIONS(831), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -169819,74 +170100,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83601] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1663), 1, - sym_comment, - ACTIONS(1673), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1671), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [83649] = 4, - ACTIONS(143), 1, + [83864] = 15, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1664), 1, + ACTIONS(3385), 1, + anon_sym_in, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 1, + anon_sym_bit_DASHand, + STATE(1666), 1, sym_comment, - ACTIONS(841), 12, - sym_identifier, + ACTIONS(3381), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3393), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3399), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(3397), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(843), 25, + ACTIONS(3395), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 10, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169895,29 +170153,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83697] = 4, - ACTIONS(143), 1, + [83934] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1665), 1, + STATE(1667), 1, sym_comment, - ACTIONS(837), 12, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -169930,7 +170173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(839), 25, + ACTIONS(831), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169956,25 +170199,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83745] = 4, - ACTIONS(143), 1, + [83982] = 14, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1666), 1, + ACTIONS(3385), 1, + anon_sym_in, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + STATE(1668), 1, sym_comment, - ACTIONS(833), 12, - sym_identifier, + ACTIONS(3381), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3393), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3399), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(3397), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(835), 25, + ACTIONS(3395), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 11, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -169983,37 +170250,18 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83793] = 7, - ACTIONS(143), 1, + [84050] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1667), 1, + STATE(1669), 1, sym_comment, - STATE(1676), 1, - sym_path, - STATE(2028), 1, - sym_cell_path, - ACTIONS(706), 11, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -170023,10 +170271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(708), 23, + ACTIONS(831), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -170044,37 +170297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83847] = 4, - ACTIONS(3), 1, + [84098] = 9, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1668), 1, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + STATE(1670), 1, sym_comment, - ACTIONS(766), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(764), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(801), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 20, + 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_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -170085,26 +170346,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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [83895] = 7, - ACTIONS(143), 1, + [84156] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1669), 1, + STATE(1671), 1, sym_comment, - STATE(1725), 1, - aux_sym_cell_path_repeat1, - STATE(1923), 1, - sym_path, - ACTIONS(732), 11, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -170114,10 +170364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(734), 23, + ACTIONS(831), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -170135,15 +170390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83949] = 4, - ACTIONS(143), 1, + [84204] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1670), 1, + STATE(1672), 1, sym_comment, - ACTIONS(879), 12, + ACTIONS(3389), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -170156,7 +170411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(881), 25, + ACTIONS(803), 23, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170165,8 +170420,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -170182,34 +170435,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [83997] = 4, - ACTIONS(3), 1, + [84254] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1671), 1, + STATE(1673), 1, sym_comment, - ACTIONS(770), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(768), 35, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(829), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 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, @@ -170220,92 +170479,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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [84045] = 21, - ACTIONS(3), 1, + [84302] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(2321), 1, - anon_sym_LF, ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - ACTIONS(3399), 1, - anon_sym_xor, - ACTIONS(3401), 1, - anon_sym_or, - STATE(1672), 1, + anon_sym_SLASH_SLASH, + STATE(1674), 1, sym_comment, - STATE(2611), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2319), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [84127] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1673), 1, - sym_comment, - ACTIONS(903), 12, + ACTIONS(801), 9, 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(905), 25, + ACTIONS(803), 22, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170314,9 +170512,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -170331,12 +170526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84175] = 4, - ACTIONS(143), 1, + [84356] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1674), 1, + STATE(1675), 1, sym_comment, - ACTIONS(907), 12, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -170349,7 +170544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(909), 25, + ACTIONS(831), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170375,25 +170570,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84223] = 4, - ACTIONS(143), 1, + [84404] = 13, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1675), 1, + ACTIONS(3385), 1, + anon_sym_in, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + STATE(1676), 1, sym_comment, - ACTIONS(853), 12, - sym_identifier, + ACTIONS(3381), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3393), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(3397), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(855), 25, + ACTIONS(3395), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 13, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170402,37 +170618,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [84271] = 7, - ACTIONS(143), 1, + [84470] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1669), 1, - aux_sym_cell_path_repeat1, - STATE(1676), 1, + STATE(1677), 1, sym_comment, - STATE(1923), 1, - sym_path, - ACTIONS(728), 11, + ACTIONS(829), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -170442,10 +170641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(730), 23, + ACTIONS(831), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -170463,92 +170667,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84325] = 21, - ACTIONS(3), 1, + [84518] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(2317), 1, - anon_sym_LF, ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - ACTIONS(3399), 1, - anon_sym_xor, - ACTIONS(3401), 1, - anon_sym_or, - STATE(1677), 1, + anon_sym_SLASH_SLASH, + STATE(1678), 1, sym_comment, - STATE(2618), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, + ACTIONS(3383), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2315), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3387), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [84407] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1678), 1, - sym_comment, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(793), 12, + ACTIONS(801), 7, 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(795), 23, + ACTIONS(803), 22, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170557,7 +170701,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -170572,74 +170715,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84457] = 4, - ACTIONS(3), 1, + [84574] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(1679), 1, sym_comment, - ACTIONS(1681), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1679), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [84505] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1680), 1, - sym_comment, - ACTIONS(825), 6, + ACTIONS(829), 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_DOT_DOT, - ACTIONS(827), 31, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 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, @@ -170655,47 +170759,49 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - [84553] = 7, - ACTIONS(143), 1, + [84622] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1681), 1, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + STATE(1680), 1, sym_comment, - STATE(1699), 1, - sym_path, - STATE(2030), 1, - sym_cell_path, - ACTIONS(706), 5, + ACTIONS(3381), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(708), 29, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(3389), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3393), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3387), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3395), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(801), 5, + sym_identifier, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 16, + 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_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -170704,43 +170810,36 @@ 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, - [84607] = 7, - ACTIONS(143), 1, + [84684] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1682), 1, + ACTIONS(777), 1, + anon_sym_LF, + STATE(1681), 1, sym_comment, - STATE(1699), 1, - sym_path, - STATE(1957), 1, - sym_cell_path, - ACTIONS(720), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(722), 29, - anon_sym_COMMA, + ACTIONS(775), 36, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + 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_DOT, + 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, @@ -170754,12 +170853,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [84661] = 4, - ACTIONS(143), 1, + sym_short_flag, + [84732] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1682), 1, sym_comment, - ACTIONS(883), 12, + ACTIONS(881), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -170772,7 +170872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(885), 25, + ACTIONS(883), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170798,59 +170898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84709] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1676), 1, - sym_path, - STATE(1684), 1, - sym_comment, - STATE(2069), 1, - sym_cell_path, - ACTIONS(720), 11, - sym_identifier, - 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(722), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84763] = 4, - ACTIONS(143), 1, + [84780] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1685), 1, + STATE(1683), 1, sym_comment, - ACTIONS(861), 12, + ACTIONS(901), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -170863,7 +170916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(863), 25, + ACTIONS(903), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -170889,88 +170942,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [84811] = 21, + [84828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(2331), 1, + ACTIONS(789), 1, anon_sym_LF, - ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - ACTIONS(3399), 1, - anon_sym_xor, - ACTIONS(3401), 1, - anon_sym_or, - STATE(1686), 1, + STATE(1684), 1, sym_comment, - STATE(2638), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2329), 4, + ACTIONS(787), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [84893] = 7, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [84876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, - anon_sym_DOT, - STATE(1687), 1, + ACTIONS(3413), 1, + anon_sym_QMARK2, + STATE(1685), 1, sym_comment, - STATE(1755), 1, - aux_sym_cell_path_repeat1, - STATE(1911), 1, - sym_path, - ACTIONS(734), 2, + ACTIONS(771), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(732), 32, + ACTIONS(769), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -170996,79 +171028,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [84947] = 21, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [84926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(795), 1, anon_sym_LF, - ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - ACTIONS(3399), 1, - anon_sym_xor, - ACTIONS(3401), 1, - anon_sym_or, - STATE(1688), 1, + STATE(1686), 1, sym_comment, - STATE(2624), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2311), 4, + ACTIONS(793), 36, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [85029] = 5, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [84974] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3413), 1, anon_sym_QMARK2, - STATE(1689), 1, + STATE(1687), 1, sym_comment, - ACTIONS(750), 2, + ACTIONS(771), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 34, + ACTIONS(769), 34, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -171103,15 +171120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [85079] = 4, - ACTIONS(143), 1, + [85024] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1690), 1, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1688), 1, sym_comment, - ACTIONS(873), 12, + STATE(1768), 1, + sym_path, + STATE(1960), 1, + sym_cell_path, + ACTIONS(721), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -171121,15 +171143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(875), 25, - anon_sym_COLON, + ACTIONS(723), 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, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -171147,39 +171164,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85127] = 7, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85078] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3335), 1, - anon_sym_DOT, - STATE(1691), 1, + STATE(1689), 1, sym_comment, - STATE(1729), 1, - sym_path, - STATE(2042), 1, - sym_cell_path, - ACTIONS(726), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(724), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(893), 12, + sym_identifier, anon_sym_GT, - 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT, + ACTIONS(895), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, @@ -171190,62 +171206,25 @@ 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, - sym_short_flag, - [85181] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1692), 1, - sym_comment, - ACTIONS(3405), 37, - 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, - [85227] = 4, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85126] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1693), 1, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1690), 1, sym_comment, - ACTIONS(829), 12, + STATE(1768), 1, + sym_path, + STATE(1961), 1, + sym_cell_path, + ACTIONS(713), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -171255,15 +171234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 25, - anon_sym_COLON, + ACTIONS(715), 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, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -171281,35 +171255,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85275] = 5, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85180] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_QMARK2, - STATE(1694), 1, + STATE(1691), 1, sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(748), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(103), 12, + sym_identifier, anon_sym_GT, anon_sym_DASH, anon_sym_in, - 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(105), 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, @@ -171320,43 +171302,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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [85325] = 5, - ACTIONS(3), 1, + [85228] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3407), 1, - anon_sym_QMARK2, - STATE(1695), 1, + STATE(1692), 1, sym_comment, - ACTIONS(748), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(885), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(887), 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, @@ -171367,41 +171346,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, - sym_short_flag, - [85375] = 5, - ACTIONS(3), 1, + [85276] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(750), 1, - anon_sym_LF, - ACTIONS(3407), 1, - anon_sym_QMARK2, - STATE(1696), 1, + STATE(1693), 1, sym_comment, - ACTIONS(748), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(833), 12, + sym_identifier, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(835), 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, @@ -171412,99 +171390,96 @@ 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, - sym_short_flag, - [85425] = 21, + [85324] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_LF, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(3391), 1, + ACTIONS(2315), 1, + anon_sym_LF, + ACTIONS(3365), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, + ACTIONS(3369), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, + ACTIONS(3371), 1, anon_sym_and, - ACTIONS(3399), 1, + ACTIONS(3373), 1, anon_sym_xor, - ACTIONS(3401), 1, + ACTIONS(3375), 1, anon_sym_or, - STATE(1697), 1, + STATE(1694), 1, sym_comment, - STATE(2656), 1, + STATE(2616), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(3379), 2, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3363), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2285), 4, + ACTIONS(2313), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3381), 4, + ACTIONS(3355), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, + ACTIONS(3351), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [85507] = 6, - ACTIONS(143), 1, + [85406] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3409), 1, - anon_sym_DOT, - STATE(1921), 1, - sym_path, - STATE(1698), 2, + STATE(1695), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 5, + ACTIONS(833), 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(701), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(835), 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, @@ -171520,38 +171495,34 @@ 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, - [85559] = 7, - ACTIONS(143), 1, + [85454] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1699), 1, + ACTIONS(409), 1, + anon_sym_DOT_DOT, + STATE(1696), 1, sym_comment, - STATE(1730), 1, - aux_sym_cell_path_repeat1, - STATE(1921), 1, - sym_path, - ACTIONS(728), 5, + ACTIONS(407), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(730), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(903), 23, 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, @@ -171567,15 +171538,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, - [85613] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85506] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1700), 1, + STATE(1697), 1, sym_comment, - ACTIONS(829), 12, + ACTIONS(837), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -171588,7 +171559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 25, + ACTIONS(839), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -171614,20 +171585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85661] = 7, - ACTIONS(143), 1, + [85554] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1676), 1, - sym_path, - STATE(1701), 1, + STATE(1698), 1, sym_comment, - STATE(2041), 1, - sym_cell_path, - ACTIONS(744), 11, + ACTIONS(841), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -171637,10 +171603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(746), 23, + ACTIONS(843), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -171658,35 +171629,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85715] = 7, - ACTIONS(143), 1, + [85602] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3412), 1, - anon_sym_DOT, - STATE(1702), 1, + STATE(1699), 1, sym_comment, - STATE(1703), 1, - sym_path, - STATE(2123), 1, - sym_cell_path, - ACTIONS(716), 7, + ACTIONS(845), 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_DOT_DOT, - ACTIONS(718), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(847), 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_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, @@ -171702,72 +171673,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [85650] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2319), 1, + anon_sym_LF, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + ACTIONS(3371), 1, anon_sym_and, + ACTIONS(3373), 1, anon_sym_xor, + ACTIONS(3375), 1, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [85769] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3412), 1, - anon_sym_DOT, - STATE(1703), 1, + STATE(1700), 1, sym_comment, - STATE(1708), 1, - aux_sym_cell_path_repeat1, - STATE(1919), 1, - sym_path, - ACTIONS(728), 7, - anon_sym_GT, + STATE(2620), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(730), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2317), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [85823] = 5, + [85732] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1704), 1, + ACTIONS(3379), 1, + anon_sym_DOT, + STATE(1701), 1, sym_comment, - ACTIONS(851), 2, + STATE(1712), 1, + aux_sym_cell_path_repeat1, + STATE(1902), 1, + sym_path, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(401), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 32, + ACTIONS(752), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -171800,34 +171781,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [85873] = 6, - ACTIONS(143), 1, + [85786] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(385), 1, - anon_sym_DOT_DOT, - STATE(1705), 1, + STATE(1702), 1, sym_comment, - ACTIONS(383), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 5, + ACTIONS(849), 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(851), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(851), 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, @@ -171843,34 +171825,25 @@ 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, - [85925] = 7, - ACTIONS(143), 1, + [85834] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1706), 1, + STATE(1703), 1, sym_comment, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(793), 9, + ACTIONS(853), 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(795), 22, + ACTIONS(855), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -171879,6 +171852,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -171893,12 +171869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [85979] = 4, - ACTIONS(143), 1, + [85882] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1707), 1, + STATE(1704), 1, sym_comment, - ACTIONS(829), 12, + ACTIONS(857), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -171911,7 +171887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 25, + ACTIONS(859), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -171937,131 +171913,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86027] = 7, - ACTIONS(143), 1, + [85930] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3412), 1, - anon_sym_DOT, - STATE(1708), 1, + ACTIONS(799), 1, + anon_sym_LF, + STATE(1705), 1, sym_comment, - STATE(1710), 1, - aux_sym_cell_path_repeat1, - STATE(1919), 1, - sym_path, - ACTIONS(732), 7, - anon_sym_GT, + ACTIONS(797), 36, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, - ACTIONS(734), 27, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [85978] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, anon_sym_DASH_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, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2323), 1, + anon_sym_LF, + ACTIONS(3365), 1, anon_sym_bit_DASHand, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, + ACTIONS(3369), 1, anon_sym_bit_DASHor, + ACTIONS(3371), 1, anon_sym_and, + ACTIONS(3373), 1, anon_sym_xor, + ACTIONS(3375), 1, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [86081] = 13, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1709), 1, + STATE(1706), 1, sym_comment, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, + STATE(2624), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3357), 3, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2321), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3355), 4, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 13, - 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_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [86147] = 6, - ACTIONS(143), 1, + [86060] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3414), 1, - anon_sym_DOT, - STATE(1919), 1, - sym_path, - STATE(1710), 2, + STATE(1707), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 7, + ACTIONS(861), 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_DOT_DOT, - ACTIONS(701), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(863), 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_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, @@ -172077,18 +172062,12 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [86199] = 4, - ACTIONS(143), 1, + [86108] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1711), 1, + STATE(1708), 1, sym_comment, - ACTIONS(829), 12, + ACTIONS(869), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172101,7 +172080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 25, + ACTIONS(871), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172127,32 +172106,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86247] = 8, - ACTIONS(143), 1, + [86156] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1712), 1, + STATE(1709), 1, sym_comment, - ACTIONS(3343), 2, + ACTIONS(873), 12, + sym_identifier, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3347), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(793), 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(795), 22, + ACTIONS(875), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172161,6 +172133,9 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -172175,12 +172150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86303] = 4, - ACTIONS(143), 1, + [86204] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1713), 1, + STATE(1710), 1, sym_comment, - ACTIONS(829), 12, + ACTIONS(877), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172193,7 +172168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 25, + ACTIONS(879), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172219,41 +172194,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86351] = 11, - ACTIONS(143), 1, + [86252] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1714), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2337), 1, + anon_sym_LF, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + ACTIONS(3371), 1, + anon_sym_and, + ACTIONS(3373), 1, + anon_sym_xor, + ACTIONS(3375), 1, + anon_sym_or, + STATE(1711), 1, sym_comment, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, + STATE(2637), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3347), 3, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2335), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3355), 4, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 5, + [86334] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3379), 1, + anon_sym_DOT, + STATE(1712), 1, + sym_comment, + STATE(1715), 1, + aux_sym_cell_path_repeat1, + STATE(1902), 1, + sym_path, + ACTIONS(742), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(740), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + 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, + sym_short_flag, + [86388] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1713), 1, + sym_comment, + ACTIONS(889), 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(795), 16, + ACTIONS(891), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172262,6 +172329,15 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -172270,12 +172346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86413] = 4, - ACTIONS(143), 1, + [86436] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1715), 1, + STATE(1714), 1, sym_comment, - ACTIONS(103), 12, + ACTIONS(897), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172288,7 +172364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(105), 25, + ACTIONS(899), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172314,21 +172390,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86461] = 7, + [86484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3415), 1, anon_sym_DOT, - STATE(1716), 1, - sym_comment, - STATE(1729), 1, + STATE(1902), 1, sym_path, - STATE(2079), 1, - sym_cell_path, - ACTIONS(746), 2, + ACTIONS(731), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(744), 32, + STATE(1715), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -172361,20 +172436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [86515] = 7, - ACTIONS(143), 1, + [86536] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1676), 1, - sym_path, - STATE(1717), 1, + STATE(1716), 1, sym_comment, - STATE(2044), 1, - sym_cell_path, - ACTIONS(740), 11, + ACTIONS(905), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -172384,10 +172454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(742), 23, + ACTIONS(907), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -172405,87 +172480,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86569] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3417), 1, - anon_sym_QMARK2, - STATE(1718), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(748), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [86619] = 7, - ACTIONS(3), 1, + [86584] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3335), 1, - anon_sym_DOT, - STATE(1719), 1, + STATE(1717), 1, sym_comment, - STATE(1729), 1, - sym_path, - STATE(1751), 1, - sym_cell_path, - ACTIONS(718), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(716), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(909), 12, + sym_identifier, anon_sym_GT, - 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(911), 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, @@ -172496,29 +172524,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [86632] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1718), 1, + sym_comment, + ACTIONS(3418), 37, + 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, + [86678] = 20, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3385), 1, + anon_sym_in, + ACTIONS(3391), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3401), 1, + anon_sym_bit_DASHand, + ACTIONS(3403), 1, + anon_sym_bit_DASHxor, + ACTIONS(3405), 1, + anon_sym_bit_DASHor, + ACTIONS(3407), 1, anon_sym_and, + ACTIONS(3409), 1, anon_sym_xor, + ACTIONS(3411), 1, anon_sym_or, - sym_short_flag, - [86673] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1720), 1, - sym_comment, - ACTIONS(895), 12, + ACTIONS(3420), 1, sym_identifier, + STATE(1719), 1, + sym_comment, + ACTIONS(3381), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3383), 2, anon_sym_DASH, - anon_sym_in, + anon_sym_PLUS, + ACTIONS(3389), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3393), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3399), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3387), 3, 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(897), 25, + ACTIONS(3397), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3395), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3422), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172527,8 +172627,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [86758] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(399), 1, + anon_sym_DOT_DOT, + STATE(1720), 1, + sym_comment, + ACTIONS(397), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(903), 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, @@ -172544,15 +172670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86721] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [86810] = 7, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3377), 1, + anon_sym_DOT, STATE(1721), 1, sym_comment, - ACTIONS(865), 12, + STATE(1768), 1, + sym_path, + STATE(2032), 1, + sym_cell_path, + ACTIONS(725), 11, sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -172562,15 +172696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(867), 25, - anon_sym_COLON, + ACTIONS(727), 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, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, @@ -172588,73 +172717,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86769] = 21, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86864] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2277), 1, - anon_sym_LF, - ACTIONS(2289), 1, + ACTIONS(3424), 1, + anon_sym_DOT, + STATE(1722), 1, + sym_comment, + STATE(1750), 1, + sym_path, + STATE(2108), 1, + sym_cell_path, + ACTIONS(748), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(750), 27, anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(3391), 1, + 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, - ACTIONS(3393), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, anon_sym_and, - ACTIONS(3399), 1, anon_sym_xor, - ACTIONS(3401), 1, anon_sym_or, - STATE(1722), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [86918] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1723), 1, sym_comment, - STATE(2617), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, - anon_sym_DASH, + STATE(1768), 1, + sym_path, + STATE(2038), 1, + sym_cell_path, + ACTIONS(717), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, - ACTIONS(3385), 2, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(719), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3381), 4, - anon_sym_in, + 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, - ACTIONS(3383), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86972] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1724), 1, + sym_comment, + STATE(1763), 1, + sym_path, + STATE(1776), 1, + sym_cell_path, + ACTIONS(748), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(750), 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, - ACTIONS(3377), 6, - anon_sym_GT, + 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, - [86851] = 4, - ACTIONS(143), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [87026] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1723), 1, + STATE(1725), 1, sym_comment, - ACTIONS(891), 12, + ACTIONS(939), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172667,7 +172879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(893), 25, + ACTIONS(941), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172693,25 +172905,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [86899] = 4, + [87074] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(791), 1, - anon_sym_LF, - STATE(1724), 1, + STATE(1726), 1, sym_comment, - ACTIONS(789), 36, + ACTIONS(781), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(779), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, + anon_sym_QMARK2, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -172737,19 +172949,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [86947] = 6, - ACTIONS(143), 1, + [87122] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3419), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1923), 1, + STATE(1701), 1, sym_path, - STATE(1725), 2, + STATE(1727), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 11, + STATE(1747), 1, + sym_cell_path, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + 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, + sym_short_flag, + [87176] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1728), 1, + sym_comment, + ACTIONS(931), 12, sym_identifier, anon_sym_GT, + anon_sym_DASH, anon_sym_in, anon_sym_STAR, anon_sym_SLASH, @@ -172759,10 +173014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(701), 23, + ACTIONS(933), 25, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -172780,15 +173040,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + [87224] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1729), 1, + sym_comment, + ACTIONS(777), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(775), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_QMARK2, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86999] = 4, - ACTIONS(143), 1, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + sym_short_flag, + [87272] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1726), 1, + STATE(1730), 1, sym_comment, - ACTIONS(923), 12, + ACTIONS(927), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172801,7 +173102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(925), 25, + ACTIONS(929), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172827,35 +173128,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [87047] = 7, - ACTIONS(143), 1, + [87320] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1680), 1, - sym_cell_path, - STATE(1699), 1, - sym_path, - STATE(1727), 1, + STATE(1731), 1, sym_comment, - ACTIONS(716), 5, + ACTIONS(923), 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(718), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(925), 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, @@ -172871,15 +173172,12 @@ 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, - [87101] = 4, - ACTIONS(143), 1, + [87368] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1728), 1, + STATE(1732), 1, sym_comment, - ACTIONS(857), 12, + ACTIONS(913), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -172892,7 +173190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(859), 25, + ACTIONS(915), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -172918,27 +173216,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [87149] = 7, + [87416] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, - anon_sym_DOT, - STATE(1687), 1, - aux_sym_cell_path_repeat1, - STATE(1729), 1, - sym_comment, - STATE(1911), 1, - sym_path, - ACTIONS(730), 2, - ts_builtin_sym_end, + ACTIONS(795), 1, anon_sym_LF, - ACTIONS(728), 32, + STATE(1733), 1, + sym_comment, + ACTIONS(793), 36, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -172964,41 +173257,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [87203] = 7, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [87464] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1698), 1, - aux_sym_cell_path_repeat1, - STATE(1730), 1, + ACTIONS(789), 1, + anon_sym_LF, + STATE(1734), 1, sym_comment, - STATE(1921), 1, - sym_path, - ACTIONS(732), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(734), 29, - anon_sym_COMMA, + ACTIONS(787), 36, + 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_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, @@ -173012,137 +173301,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [87257] = 15, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [87512] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, - anon_sym_bit_DASHand, - STATE(1731), 1, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3426), 1, + anon_sym_QMARK2, + STATE(1735), 1, sym_comment, - ACTIONS(3341), 2, + ACTIONS(769), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3359), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3347), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3357), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3355), 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(795), 10, - 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, - [87327] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2227), 1, - anon_sym_LF, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(3391), 1, + 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(3393), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, anon_sym_and, - ACTIONS(3399), 1, anon_sym_xor, - ACTIONS(3401), 1, anon_sym_or, - STATE(1732), 1, + sym_short_flag, + [87562] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3426), 1, + anon_sym_QMARK2, + STATE(1736), 1, sym_comment, - STATE(2609), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(2225), 4, + ACTIONS(769), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3381), 4, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + 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, - ACTIONS(3377), 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, - [87409] = 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, + sym_short_flag, + [87612] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1729), 1, + STATE(1701), 1, sym_path, - STATE(1733), 1, + STATE(1737), 1, sym_comment, - STATE(1931), 1, + STATE(2058), 1, sym_cell_path, - ACTIONS(708), 2, + ACTIONS(719), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(706), 32, + ACTIONS(717), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -173175,36 +173441,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [87463] = 4, - ACTIONS(3), 1, + [87666] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(770), 1, - anon_sym_LF, - STATE(1734), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1738), 1, sym_comment, - ACTIONS(768), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(1763), 1, + sym_path, + STATE(2054), 1, + sym_cell_path, + ACTIONS(707), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(709), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT, - 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, @@ -173218,13 +173488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [87511] = 4, - ACTIONS(143), 1, + [87720] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1735), 1, + STATE(1739), 1, sym_comment, - ACTIONS(849), 12, + ACTIONS(865), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -173237,7 +173506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(851), 25, + ACTIONS(867), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -173263,18 +173532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [87559] = 7, - ACTIONS(143), 1, + [87768] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, + ACTIONS(3377), 1, anon_sym_DOT, - STATE(1676), 1, - sym_path, - STATE(1736), 1, - sym_comment, - STATE(2087), 1, + STATE(1689), 1, sym_cell_path, - ACTIONS(724), 11, + STATE(1740), 1, + sym_comment, + STATE(1768), 1, + sym_path, + ACTIONS(748), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -173286,7 +173555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(726), 23, + ACTIONS(750), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -173310,17 +173579,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87613] = 4, - ACTIONS(143), 1, + [87822] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1737), 1, + ACTIONS(3379), 1, + anon_sym_DOT, + STATE(1701), 1, + sym_path, + STATE(1741), 1, sym_comment, - ACTIONS(899), 12, - sym_identifier, + STATE(2125), 1, + sym_cell_path, + ACTIONS(727), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(725), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + 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, + sym_short_flag, + [87876] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1742), 1, + sym_comment, + STATE(1768), 1, + sym_path, + STATE(2075), 1, + sym_cell_path, + ACTIONS(707), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_PLUS, @@ -173328,22 +173649,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(901), 25, - anon_sym_COLON, + ACTIONS(709), 23, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_RBRACE, + 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87930] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1743), 1, + sym_comment, + ACTIONS(781), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(779), 35, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + 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, @@ -173354,65 +173711,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [87661] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [87978] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1738), 1, + STATE(1744), 1, sym_comment, - ACTIONS(770), 2, + ACTIONS(777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(768), 35, + ACTIONS(775), 35, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + anon_sym_GT, anon_sym_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_DOT, + anon_sym_STAR, anon_sym_QMARK2, - anon_sym_not, + 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_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [87709] = 7, + [88026] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1729), 1, + STATE(1701), 1, sym_path, - STATE(1739), 1, + STATE(1745), 1, sym_comment, - STATE(2124), 1, + STATE(2114), 1, sym_cell_path, - ACTIONS(742), 2, + ACTIONS(715), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(740), 32, + ACTIONS(713), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -173445,83 +173808,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [87763] = 21, + [88080] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, + ACTIONS(319), 1, anon_sym_DOT, - ACTIONS(3424), 1, + ACTIONS(3430), 1, anon_sym_LF, - ACTIONS(3434), 1, + ACTIONS(3440), 1, anon_sym_QMARK2, - ACTIONS(3442), 1, + ACTIONS(3448), 1, anon_sym_bit_DASHand, - ACTIONS(3444), 1, + ACTIONS(3450), 1, anon_sym_bit_DASHxor, - ACTIONS(3446), 1, + ACTIONS(3452), 1, anon_sym_bit_DASHor, - ACTIONS(3448), 1, + ACTIONS(3454), 1, anon_sym_and, - ACTIONS(3450), 1, + ACTIONS(3456), 1, anon_sym_xor, - ACTIONS(3452), 1, + ACTIONS(3458), 1, anon_sym_or, - STATE(1740), 1, + STATE(1746), 1, sym_comment, - STATE(1816), 1, + STATE(1793), 1, sym_path, - STATE(2256), 1, + STATE(2173), 1, sym_cell_path, - ACTIONS(3428), 2, + ACTIONS(3434), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3436), 2, + ACTIONS(3442), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3438), 2, + ACTIONS(3444), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3440), 2, + ACTIONS(3446), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3422), 4, + ACTIONS(3428), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3430), 4, + ACTIONS(3436), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3432), 4, + ACTIONS(3438), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3426), 6, + ACTIONS(3432), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [87845] = 4, + [88162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, - STATE(1741), 1, + STATE(1747), 1, sym_comment, - ACTIONS(777), 36, + ACTIONS(895), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(893), 35, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -173550,84 +173912,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - [87893] = 4, + sym_short_flag, + [88210] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(3379), 1, + anon_sym_DOT, + STATE(1701), 1, + sym_path, + STATE(1748), 1, sym_comment, - ACTIONS(766), 2, + STATE(2112), 1, + sym_cell_path, + ACTIONS(723), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 35, + ACTIONS(721), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [87941] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1699), 1, - sym_path, - STATE(1743), 1, - sym_comment, - STATE(1952), 1, - sym_cell_path, - ACTIONS(744), 5, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(746), 29, - anon_sym_COMMA, - anon_sym_PIPE, + 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, 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, @@ -173641,35 +173959,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [87995] = 4, - ACTIONS(143), 1, + sym_short_flag, + [88264] = 21, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1744), 1, + ACTIONS(311), 1, + anon_sym_LF, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(323), 1, + anon_sym_QMARK2, + ACTIONS(331), 1, + anon_sym_bit_DASHand, + ACTIONS(333), 1, + anon_sym_bit_DASHxor, + ACTIONS(335), 1, + anon_sym_bit_DASHor, + ACTIONS(337), 1, + anon_sym_and, + ACTIONS(339), 1, + anon_sym_xor, + ACTIONS(341), 1, + anon_sym_or, + STATE(1749), 1, sym_comment, - ACTIONS(821), 12, - sym_identifier, - anon_sym_GT, + STATE(1793), 1, + sym_path, + STATE(2174), 1, + sym_cell_path, + ACTIONS(315), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(325), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(327), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(329), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(309), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(317), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(313), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [88346] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3424), 1, + anon_sym_DOT, + STATE(1750), 1, + sym_comment, + STATE(1755), 1, + aux_sym_cell_path_repeat1, + STATE(1881), 1, + sym_path, + ACTIONS(752), 7, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(823), 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_DOT_DOT, + ACTIONS(754), 27, anon_sym_DASH_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, @@ -173685,16 +174062,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88043] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [88400] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1751), 1, + sym_comment, + ACTIONS(1703), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1701), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [88448] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, + ACTIONS(3377), 1, anon_sym_DOT, - STATE(1676), 1, - sym_path, - STATE(1745), 1, + STATE(1752), 1, sym_comment, - STATE(2073), 1, + STATE(1768), 1, + sym_path, + STATE(1957), 1, sym_cell_path, ACTIONS(736), 11, sym_identifier, @@ -173732,34 +174159,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88097] = 4, - ACTIONS(3), 1, + [88502] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1746), 1, + ACTIONS(3460), 1, + anon_sym_QMARK2, + STATE(1753), 1, sym_comment, - ACTIONS(781), 36, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(769), 7, + anon_sym_EQ, anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(771), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -173773,38 +174203,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [88145] = 4, - ACTIONS(143), 1, + sym_short_flag, + [88552] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1747), 1, + ACTIONS(3460), 1, + anon_sym_QMARK2, + STATE(1754), 1, sym_comment, - ACTIONS(829), 12, - sym_identifier, + ACTIONS(769), 7, + 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(831), 25, + ACTIONS(771), 29, anon_sym_COLON, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + 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, @@ -173820,96 +174245,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88193] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_LF, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(315), 1, - anon_sym_QMARK2, - ACTIONS(323), 1, - anon_sym_bit_DASHand, - ACTIONS(325), 1, - anon_sym_bit_DASHxor, - ACTIONS(327), 1, - anon_sym_bit_DASHor, - ACTIONS(329), 1, anon_sym_and, - ACTIONS(331), 1, anon_sym_xor, - ACTIONS(333), 1, anon_sym_or, - STATE(1748), 1, - sym_comment, - STATE(1816), 1, - sym_path, - STATE(2241), 1, - sym_cell_path, - ACTIONS(307), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(317), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(319), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(321), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(301), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(309), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(313), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(305), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [88275] = 4, - ACTIONS(143), 1, + sym_short_flag, + [88602] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1749), 1, + ACTIONS(3424), 1, + anon_sym_DOT, + STATE(1755), 1, sym_comment, - ACTIONS(829), 12, - sym_identifier, + STATE(1756), 1, + aux_sym_cell_path_repeat1, + STATE(1881), 1, + sym_path, + ACTIONS(740), 7, 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(831), 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_DOT_DOT, + ACTIONS(742), 27, anon_sym_DASH_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, @@ -173925,39 +174290,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88323] = 7, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [88656] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3462), 1, anon_sym_DOT, - STATE(1729), 1, + STATE(1881), 1, sym_path, - STATE(1750), 1, + STATE(1756), 2, sym_comment, - STATE(2091), 1, - sym_cell_path, - ACTIONS(722), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(720), 32, - anon_sym_SEMI, - anon_sym_PIPE, + aux_sym_cell_path_repeat1, + ACTIONS(729), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(731), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -173971,101 +174339,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [88377] = 4, + [88708] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1757), 1, sym_comment, - ACTIONS(827), 2, + ACTIONS(1699), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(825), 35, + ACTIONS(1697), 35, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_GT, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [88756] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2311), 1, + anon_sym_LF, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + ACTIONS(3371), 1, + anon_sym_and, + ACTIONS(3373), 1, + anon_sym_xor, + ACTIONS(3375), 1, + anon_sym_or, + STATE(1758), 1, + sym_comment, + STATE(2655), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2309), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 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(3351), 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, + [88838] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2233), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(3365), 1, anon_sym_bit_DASHand, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, + ACTIONS(3369), 1, anon_sym_bit_DASHor, + ACTIONS(3371), 1, anon_sym_and, + ACTIONS(3373), 1, anon_sym_xor, + ACTIONS(3375), 1, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [88425] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1752), 1, + STATE(1759), 1, sym_comment, - ACTIONS(927), 12, - sym_identifier, - anon_sym_GT, + STATE(2621), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(2231), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, 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(929), 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, + ACTIONS(3351), 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, - [88473] = 4, - ACTIONS(143), 1, + [88920] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1753), 1, + STATE(1760), 1, sym_comment, - ACTIONS(927), 12, + ACTIONS(113), 12, sym_identifier, anon_sym_GT, anon_sym_DASH, @@ -174078,7 +174526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(929), 25, + ACTIONS(115), 25, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -174104,21 +174552,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88521] = 7, + [88968] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3335), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1729), 1, + STATE(1701), 1, sym_path, - STATE(1754), 1, + STATE(1761), 1, sym_comment, - STATE(2093), 1, + STATE(2104), 1, sym_cell_path, - ACTIONS(714), 2, + ACTIONS(738), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(712), 32, + ACTIONS(736), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -174151,20 +174599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [88575] = 6, + [89022] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3454), 1, + ACTIONS(3379), 1, anon_sym_DOT, - STATE(1911), 1, + STATE(1701), 1, sym_path, - ACTIONS(701), 2, + STATE(1762), 1, + sym_comment, + STATE(2063), 1, + sym_cell_path, + ACTIONS(746), 2, ts_builtin_sym_end, anon_sym_LF, - STATE(1755), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 32, + ACTIONS(744), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -174197,89 +174646,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [88627] = 14, - ACTIONS(143), 1, + [89076] = 7, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1756), 1, - sym_comment, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3359), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3357), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3355), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 11, - 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_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - [88695] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1757), 1, + anon_sym_DOT, + STATE(1763), 1, sym_comment, - ACTIONS(829), 12, - sym_identifier, + STATE(1764), 1, + aux_sym_cell_path_repeat1, + STATE(1891), 1, + sym_path, + ACTIONS(752), 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(831), 25, - anon_sym_COLON, + ACTIONS(754), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -174295,73 +174690,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88743] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - STATE(1758), 1, - sym_comment, - ACTIONS(3343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(793), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(795), 20, - 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_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, - [88801] = 7, - ACTIONS(143), 1, + [89130] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, + ACTIONS(3345), 1, anon_sym_DOT, - STATE(1699), 1, - sym_path, - STATE(1759), 1, + STATE(1764), 1, sym_comment, - STATE(1948), 1, - sym_cell_path, - ACTIONS(736), 5, + STATE(1765), 1, + aux_sym_cell_path_repeat1, + STATE(1891), 1, + sym_path, + ACTIONS(740), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(738), 29, + ACTIONS(742), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -174391,35 +174740,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [88855] = 4, - ACTIONS(143), 1, + [89184] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1760), 1, + ACTIONS(3465), 1, + anon_sym_DOT, + STATE(1891), 1, + sym_path, + STATE(1765), 2, sym_comment, - ACTIONS(829), 12, - sym_identifier, + aux_sym_cell_path_repeat1, + ACTIONS(729), 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(831), 25, - anon_sym_COLON, + ACTIONS(731), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -174435,24 +174783,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [88903] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [89236] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(779), 1, + ACTIONS(3468), 1, + anon_sym_QMARK2, + STATE(1766), 1, + sym_comment, + ACTIONS(771), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1761), 1, + ACTIONS(769), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [89286] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_QMARK2, + STATE(1767), 1, sym_comment, - ACTIONS(777), 36, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, @@ -174479,73 +174876,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [88951] = 16, - ACTIONS(143), 1, + [89336] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, - anon_sym_bit_DASHand, - ACTIONS(3363), 1, - anon_sym_bit_DASHxor, - STATE(1762), 1, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1768), 1, sym_comment, - ACTIONS(3341), 2, + STATE(1769), 1, + aux_sym_cell_path_repeat1, + STATE(1899), 1, + sym_path, + ACTIONS(752), 11, + sym_identifier, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3359), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3347), 3, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3357), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(3355), 4, + ACTIONS(754), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, - ACTIONS(795), 9, - 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_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89023] = 6, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89390] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(395), 1, - anon_sym_DOT_DOT, - STATE(1763), 1, + ACTIONS(3377), 1, + anon_sym_DOT, + STATE(1769), 1, sym_comment, - ACTIONS(393), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 11, + STATE(1770), 1, + aux_sym_cell_path_repeat1, + STATE(1899), 1, + sym_path, + ACTIONS(740), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -174557,7 +174946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(851), 23, + ACTIONS(742), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -174581,191 +174970,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89075] = 20, - ACTIONS(143), 1, + [89444] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(3470), 1, + anon_sym_DOT, + STATE(1899), 1, + sym_path, + STATE(1770), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(729), 11, sym_identifier, - ACTIONS(3345), 1, + anon_sym_GT, anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, - anon_sym_bit_DASHand, - ACTIONS(3363), 1, - anon_sym_bit_DASHxor, - ACTIONS(3365), 1, - anon_sym_bit_DASHor, - ACTIONS(3367), 1, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(3369), 1, anon_sym_xor, - ACTIONS(3457), 1, anon_sym_or, - STATE(1764), 1, - sym_comment, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, + ACTIONS(731), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3349), 2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3359), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3357), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3355), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 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, - [89155] = 21, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89496] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2299), 1, anon_sym_LF, - ACTIONS(3391), 1, + ACTIONS(3365), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, + ACTIONS(3369), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, + ACTIONS(3371), 1, anon_sym_and, - ACTIONS(3399), 1, + ACTIONS(3373), 1, anon_sym_xor, - ACTIONS(3401), 1, + ACTIONS(3375), 1, anon_sym_or, - STATE(1765), 1, + STATE(1771), 1, sym_comment, - STATE(2645), 1, + STATE(2609), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(3379), 2, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3363), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(2293), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3381), 4, + ACTIONS(3355), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, + ACTIONS(3351), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [89237] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1766), 1, - sym_comment, - ACTIONS(869), 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(871), 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, - [89285] = 5, + [89578] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3417), 1, - anon_sym_QMARK2, - STATE(1767), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, + ACTIONS(1311), 1, anon_sym_LF, - ACTIONS(748), 34, + ACTIONS(3473), 1, + sym__long_flag_identifier, + STATE(1772), 1, + sym_comment, + ACTIONS(1307), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -174791,35 +175122,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [89335] = 4, - ACTIONS(143), 1, + [89628] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1768), 1, + STATE(1773), 1, sym_comment, - ACTIONS(911), 12, - sym_identifier, + ACTIONS(903), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(391), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + 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, - ACTIONS(913), 25, - anon_sym_COLON, + sym_short_flag, + [89678] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1763), 1, + sym_path, + STATE(1774), 1, + sym_comment, + STATE(2086), 1, + sym_cell_path, + ACTIONS(713), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(715), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -174835,84 +175211,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89383] = 20, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [89732] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3345), 1, - anon_sym_in, - ACTIONS(3351), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3361), 1, + ACTIONS(2271), 1, + anon_sym_LF, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(3365), 1, anon_sym_bit_DASHand, - ACTIONS(3363), 1, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, - ACTIONS(3365), 1, + ACTIONS(3369), 1, anon_sym_bit_DASHor, - ACTIONS(3367), 1, + ACTIONS(3371), 1, anon_sym_and, - ACTIONS(3369), 1, + ACTIONS(3373), 1, anon_sym_xor, - ACTIONS(3457), 1, + ACTIONS(3375), 1, anon_sym_or, - ACTIONS(3459), 1, - sym_identifier, - STATE(1769), 1, + STATE(1775), 1, sym_comment, - ACTIONS(3341), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3343), 2, + STATE(2634), 1, + sym__flag, + STATE(2721), 1, + sym_long_flag, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3349), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3353), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3359), 2, + ACTIONS(3363), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3347), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3357), 3, + ACTIONS(2269), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3355), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3355), 4, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3461), 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, - [89463] = 7, - ACTIONS(143), 1, + [89814] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1699), 1, - sym_path, - STATE(1770), 1, + STATE(1776), 1, sym_comment, - STATE(1958), 1, - sym_cell_path, - ACTIONS(724), 5, + ACTIONS(893), 6, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(726), 29, + anon_sym_DOT_DOT, + ACTIONS(895), 31, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -174942,35 +175317,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [89517] = 4, - ACTIONS(143), 1, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + [89862] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1771), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1763), 1, + sym_path, + STATE(1777), 1, sym_comment, - ACTIONS(113), 12, - sym_identifier, + STATE(2089), 1, + sym_cell_path, + ACTIONS(721), 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(115), 25, - anon_sym_COLON, + ACTIONS(723), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -174986,35 +175363,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89565] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [89916] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1772), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1763), 1, + sym_path, + STATE(1778), 1, sym_comment, - ACTIONS(931), 12, - sym_identifier, + STATE(2087), 1, + sym_cell_path, + ACTIONS(744), 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(933), 25, - anon_sym_COLON, + ACTIONS(746), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -175030,79 +175410,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89613] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [89970] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1773), 1, - sym_comment, - ACTIONS(781), 36, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3345), 1, anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [89661] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1774), 1, + STATE(1763), 1, + sym_path, + STATE(1779), 1, sym_comment, - ACTIONS(829), 12, - sym_identifier, + STATE(2100), 1, + sym_cell_path, + ACTIONS(736), 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(831), 25, - anon_sym_COLON, + ACTIONS(738), 29, 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_STAR_STAR, anon_sym_PLUS_PLUS, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -175118,35 +175457,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89709] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [90024] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3339), 1, - anon_sym_DOT, - STATE(1662), 1, - sym_cell_path, - STATE(1676), 1, - sym_path, - STATE(1775), 1, + ACTIONS(3475), 1, + anon_sym_QMARK2, + STATE(1780), 1, sym_comment, - ACTIONS(716), 11, - sym_identifier, + ACTIONS(769), 8, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, + anon_sym_DOT, 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(718), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_DOT_DOT, + ACTIONS(771), 27, + anon_sym_DASH_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, @@ -175162,29 +175498,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89763] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [90073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1303), 1, - anon_sym_LF, - ACTIONS(3463), 1, - sym__long_flag_identifier, - STATE(1776), 1, + STATE(1781), 1, sym_comment, - ACTIONS(1299), 35, + ACTIONS(799), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(797), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -175210,25 +175547,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [89813] = 4, + [90120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, + ACTIONS(903), 1, anon_sym_LF, - STATE(1777), 1, + STATE(1782), 1, sym_comment, - ACTIONS(764), 36, + ACTIONS(343), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -175253,41 +175591,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [89861] = 4, - ACTIONS(143), 1, + [90169] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1778), 1, + ACTIONS(3477), 1, + anon_sym_COMMA, + STATE(1783), 1, sym_comment, - ACTIONS(887), 12, - sym_identifier, + ACTIONS(3479), 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, + [90216] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1784), 1, + sym_comment, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 34, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, 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(889), 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, @@ -175298,18 +175671,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - [89909] = 5, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [90263] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(851), 1, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + ACTIONS(3505), 1, + anon_sym_or, + STATE(1785), 1, + sym_comment, + STATE(2674), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2269), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2271), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1779), 1, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [90344] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(723), 1, + anon_sym_LF, + STATE(1786), 1, sym_comment, - ACTIONS(335), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 32, + STATE(1793), 1, + sym_path, + STATE(2273), 1, + sym_cell_path, + ACTIONS(721), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -175342,27 +175783,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [89958] = 7, + [90397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(718), 1, - anon_sym_LF, - STATE(1780), 1, + STATE(1787), 1, sym_comment, - STATE(1792), 1, - sym_cell_path, - STATE(1816), 1, - sym_path, - ACTIONS(716), 32, + ACTIONS(789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(787), 34, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -175388,20 +175823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90011] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [90444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(714), 1, + ACTIONS(895), 1, anon_sym_LF, - STATE(1781), 1, + STATE(1788), 1, sym_comment, - STATE(1816), 1, - sym_path, - STATE(2164), 1, - sym_cell_path, - ACTIONS(712), 32, + ACTIONS(893), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -175434,64 +175866,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90064] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1782), 1, - sym_comment, - ACTIONS(791), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(789), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [90111] = 4, + [90491] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1789), 1, + sym_comment, + ACTIONS(3210), 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, + [90536] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1783), 1, - sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(709), 1, anon_sym_LF, - ACTIONS(781), 34, + STATE(1790), 1, + sym_comment, + STATE(1793), 1, + sym_path, + STATE(2277), 1, + sym_cell_path, + ACTIONS(707), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -175517,38 +175957,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [90158] = 4, - ACTIONS(143), 1, + [90589] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1784), 1, + ACTIONS(731), 1, + anon_sym_LF, + ACTIONS(3507), 1, + anon_sym_DOT, + STATE(1976), 1, + sym_path, + STATE(1791), 2, sym_comment, - ACTIONS(781), 7, - anon_sym_EQ, + aux_sym_cell_path_repeat1, + ACTIONS(729), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(783), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, + 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, @@ -175562,34 +176002,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [90205] = 4, - ACTIONS(143), 1, + [90640] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1785), 1, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(742), 1, + anon_sym_LF, + STATE(1791), 1, + aux_sym_cell_path_repeat1, + STATE(1792), 1, sym_comment, - ACTIONS(764), 8, + STATE(1976), 1, + sym_path, + ACTIONS(740), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(766), 28, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + 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, @@ -175603,187 +176048,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [90252] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, - anon_sym_and, - ACTIONS(3487), 1, - anon_sym_xor, - ACTIONS(3489), 1, - anon_sym_or, - STATE(1786), 1, - sym_comment, - STATE(2701), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2329), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2331), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [90333] = 5, + [90693] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3491), 1, - sym__long_flag_identifier, - STATE(1787), 1, - sym_comment, - ACTIONS(1303), 2, - ts_builtin_sym_end, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(754), 1, anon_sym_LF, - ACTIONS(1299), 33, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [90382] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1788), 1, + STATE(1792), 1, + aux_sym_cell_path_repeat1, + STATE(1793), 1, sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(781), 34, + STATE(1976), 1, + sym_path, + ACTIONS(752), 32, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [90429] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3493), 1, - anon_sym_QMARK2, - STATE(1789), 1, - sym_comment, - ACTIONS(748), 11, - sym_identifier, 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(750), 24, - anon_sym_COMMA, anon_sym_DASH, + 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_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, @@ -175794,122 +176091,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90478] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [90746] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(701), 1, - anon_sym_LF, - ACTIONS(3495), 1, + ACTIONS(355), 1, anon_sym_DOT, - STATE(1966), 1, - sym_path, - STATE(1790), 2, + ACTIONS(3518), 1, + anon_sym_QMARK2, + ACTIONS(3526), 1, + anon_sym_bit_DASHand, + ACTIONS(3528), 1, + anon_sym_bit_DASHxor, + ACTIONS(3530), 1, + anon_sym_bit_DASHor, + ACTIONS(3532), 1, + anon_sym_and, + ACTIONS(3534), 1, + anon_sym_xor, + ACTIONS(3536), 1, + anon_sym_or, + STATE(1794), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 32, + STATE(1844), 1, + sym_path, + STATE(2282), 1, + sym_cell_path, + ACTIONS(3428), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3430), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3512), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3520), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3522), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3524), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3514), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3516), 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(3510), 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, - [90529] = 21, + [90827] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, + ACTIONS(355), 1, anon_sym_DOT, - ACTIONS(351), 1, - anon_sym_QMARK2, ACTIONS(359), 1, + anon_sym_QMARK2, + ACTIONS(367), 1, anon_sym_bit_DASHand, - ACTIONS(361), 1, + ACTIONS(369), 1, anon_sym_bit_DASHxor, - ACTIONS(363), 1, + ACTIONS(371), 1, anon_sym_bit_DASHor, - ACTIONS(365), 1, + ACTIONS(373), 1, anon_sym_and, - ACTIONS(367), 1, + ACTIONS(375), 1, anon_sym_xor, - ACTIONS(369), 1, + ACTIONS(377), 1, anon_sym_or, - STATE(1791), 1, + STATE(1795), 1, sym_comment, - STATE(1929), 1, + STATE(1844), 1, sym_path, - STATE(2406), 1, + STATE(2283), 1, sym_cell_path, - ACTIONS(301), 2, + ACTIONS(309), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(303), 2, + ACTIONS(311), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(343), 2, + ACTIONS(351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(353), 2, + ACTIONS(361), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(355), 2, + ACTIONS(363), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(357), 2, + ACTIONS(365), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(345), 4, + ACTIONS(353), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(349), 4, + ACTIONS(357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(341), 6, + ACTIONS(349), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [90610] = 4, + [90908] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(827), 1, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(715), 1, anon_sym_LF, - STATE(1792), 1, + STATE(1793), 1, + sym_path, + STATE(1796), 1, sym_comment, - ACTIONS(825), 35, + STATE(2268), 1, + sym_cell_path, + ACTIONS(713), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -175942,40 +176260,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [90657] = 5, - ACTIONS(143), 1, + [90961] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3493), 1, + ACTIONS(3538), 1, anon_sym_QMARK2, - STATE(1793), 1, + STATE(1797), 1, sym_comment, - ACTIONS(748), 11, - sym_identifier, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 33, + anon_sym_SEMI, + anon_sym_PIPE, 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(750), 24, - anon_sym_COMMA, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, + anon_sym_in, 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, @@ -175986,28 +176300,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [90706] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [91010] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(766), 1, - anon_sym_LF, - STATE(1794), 1, + ACTIONS(3538), 1, + anon_sym_QMARK2, + STATE(1798), 1, sym_comment, - ACTIONS(764), 35, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 33, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -176032,71 +176347,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90753] = 5, - ACTIONS(143), 1, + sym_short_flag, + [91059] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3498), 1, - anon_sym_QMARK2, - STATE(1795), 1, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + ACTIONS(3505), 1, + anon_sym_or, + STATE(1799), 1, sym_comment, - ACTIONS(748), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(750), 30, - anon_sym_COMMA, + STATE(2675), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2297), 2, + anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(2299), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 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, + [91140] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, anon_sym_bit_DASHand, + ACTIONS(3497), 1, anon_sym_bit_DASHxor, + ACTIONS(3499), 1, anon_sym_bit_DASHor, + ACTIONS(3501), 1, anon_sym_and, + ACTIONS(3503), 1, anon_sym_xor, + ACTIONS(3505), 1, anon_sym_or, - [90802] = 7, + STATE(1800), 1, + sym_comment, + STATE(2684), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2335), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2337), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [91221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(722), 1, + ACTIONS(799), 1, anon_sym_LF, - STATE(1796), 1, + STATE(1801), 1, sym_comment, - STATE(1816), 1, - sym_path, - STATE(2156), 1, - sym_cell_path, - ACTIONS(720), 32, + ACTIONS(797), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -176122,14 +176510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [90855] = 4, + sym_short_flag, + [91268] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1404), 1, + ACTIONS(867), 1, anon_sym_LF, - STATE(1797), 1, + STATE(1802), 1, sym_comment, - ACTIONS(1402), 35, + ACTIONS(865), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -176165,172 +176554,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [90902] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1798), 1, - sym_comment, - ACTIONS(777), 7, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(779), 29, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - 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, - sym_short_flag, - [90949] = 21, + [91315] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - ACTIONS(3479), 1, + ACTIONS(3495), 1, anon_sym_bit_DASHand, - ACTIONS(3481), 1, + ACTIONS(3497), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, + ACTIONS(3499), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, + ACTIONS(3501), 1, anon_sym_and, - ACTIONS(3487), 1, + ACTIONS(3503), 1, anon_sym_xor, - ACTIONS(3489), 1, + ACTIONS(3505), 1, anon_sym_or, - STATE(1799), 1, + STATE(1803), 1, sym_comment, - STATE(2686), 1, + STATE(2703), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2275), 2, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2277), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3473), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3469), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3471), 4, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, + ACTIONS(3481), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91030] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3500), 1, - anon_sym_GT, - STATE(1800), 1, - sym_comment, - STATE(3486), 1, - sym_flat_type, - ACTIONS(3181), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [91079] = 4, + [91396] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(770), 1, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(746), 1, anon_sym_LF, - STATE(1801), 1, + STATE(1793), 1, + sym_path, + STATE(1804), 1, sym_comment, - ACTIONS(768), 35, + STATE(2150), 1, + sym_cell_path, + ACTIONS(744), 32, 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_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -176355,15 +176660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91126] = 4, - ACTIONS(143), 1, + [91449] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3502), 1, - anon_sym_COMMA, - STATE(1802), 1, + ACTIONS(3540), 1, + anon_sym_GT, + STATE(1805), 1, sym_comment, - ACTIONS(3504), 35, - anon_sym_RBRACK, + STATE(3596), 1, + sym_flat_type, + ACTIONS(3200), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -176398,155 +176704,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [91173] = 20, + [91498] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, + ACTIONS(319), 1, anon_sym_DOT, - ACTIONS(3508), 1, + ACTIONS(727), 1, anon_sym_LF, - ACTIONS(3524), 1, + STATE(1793), 1, + sym_path, + STATE(1806), 1, + sym_comment, + STATE(2162), 1, + sym_cell_path, + ACTIONS(725), 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, - ACTIONS(3526), 1, anon_sym_bit_DASHxor, - ACTIONS(3528), 1, anon_sym_bit_DASHor, - ACTIONS(3530), 1, anon_sym_and, - ACTIONS(3532), 1, anon_sym_xor, - ACTIONS(3534), 1, anon_sym_or, - STATE(1803), 1, + [91551] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + ACTIONS(3505), 1, + anon_sym_or, + STATE(1807), 1, sym_comment, - STATE(1816), 1, - sym_path, - STATE(2209), 1, - sym_cell_path, - ACTIONS(3512), 2, + STATE(2695), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2319), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3518), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3520), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3522), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3506), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3514), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3516), 4, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3510), 6, + ACTIONS(3481), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91252] = 20, + [91632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(3538), 1, + ACTIONS(3542), 1, + sym__long_flag_identifier, + STATE(1808), 1, + sym_comment, + ACTIONS(1311), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3554), 1, + ACTIONS(1307), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [91681] = 21, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, anon_sym_bit_DASHand, - ACTIONS(3556), 1, + ACTIONS(3497), 1, anon_sym_bit_DASHxor, - ACTIONS(3558), 1, + ACTIONS(3499), 1, anon_sym_bit_DASHor, - ACTIONS(3560), 1, + ACTIONS(3501), 1, anon_sym_and, - ACTIONS(3562), 1, + ACTIONS(3503), 1, anon_sym_xor, - ACTIONS(3564), 1, + ACTIONS(3505), 1, anon_sym_or, - STATE(1804), 1, + STATE(1809), 1, sym_comment, - STATE(1816), 1, - sym_path, - STATE(2178), 1, - sym_cell_path, - ACTIONS(3542), 2, + STATE(2690), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2313), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2315), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3548), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3550), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3552), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3536), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3544), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3546), 4, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3540), 6, + ACTIONS(3481), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91331] = 5, - ACTIONS(143), 1, + [91762] = 21, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3498), 1, - anon_sym_QMARK2, - STATE(1805), 1, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + ACTIONS(3505), 1, + anon_sym_or, + STATE(1810), 1, sym_comment, - ACTIONS(748), 5, - anon_sym_GT, + STATE(2694), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(3347), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3349), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(750), 30, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [91843] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(929), 1, + anon_sym_LF, + STATE(1811), 1, + sym_comment, + ACTIONS(927), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + 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_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [91890] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(795), 1, + anon_sym_LF, + STATE(1812), 1, + sym_comment, + ACTIONS(793), 35, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + 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_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, @@ -176560,14 +177059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91380] = 4, + sym_short_flag, + [91937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(791), 1, + ACTIONS(789), 1, anon_sym_LF, - STATE(1806), 1, + STATE(1813), 1, sym_comment, - ACTIONS(789), 35, + ACTIONS(787), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -176603,194 +177103,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [91427] = 21, + [91984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + STATE(1814), 1, + sym_comment, + ACTIONS(777), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(775), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + 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, - ACTIONS(3481), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, anon_sym_and, - ACTIONS(3487), 1, anon_sym_xor, - ACTIONS(3489), 1, anon_sym_or, - STATE(1807), 1, + sym_short_flag, + [92031] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(750), 1, + anon_sym_LF, + STATE(1788), 1, + sym_cell_path, + STATE(1793), 1, + sym_path, + STATE(1815), 1, sym_comment, - STATE(2676), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(3373), 2, + ACTIONS(748), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3375), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 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(3465), 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, - [91508] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, + 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(3481), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, anon_sym_and, - ACTIONS(3487), 1, anon_sym_xor, - ACTIONS(3489), 1, anon_sym_or, - STATE(1808), 1, + [92084] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(781), 1, + anon_sym_LF, + STATE(1816), 1, sym_comment, - STATE(2683), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2285), 2, + ACTIONS(779), 35, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, + anon_sym_RBRACE, + anon_sym_DOT, 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(3465), 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, - [91589] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - ACTIONS(3574), 1, - anon_sym_QMARK2, - ACTIONS(3582), 1, + 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(3584), 1, anon_sym_bit_DASHxor, - ACTIONS(3586), 1, anon_sym_bit_DASHor, - ACTIONS(3588), 1, anon_sym_and, - ACTIONS(3590), 1, anon_sym_xor, - ACTIONS(3592), 1, anon_sym_or, - STATE(1809), 1, + [92131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1817), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2414), 1, - sym_cell_path, - ACTIONS(3422), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3424), 2, + ACTIONS(781), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3568), 2, + ACTIONS(779), 34, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3576), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3578), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3580), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3570), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3572), 4, + anon_sym_DOT, 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(3566), 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, - [91670] = 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, + sym_short_flag, + [92178] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1392), 1, + ACTIONS(3546), 1, anon_sym_LF, - STATE(1810), 1, + STATE(1818), 1, sym_comment, - ACTIONS(1390), 35, + ACTIONS(3544), 35, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -176826,33 +177321,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [91717] = 4, - ACTIONS(143), 1, + [92225] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1811), 1, - sym_comment, - ACTIONS(768), 8, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(319), 1, anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(770), 28, - anon_sym_DASH_DASH, + ACTIONS(738), 1, + anon_sym_LF, + STATE(1793), 1, + sym_path, + STATE(1819), 1, + sym_comment, + STATE(2201), 1, + sym_cell_path, + ACTIONS(736), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_QMARK2, + 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, @@ -176866,87 +177367,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [91764] = 21, + [92278] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - ACTIONS(3479), 1, + ACTIONS(3495), 1, anon_sym_bit_DASHand, - ACTIONS(3481), 1, + ACTIONS(3497), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, + ACTIONS(3499), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, + ACTIONS(3501), 1, anon_sym_and, - ACTIONS(3487), 1, + ACTIONS(3503), 1, anon_sym_xor, - ACTIONS(3489), 1, + ACTIONS(3505), 1, anon_sym_or, - STATE(1812), 1, + STATE(1820), 1, sym_comment, - STATE(2671), 1, + STATE(2665), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2319), 2, + ACTIONS(2309), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2321), 2, + ACTIONS(2311), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3473), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3469), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3471), 4, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, + ACTIONS(3481), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [91845] = 4, + [92359] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1813), 1, - sym_comment, - ACTIONS(766), 2, - ts_builtin_sym_end, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(719), 1, anon_sym_LF, - ACTIONS(764), 34, + STATE(1793), 1, + sym_path, + STATE(1821), 1, + sym_comment, + STATE(2233), 1, + sym_cell_path, + ACTIONS(717), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -176971,40 +177473,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [91892] = 7, - ACTIONS(3), 1, + [92412] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(738), 1, - anon_sym_LF, - STATE(1814), 1, + ACTIONS(3475), 1, + anon_sym_QMARK2, + STATE(1822), 1, sym_comment, - STATE(1816), 1, - sym_path, - STATE(2150), 1, - sym_cell_path, - ACTIONS(736), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(769), 8, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(771), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -177018,39 +177514,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91945] = 7, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_short_flag, + [92461] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, + ACTIONS(319), 1, anon_sym_DOT, - ACTIONS(746), 1, + ACTIONS(3550), 1, anon_sym_LF, - STATE(1815), 1, - sym_comment, - STATE(1816), 1, + ACTIONS(3566), 1, + anon_sym_bit_DASHand, + ACTIONS(3568), 1, + anon_sym_bit_DASHxor, + ACTIONS(3570), 1, + anon_sym_bit_DASHor, + ACTIONS(3572), 1, + anon_sym_and, + ACTIONS(3574), 1, + anon_sym_xor, + ACTIONS(3576), 1, + anon_sym_or, + STATE(1793), 1, sym_path, - STATE(2152), 1, + STATE(1823), 1, + sym_comment, + STATE(2224), 1, sym_cell_path, - ACTIONS(744), 32, + ACTIONS(3554), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3562), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3564), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3548), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, anon_sym_RBRACE, + ACTIONS(3556), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3558), 4, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3552), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [92540] = 20, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(319), 1, + anon_sym_DOT, + ACTIONS(3580), 1, + anon_sym_LF, + ACTIONS(3596), 1, + anon_sym_bit_DASHand, + ACTIONS(3598), 1, + anon_sym_bit_DASHxor, + ACTIONS(3600), 1, + anon_sym_bit_DASHor, + ACTIONS(3602), 1, + anon_sym_and, + ACTIONS(3604), 1, + anon_sym_xor, + ACTIONS(3606), 1, + anon_sym_or, + STATE(1793), 1, + sym_path, + STATE(1824), 1, + sym_comment, + STATE(2279), 1, + sym_cell_path, + ACTIONS(3584), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3590), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3592), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3594), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3578), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3586), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3588), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3582), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [92619] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1825), 1, + sym_comment, + ACTIONS(793), 7, + anon_sym_EQ, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(795), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + 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_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -177064,39 +177677,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [91998] = 7, - ACTIONS(3), 1, + sym_short_flag, + [92666] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(730), 1, - anon_sym_LF, - STATE(1816), 1, + STATE(1826), 1, sym_comment, - STATE(1840), 1, - aux_sym_cell_path_repeat1, - STATE(1966), 1, - sym_path, - ACTIONS(728), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(779), 11, + 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(781), 25, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT, + 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, @@ -177107,15 +177718,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, - [92051] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [92713] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1817), 1, + STATE(1827), 1, sym_comment, - ACTIONS(768), 11, + ACTIONS(775), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -177127,7 +177738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(770), 25, + ACTIONS(777), 25, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -177153,99 +177764,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92098] = 21, + [92760] = 21, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - ACTIONS(3479), 1, + ACTIONS(3495), 1, anon_sym_bit_DASHand, - ACTIONS(3481), 1, + ACTIONS(3497), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, + ACTIONS(3499), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, + ACTIONS(3501), 1, anon_sym_and, - ACTIONS(3487), 1, + ACTIONS(3503), 1, anon_sym_xor, - ACTIONS(3489), 1, + ACTIONS(3505), 1, anon_sym_or, - STATE(1818), 1, + STATE(1828), 1, sym_comment, - STATE(2664), 1, + STATE(2686), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2315), 2, + ACTIONS(2231), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2317), 2, + ACTIONS(2233), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3473), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3469), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3471), 4, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, + ACTIONS(3481), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [92179] = 7, - ACTIONS(3), 1, + [92841] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(742), 1, - anon_sym_LF, - STATE(1816), 1, - sym_path, - STATE(1819), 1, + ACTIONS(3608), 1, + anon_sym_QMARK2, + STATE(1829), 1, sym_comment, - STATE(2272), 1, - sym_cell_path, - ACTIONS(740), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(769), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(771), 30, + 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_DOT, 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, @@ -177259,31 +177868,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92232] = 4, - ACTIONS(143), 1, + [92890] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1820), 1, + ACTIONS(3608), 1, + anon_sym_QMARK2, + STATE(1830), 1, sym_comment, - ACTIONS(764), 11, - sym_identifier, + ACTIONS(769), 5, 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(766), 25, + ACTIONS(771), 30, 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_DOT, - 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, @@ -177299,31 +177909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92279] = 7, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [92939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(726), 1, + ACTIONS(777), 1, anon_sym_LF, - STATE(1816), 1, - sym_path, - STATE(1821), 1, + STATE(1831), 1, sym_comment, - STATE(2270), 1, - sym_cell_path, - ACTIONS(724), 32, + ACTIONS(775), 35, 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_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -177348,24 +177955,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92332] = 4, + [92986] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + STATE(1832), 1, + sym_comment, + ACTIONS(789), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1822), 1, + ACTIONS(787), 34, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [93033] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1833), 1, sym_comment, - ACTIONS(853), 35, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 34, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT, @@ -177391,29 +178041,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [92379] = 5, - ACTIONS(143), 1, + [93080] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3594), 1, + ACTIONS(3610), 1, anon_sym_QMARK2, - STATE(1823), 1, + STATE(1834), 1, sym_comment, - ACTIONS(748), 8, + ACTIONS(769), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, - anon_sym_DOT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(750), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(771), 24, + anon_sym_COMMA, + anon_sym_DASH, + 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, @@ -177429,35 +178082,35 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [92428] = 5, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93129] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3594), 1, + ACTIONS(3610), 1, anon_sym_QMARK2, - STATE(1824), 1, + STATE(1835), 1, sym_comment, - ACTIONS(748), 8, + ACTIONS(769), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, - anon_sym_DOT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(750), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(771), 24, + anon_sym_COMMA, + anon_sym_DASH, + 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, @@ -177473,41 +178126,36 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [92477] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93178] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1836), 1, sym_comment, - ACTIONS(770), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(768), 34, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(779), 8, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(781), 28, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -177521,36 +178169,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [92524] = 4, - ACTIONS(3), 1, + [93225] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1826), 1, + STATE(1837), 1, sym_comment, - ACTIONS(781), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(775), 8, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(777), 28, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + 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, @@ -177564,36 +178212,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [92571] = 4, - ACTIONS(3), 1, + [93272] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, - STATE(1827), 1, + STATE(1838), 1, sym_comment, - ACTIONS(777), 35, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(787), 7, + anon_sym_EQ, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(789), 29, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, @@ -177608,58 +178258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [92618] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1828), 1, - sym_comment, - ACTIONS(3201), 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, - [92663] = 5, - ACTIONS(143), 1, + [93319] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3596), 1, + ACTIONS(3612), 1, anon_sym_GT, - STATE(1829), 1, + STATE(1839), 1, sym_comment, - STATE(3519), 1, + STATE(3526), 1, sym_flat_type, - ACTIONS(3181), 34, + ACTIONS(3200), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -177694,20 +178302,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [92712] = 7, + [93368] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(708), 1, + ACTIONS(1461), 1, anon_sym_LF, - STATE(1816), 1, - sym_path, - STATE(1830), 1, + STATE(1840), 1, sym_comment, - STATE(2274), 1, - sym_cell_path, - ACTIONS(706), 32, + ACTIONS(1459), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [93415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1449), 1, + anon_sym_LF, + STATE(1841), 1, + sym_comment, + ACTIONS(1447), 35, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [93462] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(771), 1, + anon_sym_LF, + ACTIONS(3614), 1, + anon_sym_QMARK2, + STATE(1842), 1, + sym_comment, + ACTIONS(769), 33, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -177715,6 +178405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -177740,84 +178431,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [92765] = 21, + [93510] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, - anon_sym_and, - ACTIONS(3487), 1, - anon_sym_xor, - ACTIONS(3489), 1, - anon_sym_or, - STATE(1831), 1, + ACTIONS(915), 1, + anon_sym_LF, + STATE(1843), 1, sym_comment, - STATE(2663), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2225), 2, + ACTIONS(913), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2227), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 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(3465), 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, - [92846] = 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, + sym_short_flag, + [93556] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3598), 1, - anon_sym_QMARK2, - STATE(1832), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, sym_comment, - ACTIONS(750), 2, + STATE(1882), 1, + aux_sym_cell_path_repeat1, + STATE(2152), 1, + sym_path, + ACTIONS(754), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(748), 33, + ACTIONS(752), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -177843,68 +178518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [92895] = 4, + [93608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(913), 1, + ACTIONS(883), 1, anon_sym_LF, - STATE(1833), 1, + STATE(1845), 1, sym_comment, - ACTIONS(911), 35, + ACTIONS(881), 34, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [92942] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3598), 1, - anon_sym_QMARK2, - STATE(1834), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(748), 33, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -177931,167 +178560,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [92991] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1835), 1, - sym_comment, - ACTIONS(779), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(777), 34, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [93038] = 4, - ACTIONS(3), 1, + [93654] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3602), 1, - anon_sym_LF, - STATE(1836), 1, + STATE(1846), 1, sym_comment, - ACTIONS(3600), 35, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(797), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(799), 30, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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, - sym_short_flag, - [93085] = 21, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, - anon_sym_and, - ACTIONS(3487), 1, - anon_sym_xor, - ACTIONS(3489), 1, - anon_sym_or, - STATE(1837), 1, - sym_comment, - STATE(2700), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2311), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2313), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, + anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, + 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, - [93166] = 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, + [93700] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1838), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1847), 1, sym_comment, - ACTIONS(779), 2, + STATE(2290), 1, + sym_cell_path, + ACTIONS(738), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(777), 34, + ACTIONS(736), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -178117,87 +178647,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [93213] = 21, - ACTIONS(3), 1, + [93752] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, + STATE(1848), 1, + sym_comment, + ACTIONS(797), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(3487), 1, anon_sym_xor, - ACTIONS(3489), 1, anon_sym_or, - STATE(1839), 1, - sym_comment, - STATE(2670), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2293), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(799), 24, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, + 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, - ACTIONS(3471), 4, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [93798] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, + anon_sym_LF, + STATE(1849), 1, + sym_comment, + ACTIONS(3353), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, + ACTIONS(3351), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [93294] = 7, + ACTIONS(801), 18, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + 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, + sym_short_flag, + [93854] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(311), 1, - anon_sym_DOT, - ACTIONS(734), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1790), 1, - aux_sym_cell_path_repeat1, - STATE(1840), 1, + STATE(1850), 1, sym_comment, - STATE(1966), 1, - sym_path, - ACTIONS(732), 32, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, @@ -178226,68 +178777,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93347] = 4, + sym_short_flag, + [93900] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1841), 1, - sym_comment, - ACTIONS(1404), 2, - ts_builtin_sym_end, + ACTIONS(803), 1, anon_sym_LF, - ACTIONS(1402), 33, + STATE(1851), 1, + sym_comment, + ACTIONS(3353), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 26, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, + anon_sym_GT, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_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, sym_short_flag, - [93393] = 7, + [93952] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1842), 1, + STATE(1852), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2324), 1, - sym_cell_path, - ACTIONS(746), 2, + ACTIONS(799), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(744), 30, + ACTIONS(797), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -178313,14 +178864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93445] = 4, + sym_short_flag, + [93998] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(839), 1, + ACTIONS(903), 1, anon_sym_LF, - STATE(1843), 1, + STATE(1853), 1, sym_comment, - ACTIONS(837), 34, + ACTIONS(901), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178355,14 +178907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93491] = 4, + [94044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(881), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1844), 1, + STATE(1854), 1, sym_comment, - ACTIONS(879), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178397,39 +178949,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93537] = 4, + [94090] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1845), 1, + STATE(1855), 1, sym_comment, - ACTIONS(891), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 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(3351), 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(801), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -178439,14 +178997,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93583] = 4, + [94148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, + STATE(1856), 1, + sym_comment, + ACTIONS(867), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1846), 1, + ACTIONS(865), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [94194] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, + anon_sym_LF, + STATE(1857), 1, sym_comment, - ACTIONS(903), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178481,14 +179081,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93629] = 4, + [94240] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(909), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1847), 1, + STATE(1858), 1, sym_comment, - ACTIONS(907), 34, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 28, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178497,12 +179105,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, @@ -178523,14 +179125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93675] = 4, + [94290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(847), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1848), 1, + STATE(1859), 1, sym_comment, - ACTIONS(845), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178565,12 +179167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93721] = 4, + [94336] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(925), 1, anon_sym_LF, - STATE(1849), 1, + STATE(1860), 1, sym_comment, ACTIONS(923), 34, anon_sym_SEMI, @@ -178607,14 +179209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93767] = 4, + [94382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, + ACTIONS(929), 1, anon_sym_LF, - STATE(1850), 1, + STATE(1861), 1, sym_comment, - ACTIONS(841), 34, + ACTIONS(927), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178649,14 +179251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93813] = 4, + [94428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(835), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1851), 1, + STATE(1862), 1, sym_comment, - ACTIONS(833), 34, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178666,8 +179271,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, @@ -178691,24 +179294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [93859] = 5, + [94476] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, + ACTIONS(831), 1, anon_sym_LF, - ACTIONS(3604), 1, - anon_sym_QMARK2, - STATE(1852), 1, + STATE(1863), 1, sym_comment, - ACTIONS(748), 33, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -178734,33 +179335,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93907] = 5, + sym_short_flag, + [94522] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(750), 1, + ACTIONS(803), 1, anon_sym_LF, - ACTIONS(3604), 1, - anon_sym_QMARK2, - STATE(1853), 1, + STATE(1864), 1, sym_comment, - ACTIONS(748), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3357), 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(801), 24, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, @@ -178777,22 +179381,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [93955] = 4, + sym_short_flag, + [94576] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(929), 1, - anon_sym_LF, - STATE(1854), 1, + STATE(1865), 1, sym_comment, - ACTIONS(927), 34, + ACTIONS(903), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(379), 3, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -178818,15 +179425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [94001] = 4, + [94624] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(929), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1855), 1, + STATE(1866), 1, sym_comment, - ACTIONS(927), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178861,14 +179467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94047] = 4, + [94670] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(875), 1, + ACTIONS(933), 1, anon_sym_LF, - STATE(1856), 1, + STATE(1867), 1, sym_comment, - ACTIONS(873), 34, + ACTIONS(931), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178903,56 +179509,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94093] = 4, + [94716] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(115), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1857), 1, + STATE(1868), 1, sym_comment, - ACTIONS(113), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_QMARK2, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 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(3351), 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(801), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [94139] = 4, + sym_short_flag, + [94776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(921), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1858), 1, + STATE(1869), 1, sym_comment, - ACTIONS(919), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -178987,14 +179600,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94185] = 4, + [94822] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1859), 1, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + STATE(1870), 1, sym_comment, - ACTIONS(103), 34, + ACTIONS(3353), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [94884] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, + anon_sym_LF, + STATE(1871), 1, + sym_comment, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179029,56 +179692,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94231] = 4, + [94930] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1860), 1, - sym_comment, - ACTIONS(855), 2, - ts_builtin_sym_end, + ACTIONS(803), 1, anon_sym_LF, - ACTIONS(853), 33, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + STATE(1872), 1, + sym_comment, + ACTIONS(3353), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3359), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3351), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 10, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_short_flag, - [94277] = 4, + [94994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(823), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1861), 1, + STATE(1873), 1, sym_comment, - ACTIONS(821), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179113,56 +179785,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94323] = 4, + [95040] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(871), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1862), 1, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + STATE(1874), 1, sym_comment, - ACTIONS(869), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3361), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3363), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3355), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 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(3351), 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, + ACTIONS(801), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [94369] = 4, + [95106] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(901), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1863), 1, + STATE(1875), 1, sym_comment, - ACTIONS(899), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179197,73 +179879,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94415] = 20, + [95152] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - ACTIONS(3620), 1, + ACTIONS(803), 1, + anon_sym_LF, + ACTIONS(3365), 1, anon_sym_bit_DASHand, - ACTIONS(3622), 1, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, - ACTIONS(3624), 1, + ACTIONS(3369), 1, anon_sym_bit_DASHor, - ACTIONS(3626), 1, + ACTIONS(3371), 1, anon_sym_and, - ACTIONS(3628), 1, - anon_sym_xor, - ACTIONS(3630), 1, - anon_sym_or, - STATE(1864), 1, + STATE(1876), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2389), 1, - sym_cell_path, - ACTIONS(3506), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3508), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3608), 2, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3614), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3616), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3618), 2, + ACTIONS(3363), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3610), 4, + ACTIONS(3355), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3612), 4, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3606), 6, + ACTIONS(3351), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [94493] = 4, + ACTIONS(801), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [95220] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1877), 1, sym_comment, - ACTIONS(1392), 2, + ACTIONS(1461), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1390), 33, + ACTIONS(1459), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -179297,14 +179974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [94539] = 4, + [95266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(889), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1866), 1, + STATE(1878), 1, sym_comment, - ACTIONS(887), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179339,98 +180016,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94585] = 4, + [95312] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(867), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(1867), 1, + ACTIONS(3365), 1, + anon_sym_bit_DASHand, + ACTIONS(3367), 1, + anon_sym_bit_DASHxor, + ACTIONS(3369), 1, + anon_sym_bit_DASHor, + ACTIONS(3371), 1, + anon_sym_and, + ACTIONS(3373), 1, + anon_sym_xor, + STATE(1879), 1, sym_comment, - ACTIONS(865), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3353), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3361), 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(3363), 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, - sym_short_flag, - [94631] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(863), 1, - anon_sym_LF, - STATE(1868), 1, - sym_comment, - ACTIONS(861), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(3355), 4, anon_sym_in, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3357), 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(3351), 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, + ACTIONS(801), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_or, sym_short_flag, - [94677] = 4, + [95382] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(897), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(1869), 1, + STATE(1880), 1, sym_comment, - ACTIONS(895), 34, + ACTIONS(829), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179465,34 +180112,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [94723] = 4, - ACTIONS(3), 1, + [95428] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(885), 1, - anon_sym_LF, - STATE(1870), 1, + STATE(1881), 1, sym_comment, - ACTIONS(883), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(793), 8, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(795), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -179506,20 +180151,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [94769] = 5, + [95474] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(1871), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1882), 1, sym_comment, - ACTIONS(851), 2, + STATE(1914), 1, + aux_sym_cell_path_repeat1, + STATE(2152), 1, + sym_path, + ACTIONS(742), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(371), 3, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 30, + ACTIONS(740), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -179550,34 +180199,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [94817] = 4, - ACTIONS(3), 1, + [95526] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1872), 1, + STATE(1883), 1, sym_comment, - ACTIONS(829), 34, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(787), 8, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(789), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -179591,112 +180238,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [94863] = 17, + [95572] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(803), 1, anon_sym_LF, - ACTIONS(3391), 1, + ACTIONS(3365), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3367), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, + ACTIONS(3369), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, + ACTIONS(3371), 1, anon_sym_and, - ACTIONS(3399), 1, + ACTIONS(3373), 1, anon_sym_xor, - ACTIONS(3401), 1, + ACTIONS(3375), 1, anon_sym_or, - STATE(1873), 1, + STATE(1884), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(3353), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3359), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3361), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3363), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3381), 4, + ACTIONS(3355), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 6, + ACTIONS(801), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_DASH_DASH, anon_sym_RBRACE, sym_short_flag, - ACTIONS(3377), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [94935] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3632), 1, - anon_sym_DOT, - STATE(2149), 1, - sym_path, - ACTIONS(701), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1874), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3351), 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, - [94985] = 4, + [95644] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(831), 1, anon_sym_LF, - STATE(1875), 1, + STATE(1885), 1, sym_comment, ACTIONS(829), 34, anon_sym_SEMI, @@ -179733,68 +180338,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95031] = 16, + [95690] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3391), 1, + ACTIONS(355), 1, + anon_sym_DOT, + ACTIONS(3630), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3632), 1, anon_sym_bit_DASHxor, - ACTIONS(3395), 1, + ACTIONS(3634), 1, anon_sym_bit_DASHor, - ACTIONS(3397), 1, + ACTIONS(3636), 1, anon_sym_and, - ACTIONS(3399), 1, + ACTIONS(3638), 1, anon_sym_xor, - STATE(1876), 1, + ACTIONS(3640), 1, + anon_sym_or, + STATE(1844), 1, + sym_path, + STATE(1886), 1, sym_comment, - ACTIONS(3379), 2, + STATE(2411), 1, + sym_cell_path, + ACTIONS(3578), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3580), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3618), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3624), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3626), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3628), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3381), 4, + ACTIONS(3620), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3622), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, + ACTIONS(3616), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_or, - sym_short_flag, - [95101] = 4, + [95768] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(941), 1, anon_sym_LF, - STATE(1877), 1, + STATE(1887), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(939), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -179829,133 +180438,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95147] = 15, + [95814] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(937), 1, anon_sym_LF, - ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - ACTIONS(3397), 1, - anon_sym_and, - STATE(1878), 1, + STATE(1888), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(935), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3381), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 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(3377), 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(793), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [95215] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - ACTIONS(3649), 1, + 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(3651), 1, anon_sym_bit_DASHxor, - ACTIONS(3653), 1, anon_sym_bit_DASHor, - ACTIONS(3655), 1, anon_sym_and, - ACTIONS(3657), 1, anon_sym_xor, - ACTIONS(3659), 1, anon_sym_or, - STATE(1879), 1, + sym_short_flag, + [95860] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1889), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2333), 1, - sym_cell_path, - ACTIONS(3536), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3538), 2, + ACTIONS(1449), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3637), 2, + ACTIONS(1447), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3643), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3645), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3647), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3639), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3641), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3635), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [95293] = 4, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [95906] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1880), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1890), 1, sym_comment, - ACTIONS(829), 34, + STATE(2383), 1, + sym_cell_path, + ACTIONS(715), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(713), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -179981,79 +180567,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95339] = 14, - ACTIONS(3), 1, + [95958] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3391), 1, - anon_sym_bit_DASHand, - ACTIONS(3393), 1, - anon_sym_bit_DASHxor, - ACTIONS(3395), 1, - anon_sym_bit_DASHor, - STATE(1881), 1, + STATE(1891), 1, sym_comment, - ACTIONS(3379), 2, - anon_sym_DASH, + ACTIONS(793), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3385), 2, + anon_sym_LT2, + ACTIONS(795), 30, + 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_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3381), 4, - anon_sym_in, + 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, - ACTIONS(3383), 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, + [96004] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1892), 1, + sym_comment, + ACTIONS(787), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(789), 30, + 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_DOT, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, + 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(793), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, - sym_short_flag, - [95405] = 7, + [96050] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1874), 1, - aux_sym_cell_path_repeat1, - STATE(1882), 1, - sym_comment, - STATE(2149), 1, - sym_path, - ACTIONS(734), 2, - ts_builtin_sym_end, + ACTIONS(867), 1, anon_sym_LF, - ACTIONS(732), 30, + STATE(1893), 1, + sym_comment, + ACTIONS(865), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180079,22 +180692,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [95457] = 4, + sym_short_flag, + [96096] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1883), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1894), 1, sym_comment, - ACTIONS(829), 34, + STATE(2339), 1, + sym_cell_path, + ACTIONS(719), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(717), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180120,74 +180738,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95503] = 13, + [96148] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1895), 1, + sym_comment, + ACTIONS(3642), 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, + [96192] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1896), 1, + sym_comment, + STATE(2811), 1, + sym_flat_type, + ACTIONS(3200), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [96238] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3391), 1, + ACTIONS(355), 1, + anon_sym_DOT, + ACTIONS(3658), 1, anon_sym_bit_DASHand, - ACTIONS(3393), 1, + ACTIONS(3660), 1, anon_sym_bit_DASHxor, - STATE(1884), 1, + ACTIONS(3662), 1, + anon_sym_bit_DASHor, + ACTIONS(3664), 1, + anon_sym_and, + ACTIONS(3666), 1, + anon_sym_xor, + ACTIONS(3668), 1, + anon_sym_or, + STATE(1844), 1, + sym_path, + STATE(1897), 1, sym_comment, - ACTIONS(3379), 2, + STATE(2328), 1, + sym_cell_path, + ACTIONS(3548), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3550), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3646), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3385), 2, + ACTIONS(3652), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + ACTIONS(3654), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, + ACTIONS(3656), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3381), 4, + ACTIONS(3648), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3383), 4, + ACTIONS(3650), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, + ACTIONS(3644), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [95567] = 4, + [96316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1885), 1, + STATE(1898), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(787), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180214,38 +180921,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95613] = 7, - ACTIONS(3), 1, + [96362] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1886), 1, + STATE(1899), 1, sym_comment, - STATE(1926), 1, - sym_cell_path, - STATE(1929), 1, - sym_path, - ACTIONS(718), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(716), 30, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(793), 11, + 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(795), 24, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_DOT, + 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, @@ -180256,75 +180960,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96408] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1900), 1, + sym_comment, + STATE(2794), 1, + sym_flat_type, + ACTIONS(3200), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [96454] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1901), 1, + sym_comment, + ACTIONS(787), 11, + sym_identifier, + 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, - [95665] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3391), 1, - anon_sym_bit_DASHand, - STATE(1887), 1, - sym_comment, - ACTIONS(3379), 2, + ACTIONS(789), 24, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, + anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3381), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3377), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, - sym_short_flag, - [95727] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96500] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1888), 1, + STATE(1902), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180351,48 +181089,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95773] = 11, + [96546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(1889), 1, + STATE(1903), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(103), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3389), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3381), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 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(3377), 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(793), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, @@ -180400,22 +181131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95833] = 4, + [96592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(1890), 1, + STATE(1904), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(895), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(893), 33, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180441,36 +181170,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95879] = 8, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [96638] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(887), 1, anon_sym_LF, - STATE(1891), 1, + STATE(1905), 1, sym_comment, - ACTIONS(3379), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3383), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 24, + ACTIONS(885), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, 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, @@ -180488,23 +181215,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [95933] = 4, + [96684] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(115), 1, anon_sym_LF, - STATE(1892), 1, + STATE(1906), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(113), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -180529,27 +181257,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [95979] = 5, + [96730] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(1893), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1904), 1, + sym_cell_path, + STATE(1907), 1, sym_comment, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(793), 32, + ACTIONS(750), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(748), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - 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, @@ -180572,15 +181302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96027] = 4, + [96782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(835), 1, anon_sym_LF, - STATE(1894), 1, + STATE(1908), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(833), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -180615,22 +181344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96073] = 6, + [96828] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(835), 1, anon_sym_LF, - STATE(1895), 1, + STATE(1909), 1, sym_comment, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3383), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 28, + ACTIONS(833), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -180639,6 +181360,12 @@ 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, @@ -180659,14 +181386,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96123] = 4, + [96874] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(839), 1, anon_sym_LF, - STATE(1896), 1, + STATE(1910), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(837), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -180701,45 +181428,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96169] = 10, + [96920] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(843), 1, anon_sym_LF, - STATE(1897), 1, + STATE(1911), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(841), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3381), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3383), 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(3377), 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(793), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, @@ -180749,14 +181470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96227] = 4, + [96966] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(847), 1, anon_sym_LF, - STATE(1898), 1, + STATE(1912), 1, sym_comment, - ACTIONS(829), 34, + ACTIONS(845), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -180791,32 +181512,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96273] = 7, + [97012] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(1899), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1913), 1, sym_comment, - ACTIONS(3379), 2, + STATE(2338), 1, + sym_cell_path, + ACTIONS(727), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(725), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3383), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -180835,23 +181557,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96325] = 4, + [97064] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(3670), 1, + anon_sym_DOT, + STATE(2152), 1, + sym_path, + ACTIONS(731), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1900), 1, + STATE(1914), 2, sym_comment, - ACTIONS(829), 34, + aux_sym_cell_path_repeat1, + ACTIONS(729), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180877,42 +181601,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96371] = 9, + [97114] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(851), 1, anon_sym_LF, - STATE(1901), 1, + STATE(1915), 1, sym_comment, - ACTIONS(3379), 2, + ACTIONS(849), 34, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3385), 2, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3387), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3383), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3377), 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(793), 18, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -180925,22 +181643,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96427] = 4, + [97160] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(913), 1, - anon_sym_LF, - STATE(1902), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1916), 1, sym_comment, - ACTIONS(911), 34, + STATE(2388), 1, + sym_cell_path, + ACTIONS(723), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(721), 30, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -180966,15 +181688,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96473] = 4, + [97212] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(933), 1, + ACTIONS(855), 1, anon_sym_LF, - STATE(1903), 1, + STATE(1917), 1, sym_comment, - ACTIONS(931), 34, + ACTIONS(853), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -181009,53 +181730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96519] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1904), 1, - sym_comment, - ACTIONS(3661), 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, - [96563] = 4, + [97258] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(859), 1, anon_sym_LF, - STATE(1905), 1, + STATE(1918), 1, sym_comment, ACTIONS(857), 34, anon_sym_SEMI, @@ -181092,106 +181772,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96609] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1906), 1, - sym_comment, - STATE(2785), 1, - sym_flat_type, - ACTIONS(3181), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [96655] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1907), 1, - sym_comment, - STATE(2807), 1, - sym_flat_type, - ACTIONS(3181), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [96701] = 4, + [97304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1908), 1, - sym_comment, - ACTIONS(791), 2, - ts_builtin_sym_end, + ACTIONS(863), 1, anon_sym_LF, - ACTIONS(789), 33, + STATE(1919), 1, + sym_comment, + ACTIONS(861), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -181218,14 +181814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96747] = 4, + [97350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(851), 1, + ACTIONS(871), 1, anon_sym_LF, - STATE(1909), 1, + STATE(1920), 1, sym_comment, - ACTIONS(849), 34, + ACTIONS(869), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -181260,26 +181856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96793] = 7, + [97396] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1910), 1, - sym_comment, - STATE(1929), 1, - sym_path, - STATE(2367), 1, - sym_cell_path, - ACTIONS(726), 2, - ts_builtin_sym_end, + ACTIONS(875), 1, anon_sym_LF, - ACTIONS(724), 30, + STATE(1921), 1, + sym_comment, + ACTIONS(873), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -181305,22 +181897,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [96845] = 4, + sym_short_flag, + [97442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1911), 1, - sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, + ACTIONS(879), 1, anon_sym_LF, - ACTIONS(781), 33, + STATE(1922), 1, + sym_comment, + ACTIONS(877), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -181347,21 +181940,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96891] = 4, + [97488] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(1912), 1, - sym_comment, - ACTIONS(779), 2, - ts_builtin_sym_end, + ACTIONS(771), 1, anon_sym_LF, - ACTIONS(777), 33, + ACTIONS(3614), 1, + anon_sym_QMARK2, + STATE(1923), 1, + sym_comment, + ACTIONS(769), 33, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -181388,15 +181983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [96937] = 4, + [97536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(891), 1, anon_sym_LF, - STATE(1913), 1, + STATE(1924), 1, sym_comment, - ACTIONS(853), 34, + ACTIONS(889), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -181431,26 +182025,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [96983] = 7, + [97582] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1914), 1, + STATE(1925), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2318), 1, - sym_cell_path, - ACTIONS(714), 2, + ACTIONS(3546), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(712), 30, + ACTIONS(3544), 33, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + 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, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + anon_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, + sym_short_flag, + [97628] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(907), 1, + anon_sym_LF, + STATE(1926), 1, + sym_comment, + ACTIONS(905), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -181476,35 +182108,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97035] = 4, - ACTIONS(143), 1, + sym_short_flag, + [97674] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(899), 1, + anon_sym_LF, + STATE(1927), 1, sym_comment, - ACTIONS(789), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(791), 30, - anon_sym_COMMA, + ACTIONS(897), 34, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_GT, + 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_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, @@ -181518,15 +182150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97081] = 4, + sym_short_flag, + [97720] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1916), 1, + STATE(1928), 1, sym_comment, - ACTIONS(3602), 2, + ACTIONS(929), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3600), 33, + ACTIONS(927), 33, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LPAREN, @@ -181560,26 +182193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, sym_short_flag, - [97127] = 7, + [97766] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1917), 1, - sym_comment, - STATE(1929), 1, - sym_path, - STATE(2397), 1, - sym_cell_path, - ACTIONS(742), 2, - ts_builtin_sym_end, + ACTIONS(911), 1, anon_sym_LF, - ACTIONS(740), 30, + STATE(1929), 1, + sym_comment, + ACTIONS(909), 34, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -181605,74 +182234,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97179] = 4, - ACTIONS(143), 1, + sym_short_flag, + [97812] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1918), 1, - sym_comment, - ACTIONS(789), 11, - sym_identifier, - 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(791), 24, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(355), 1, anon_sym_DOT, - 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97225] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1919), 1, + STATE(1844), 1, + sym_path, + STATE(1930), 1, sym_comment, - ACTIONS(781), 8, + STATE(2396), 1, + sym_cell_path, + ACTIONS(746), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(744), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(783), 27, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + 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, @@ -181686,35 +182280,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [97271] = 4, - ACTIONS(143), 1, + [97864] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1920), 1, + ACTIONS(355), 1, + anon_sym_DOT, + STATE(1844), 1, + sym_path, + STATE(1931), 1, sym_comment, - ACTIONS(777), 8, + STATE(2407), 1, + sym_cell_path, + ACTIONS(709), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(707), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_DOT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - anon_sym_DOT_DOT, - ACTIONS(779), 27, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + 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, @@ -181728,38 +182325,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [97317] = 4, - ACTIONS(143), 1, + [97916] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1921), 1, + STATE(1932), 1, sym_comment, - ACTIONS(781), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(783), 30, - anon_sym_COMMA, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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_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, @@ -181773,150 +182365,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97363] = 4, - ACTIONS(143), 1, + sym_short_flag, + [97961] = 23, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1922), 1, - sym_comment, - ACTIONS(777), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(779), 30, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3681), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - 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, + ACTIONS(3695), 1, anon_sym_bit_DASHand, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, + ACTIONS(3699), 1, anon_sym_bit_DASHor, + ACTIONS(3701), 1, anon_sym_and, + ACTIONS(3703), 1, anon_sym_xor, + ACTIONS(3705), 1, anon_sym_or, - [97409] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1923), 1, + ACTIONS(3707), 1, + sym_short_flag, + STATE(629), 1, + sym_block, + STATE(1933), 1, sym_comment, - ACTIONS(781), 11, - sym_identifier, + STATE(2994), 1, + sym_long_flag, + STATE(3459), 1, + sym__flag, + ACTIONS(3673), 2, 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(783), 24, - anon_sym_COMMA, + ACTIONS(3677), 2, anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, 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, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97455] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1924), 1, - sym_comment, - ACTIONS(777), 11, - sym_identifier, - anon_sym_GT, + ACTIONS(3679), 4, 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(779), 24, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97501] = 7, + [98044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1925), 1, + STATE(1934), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2293), 1, - sym_cell_path, - ACTIONS(738), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(736), 30, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -181944,66 +182466,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97553] = 4, + sym_short_flag, + [98089] = 12, ACTIONS(3), 1, anon_sym_POUND, - STATE(1926), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + STATE(1935), 1, sym_comment, - ACTIONS(827), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(825), 33, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3483), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 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(3481), 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(801), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [97599] = 7, + sym_short_flag, + [98150] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1927), 1, + STATE(1936), 1, sym_comment, - STATE(1929), 1, - sym_path, - STATE(2395), 1, - sym_cell_path, - ACTIONS(722), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(720), 30, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -182031,66 +182556,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97651] = 4, + sym_short_flag, + [98195] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(1928), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + STATE(1937), 1, sym_comment, - ACTIONS(913), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(911), 33, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 8, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_PIPE, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - 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, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - anon_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_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, sym_short_flag, - [97697] = 7, + [98258] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1882), 1, - aux_sym_cell_path_repeat1, - STATE(1929), 1, + STATE(1938), 1, sym_comment, - STATE(2149), 1, - sym_path, - ACTIONS(730), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(728), 30, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, anon_sym_STAR, @@ -182118,60 +182647,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97749] = 7, + sym_short_flag, + [98303] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(347), 1, - anon_sym_DOT, - STATE(1929), 1, - sym_path, - STATE(1930), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + STATE(1939), 1, sym_comment, - STATE(2412), 1, - sym_cell_path, - ACTIONS(708), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(706), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3483), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 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(3481), 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, + ACTIONS(801), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_and, anon_sym_xor, anon_sym_or, - [97801] = 4, + sym_short_flag, + [98368] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1931), 1, + STATE(1940), 1, sym_comment, - ACTIONS(855), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(853), 32, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -182204,15 +182740,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97846] = 4, + [98413] = 15, ACTIONS(3), 1, anon_sym_POUND, - STATE(1932), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + STATE(1941), 1, sym_comment, - ACTIONS(925), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(923), 32, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [98480] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1942), 1, + sym_comment, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -182245,84 +182833,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [97891] = 13, - ACTIONS(143), 1, + [98525] = 16, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + STATE(1943), 1, + sym_comment, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, - ACTIONS(3675), 1, anon_sym_PLUS, - STATE(1933), 1, - sym_comment, - ACTIONS(3663), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_or, + sym_short_flag, + ACTIONS(3481), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 12, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [97954] = 4, - ACTIONS(143), 1, + [98594] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1934), 1, + STATE(1944), 1, sym_comment, - ACTIONS(829), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(831), 29, - anon_sym_COMMA, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -182336,81 +182926,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [97999] = 10, - ACTIONS(143), 1, + sym_short_flag, + [98639] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3495), 1, + anon_sym_bit_DASHand, + ACTIONS(3497), 1, + anon_sym_bit_DASHxor, + ACTIONS(3499), 1, + anon_sym_bit_DASHor, + ACTIONS(3501), 1, + anon_sym_and, + ACTIONS(3503), 1, + anon_sym_xor, + ACTIONS(3505), 1, + anon_sym_or, + STATE(1945), 1, + sym_comment, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, - ACTIONS(3675), 1, anon_sym_PLUS, - STATE(1935), 1, - sym_comment, - ACTIONS(793), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(795), 22, - anon_sym_COMMA, + ACTIONS(3493), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(801), 4, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + ACTIONS(3485), 4, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [98056] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1936), 1, - sym_comment, - ACTIONS(829), 5, - anon_sym_GT, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(831), 29, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [98710] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1946), 1, + sym_comment, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -182424,30 +183021,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98101] = 5, - ACTIONS(143), 1, + sym_short_flag, + [98755] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1947), 1, sym_comment, - ACTIONS(3671), 2, + ACTIONS(3709), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(793), 5, + ACTIONS(801), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(795), 27, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 21, 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_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -182463,32 +183061,32 @@ 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, - [98148] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98802] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1948), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(829), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 23, 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, @@ -182504,36 +183102,36 @@ 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, - [98193] = 7, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98847] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + STATE(1949), 1, sym_comment, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3709), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 3, + ACTIONS(801), 8, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(795), 25, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 20, 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_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -182548,32 +183146,32 @@ 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, - [98244] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98898] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1950), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(829), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 23, 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, @@ -182589,81 +183187,83 @@ 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, - [98289] = 12, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98943] = 14, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, anon_sym_PLUS, - STATE(1941), 1, + STATE(1951), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3711), 3, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3667), 4, - anon_sym_in, + ACTIONS(3727), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3725), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 14, + ACTIONS(803), 10, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - 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, - [98350] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99008] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1942), 1, + STATE(1952), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(829), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 23, 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, @@ -182679,38 +183279,38 @@ 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, - [98395] = 9, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99053] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3721), 1, anon_sym_PLUS, - STATE(1943), 1, + STATE(1953), 1, sym_comment, - ACTIONS(793), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3709), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(795), 24, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(801), 7, + sym_identifier, + anon_sym_GT, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, + anon_sym_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 19, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -182725,37 +183325,77 @@ 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, - [98450] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99108] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1954), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(829), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 23, anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99153] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1955), 1, + sym_comment, + ACTIONS(937), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(935), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -182769,43 +183409,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98495] = 11, - ACTIONS(143), 1, + sym_short_flag, + [99198] = 12, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3721), 1, anon_sym_PLUS, - STATE(1945), 1, + STATE(1956), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3711), 3, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3679), 4, + ACTIONS(3725), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 18, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(801), 5, + sym_identifier, anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 13, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -182814,37 +183456,37 @@ 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, - [98554] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99259] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1957), 1, sym_comment, - ACTIONS(770), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(768), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(889), 11, + sym_identifier, anon_sym_GT, - anon_sym_DASH, anon_sym_in, - anon_sym_DOT, 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(891), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, @@ -182855,32 +183497,32 @@ 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, - [98599] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99304] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1958), 1, sym_comment, - ACTIONS(891), 5, + ACTIONS(897), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(893), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(899), 23, 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, @@ -182896,21 +183538,21 @@ 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, - [98644] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99349] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1948), 1, + STATE(1959), 1, sym_comment, - ACTIONS(873), 5, + ACTIONS(935), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(875), 29, + ACTIONS(937), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -182940,29 +183582,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98689] = 4, - ACTIONS(143), 1, + [99394] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1949), 1, + STATE(1960), 1, sym_comment, - ACTIONS(841), 5, + ACTIONS(905), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(843), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(907), 23, 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, @@ -182978,32 +183620,32 @@ 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, - [98734] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99439] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1950), 1, + STATE(1961), 1, sym_comment, - ACTIONS(837), 5, + ACTIONS(909), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(839), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(911), 23, 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, @@ -183019,32 +183661,32 @@ 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, - [98779] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99484] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1962), 1, sym_comment, - ACTIONS(911), 5, + ACTIONS(881), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(913), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(883), 23, 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, @@ -183060,37 +183702,37 @@ 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, - [98824] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99529] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1952), 1, + ACTIONS(799), 1, + anon_sym_LF, + STATE(1963), 1, sym_comment, - ACTIONS(931), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(933), 29, - anon_sym_COMMA, + ACTIONS(797), 33, + 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_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, @@ -183104,25 +183746,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98869] = 7, - ACTIONS(143), 1, + [99574] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, + ACTIONS(3729), 1, anon_sym_DOT, - STATE(1953), 1, + STATE(1964), 1, sym_comment, - STATE(1994), 1, + STATE(2120), 1, sym_path, - STATE(2445), 1, + STATE(2426), 1, sym_cell_path, - ACTIONS(706), 6, + ACTIONS(707), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(708), 25, + ACTIONS(709), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -183148,34 +183790,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [98920] = 4, - ACTIONS(143), 1, + [99625] = 23, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, + anon_sym_and, + ACTIONS(3703), 1, + anon_sym_xor, + ACTIONS(3705), 1, + anon_sym_or, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(570), 1, + sym_block, + STATE(1965), 1, sym_comment, - ACTIONS(821), 5, + STATE(2994), 1, + sym_long_flag, + STATE(3440), 1, + sym__flag, + ACTIONS(3673), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(823), 29, - anon_sym_COMMA, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [99708] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3733), 1, + anon_sym_QMARK2, + STATE(1966), 1, + sym_comment, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 31, + 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_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, @@ -183189,29 +183892,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [98965] = 4, - ACTIONS(143), 1, + [99755] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1955), 1, + STATE(1967), 1, sym_comment, - ACTIONS(879), 5, + ACTIONS(901), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(881), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(903), 23, 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, @@ -183227,29 +183930,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [99800] = 23, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, anon_sym_and, + ACTIONS(3703), 1, anon_sym_xor, + ACTIONS(3705), 1, anon_sym_or, - [99010] = 4, - ACTIONS(143), 1, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(548), 1, + sym_block, + STATE(1968), 1, + sym_comment, + STATE(2994), 1, + sym_long_flag, + STATE(3452), 1, + sym__flag, + ACTIONS(3673), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [99883] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1956), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(1969), 1, sym_comment, - ACTIONS(903), 5, + STATE(2120), 1, + sym_path, + STATE(2427), 1, + sym_cell_path, + ACTIONS(725), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(905), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(727), 25, + anon_sym_DASH_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, @@ -183271,34 +184036,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99055] = 4, - ACTIONS(143), 1, + sym_short_flag, + [99934] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1957), 1, + ACTIONS(789), 1, + anon_sym_LF, + STATE(1970), 1, sym_comment, - ACTIONS(869), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(871), 29, - anon_sym_COMMA, + ACTIONS(787), 33, + 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_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, @@ -183312,75 +184078,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99100] = 4, - ACTIONS(143), 1, + [99979] = 23, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1958), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, + anon_sym_and, + ACTIONS(3703), 1, + anon_sym_xor, + ACTIONS(3705), 1, + anon_sym_or, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_block, + STATE(1971), 1, sym_comment, - ACTIONS(861), 5, + STATE(2994), 1, + sym_long_flag, + STATE(3434), 1, + sym__flag, + ACTIONS(3673), 2, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, anon_sym_LT2, - ACTIONS(863), 29, - anon_sym_COMMA, - anon_sym_PIPE, + ACTIONS(3677), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + [100062] = 18, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_PLUS, + ACTIONS(3737), 1, + anon_sym_bit_DASHand, + ACTIONS(3739), 1, + anon_sym_bit_DASHxor, + ACTIONS(3741), 1, + anon_sym_bit_DASHor, + STATE(1972), 1, + sym_comment, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3725), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [100135] = 23, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3695), 1, anon_sym_bit_DASHand, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, + ACTIONS(3699), 1, anon_sym_bit_DASHor, + ACTIONS(3701), 1, anon_sym_and, + ACTIONS(3703), 1, anon_sym_xor, + ACTIONS(3705), 1, anon_sym_or, - [99145] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(1959), 1, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(543), 1, + sym_block, + STATE(1973), 1, sym_comment, - ACTIONS(857), 5, + STATE(2994), 1, + sym_long_flag, + STATE(3455), 1, + sym__flag, + ACTIONS(3673), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(859), 29, - anon_sym_COMMA, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [100218] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1974), 1, + sym_comment, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -183394,95 +184293,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99190] = 23, - ACTIONS(143), 1, + sym_short_flag, + [100263] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - STATE(618), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(589), 1, sym_block, - STATE(1960), 1, + STATE(1975), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3431), 1, + STATE(3456), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [99273] = 6, - ACTIONS(143), 1, + [100346] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3721), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_path, - STATE(1961), 2, + ACTIONS(795), 1, + anon_sym_LF, + STATE(1976), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(699), 6, + ACTIONS(793), 33, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(701), 25, - anon_sym_DASH_DASH, anon_sym_in, - anon_sym_LBRACE, + 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_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, @@ -183496,215 +184395,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [99322] = 23, - ACTIONS(143), 1, + [100391] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - STATE(601), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(587), 1, sym_block, - STATE(1962), 1, + STATE(1977), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3426), 1, + STATE(3443), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [99405] = 23, - ACTIONS(143), 1, + [100474] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - STATE(600), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(586), 1, sym_block, - STATE(1963), 1, + STATE(1978), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3425), 1, + STATE(3438), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [99488] = 23, - ACTIONS(143), 1, + [100557] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3693), 1, + STATE(1979), 1, + sym_comment, + ACTIONS(849), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(851), 29, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, - ACTIONS(3707), 1, + 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, - ACTIONS(3709), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, anon_sym_and, - ACTIONS(3715), 1, anon_sym_xor, - ACTIONS(3717), 1, anon_sym_or, - ACTIONS(3719), 1, + [100602] = 23, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, + anon_sym_and, + ACTIONS(3703), 1, + anon_sym_xor, + ACTIONS(3705), 1, + anon_sym_or, + ACTIONS(3707), 1, sym_short_flag, - STATE(598), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(601), 1, sym_block, - STATE(1964), 1, + STATE(1980), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3440), 1, + STATE(3428), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [99571] = 4, - ACTIONS(143), 1, + [100685] = 16, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1965), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, + anon_sym_bit_DASHand, + ACTIONS(3765), 1, + anon_sym_bit_DASHxor, + ACTIONS(3767), 1, + anon_sym_bit_DASHor, + STATE(1981), 1, sym_comment, - ACTIONS(899), 5, + ACTIONS(3743), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(901), 29, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 9, 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_and, + anon_sym_xor, + anon_sym_or, + [100754] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1982), 1, + sym_comment, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 22, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + 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, @@ -183718,21 +184713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99616] = 4, + sym_short_flag, + [100807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_LF, - STATE(1966), 1, + ACTIONS(3733), 1, + anon_sym_QMARK2, + STATE(1983), 1, sym_comment, - ACTIONS(781), 33, + ACTIONS(771), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(769), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, @@ -183759,34 +184756,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99661] = 4, - ACTIONS(143), 1, + [100854] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1967), 1, + STATE(1984), 1, sym_comment, - ACTIONS(849), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(851), 29, - anon_sym_COMMA, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -183800,35 +184796,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99706] = 6, - ACTIONS(143), 1, + sym_short_flag, + [100899] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(691), 1, - anon_sym_DOT_DOT, - STATE(1968), 1, + STATE(1985), 1, sym_comment, - ACTIONS(689), 2, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - ACTIONS(849), 6, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 30, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(851), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - 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, @@ -183843,34 +184839,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [99755] = 4, - ACTIONS(143), 1, + [100946] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1969), 1, + STATE(1986), 1, sym_comment, - ACTIONS(923), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(925), 29, - anon_sym_COMMA, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -183884,34 +184879,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99800] = 4, - ACTIONS(143), 1, + sym_short_flag, + [100991] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1970), 1, + STATE(1987), 1, sym_comment, - ACTIONS(833), 5, - anon_sym_GT, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3489), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3487), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(835), 29, - anon_sym_COMMA, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 26, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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_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, @@ -183925,23 +184922,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99845] = 4, + sym_short_flag, + [101040] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(1971), 1, + STATE(1988), 1, sym_comment, - ACTIONS(115), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(113), 32, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, anon_sym_STAR, - anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_SLASH, @@ -183966,38 +184963,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99890] = 4, + sym_short_flag, + [101085] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(1972), 1, + STATE(1989), 1, sym_comment, - ACTIONS(851), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(849), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3483), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3485), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3487), 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(3481), 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(801), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -184007,34 +185011,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [99935] = 4, - ACTIONS(143), 1, + [101142] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1973), 1, + STATE(1990), 1, sym_comment, - ACTIONS(895), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(897), 29, - anon_sym_COMMA, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -184048,89 +185051,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [99980] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, sym_short_flag, - STATE(568), 1, - sym_block, - STATE(1974), 1, + [101187] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(1991), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3435), 1, - sym__flag, - ACTIONS(3685), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3483), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [100063] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_LF, - STATE(1975), 1, - sym_comment, - ACTIONS(777), 33, + ACTIONS(801), 24, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH, + anon_sym_DASH_DASH, 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_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -184149,18 +185095,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100108] = 4, - ACTIONS(143), 1, + sym_short_flag, + [101238] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1976), 1, + STATE(1992), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(845), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + ACTIONS(847), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -184190,35 +185137,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100153] = 4, + [101283] = 9, ACTIONS(3), 1, anon_sym_POUND, - STATE(1977), 1, + STATE(1993), 1, sym_comment, - ACTIONS(913), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(911), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(3483), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3491), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3487), 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(3481), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(801), 16, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -184231,29 +185183,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [100198] = 4, - ACTIONS(143), 1, + [101338] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1978), 1, + STATE(1994), 1, sym_comment, - ACTIONS(927), 5, + ACTIONS(829), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(929), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(831), 23, 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, @@ -184269,35 +185221,41 @@ 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, - [100243] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101383] = 10, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1979), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3721), 1, + anon_sym_PLUS, + STATE(1995), 1, sym_comment, - ACTIONS(927), 5, - anon_sym_GT, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3711), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + ACTIONS(801), 7, + sym_identifier, + anon_sym_GT, + anon_sym_in, anon_sym_LT2, - ACTIONS(929), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(803), 17, 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, @@ -184310,15 +185268,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, - [100288] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101440] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(1996), 1, sym_comment, - ACTIONS(849), 11, + ACTIONS(829), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -184330,7 +185288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(851), 23, + ACTIONS(831), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -184354,34 +185312,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100333] = 4, - ACTIONS(3), 1, + [101485] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(791), 1, - anon_sym_LF, - STATE(1981), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(1997), 1, sym_comment, - ACTIONS(789), 33, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + STATE(2120), 1, + sym_path, + STATE(2456), 1, + sym_cell_path, + ACTIONS(717), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_DOT, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(719), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -184395,12 +185355,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [100378] = 4, - ACTIONS(143), 1, + sym_short_flag, + [101536] = 15, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1982), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_PLUS, + STATE(1998), 1, sym_comment, - ACTIONS(857), 11, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3725), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101603] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(1999), 1, + sym_comment, + ACTIONS(829), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -184412,7 +185425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(859), 23, + ACTIONS(831), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -184436,25 +185449,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100423] = 4, - ACTIONS(143), 1, + [101648] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1983), 1, + ACTIONS(699), 1, + anon_sym_DOT_DOT, + STATE(2000), 1, sym_comment, - ACTIONS(789), 7, - anon_sym_EQ, + ACTIONS(697), 2, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + ACTIONS(901), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(791), 27, - anon_sym_COLON, + ACTIONS(903), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, - anon_sym_DOT, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -184477,100 +185492,348 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [100468] = 19, - ACTIONS(3), 1, + [101697] = 16, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3726), 1, - anon_sym_LF, - ACTIONS(3743), 1, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_PLUS, + ACTIONS(3737), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + STATE(2001), 1, + sym_comment, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3725), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 7, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101766] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2002), 1, + sym_comment, + ACTIONS(829), 11, + sym_identifier, + anon_sym_GT, + anon_sym_in, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_PLUS, + anon_sym_LT2, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, - STATE(1984), 1, - sym_comment, - ACTIONS(3731), 2, + ACTIONS(831), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, + anon_sym_RBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 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(3724), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(3733), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101811] = 17, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, anon_sym_in, + ACTIONS(3721), 1, + anon_sym_PLUS, + ACTIONS(3737), 1, + anon_sym_bit_DASHand, + ACTIONS(3739), 1, + anon_sym_bit_DASHxor, + STATE(2003), 1, + sym_comment, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(801), 4, + sym_identifier, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3725), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101882] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2004), 1, + sym_comment, + ACTIONS(829), 11, + sym_identifier, + 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(831), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, - anon_sym_GT, + 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, - [100543] = 12, - ACTIONS(143), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [101927] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3757), 1, + STATE(2005), 1, + sym_comment, + ACTIONS(103), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(105), 29, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, - ACTIONS(3763), 1, + 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, - ACTIONS(3765), 1, - anon_sym_PLUS, - STATE(1985), 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, + [101972] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2006), 1, sym_comment, - ACTIONS(3755), 2, + ACTIONS(885), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3761), 2, + ACTIONS(887), 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, - ACTIONS(3767), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3759), 3, + 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, + [102017] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2007), 1, + sym_comment, + ACTIONS(929), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(927), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + 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, - ACTIONS(3769), 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(793), 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, + sym_short_flag, + [102062] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2008), 1, + sym_comment, + ACTIONS(857), 11, sym_identifier, + 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(795), 13, + ACTIONS(859), 23, anon_sym_COMMA, + anon_sym_DASH, anon_sym_RBRACE, + 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, @@ -184582,10 +185845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100604] = 4, - ACTIONS(143), 1, + [102107] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1986), 1, + STATE(2009), 1, sym_comment, ACTIONS(829), 11, sym_identifier, @@ -184623,56 +185886,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100649] = 9, - ACTIONS(143), 1, + [102152] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - STATE(1987), 1, + STATE(2010), 1, sym_comment, - ACTIONS(3761), 2, + ACTIONS(781), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(779), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3759), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(793), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, + 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(795), 19, + [102197] = 15, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, + anon_sym_bit_DASHand, + ACTIONS(3765), 1, + anon_sym_bit_DASHxor, + STATE(2011), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 10, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [102264] = 19, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, + anon_sym_PLUS, + ACTIONS(3737), 1, + anon_sym_bit_DASHand, + ACTIONS(3739), 1, + anon_sym_bit_DASHxor, + ACTIONS(3741), 1, + anon_sym_bit_DASHor, + ACTIONS(3769), 1, + anon_sym_and, + STATE(2012), 1, + sym_comment, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(801), 3, + sym_identifier, + anon_sym_xor, + anon_sym_or, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3725), 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, + ACTIONS(803), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100704] = 4, - ACTIONS(143), 1, + [102339] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1988), 1, + STATE(2013), 1, sym_comment, ACTIONS(829), 11, sym_identifier, @@ -184710,61 +186076,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100749] = 14, - ACTIONS(143), 1, + [102384] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, + ACTIONS(3713), 1, anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, + anon_sym_in, + ACTIONS(3721), 1, anon_sym_PLUS, + ACTIONS(3737), 1, + anon_sym_bit_DASHand, + ACTIONS(3739), 1, + anon_sym_bit_DASHxor, + ACTIONS(3741), 1, + anon_sym_bit_DASHor, + ACTIONS(3769), 1, + anon_sym_and, ACTIONS(3771), 1, - anon_sym_in, - STATE(1989), 1, + anon_sym_xor, + STATE(2014), 1, sym_comment, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, + ACTIONS(801), 2, + sym_identifier, + anon_sym_or, + ACTIONS(3709), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3759), 3, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3773), 3, + ACTIONS(3727), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3769), 4, + ACTIONS(3725), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 10, + ACTIONS(803), 5, 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_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100814] = 4, - ACTIONS(143), 1, + [102461] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1990), 1, + STATE(2015), 1, sym_comment, ACTIONS(829), 11, sym_identifier, @@ -184802,54 +186174,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100859] = 7, - ACTIONS(143), 1, + [102506] = 21, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - STATE(1991), 1, - sym_comment, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(793), 8, + ACTIONS(801), 1, sym_identifier, - anon_sym_GT, + ACTIONS(3713), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, anon_sym_in, + ACTIONS(3721), 1, anon_sym_PLUS, - anon_sym_LT2, + ACTIONS(3737), 1, + anon_sym_bit_DASHand, + ACTIONS(3739), 1, + anon_sym_bit_DASHxor, + ACTIONS(3741), 1, + anon_sym_bit_DASHor, + ACTIONS(3769), 1, anon_sym_and, + ACTIONS(3771), 1, anon_sym_xor, + ACTIONS(3773), 1, anon_sym_or, - ACTIONS(795), 20, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + STATE(2016), 1, + sym_comment, + ACTIONS(3709), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3735), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3711), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + ACTIONS(3727), 3, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3725), 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, + ACTIONS(803), 5, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100910] = 4, - ACTIONS(143), 1, + [102585] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2017), 1, sym_comment, ACTIONS(829), 11, sym_identifier, @@ -184887,30 +186273,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [100955] = 5, - ACTIONS(143), 1, + [102630] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1993), 1, + STATE(2018), 1, sym_comment, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(793), 11, - sym_identifier, + ACTIONS(901), 5, 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(795), 21, + ACTIONS(903), 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, @@ -184926,31 +186311,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101002] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [102675] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_path, - STATE(1994), 1, + STATE(2019), 1, sym_comment, - STATE(1996), 1, - aux_sym_cell_path_repeat1, - ACTIONS(728), 6, + ACTIONS(829), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(730), 25, - anon_sym_DASH_DASH, + ACTIONS(831), 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, @@ -184972,70 +186355,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [101053] = 4, - ACTIONS(143), 1, + [102720] = 14, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1995), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, + anon_sym_bit_DASHand, + STATE(2020), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, + ACTIONS(3743), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(3749), 2, 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(831), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 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, + ACTIONS(803), 11, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101098] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [102785] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_path, - STATE(1961), 1, - aux_sym_cell_path_repeat1, - STATE(1996), 1, + STATE(2021), 1, sym_comment, - ACTIONS(732), 6, + ACTIONS(829), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(734), 25, - anon_sym_DASH_DASH, + ACTIONS(831), 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, @@ -185057,41 +186447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [101149] = 10, - ACTIONS(143), 1, + [102830] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - STATE(1997), 1, + STATE(2022), 1, sym_comment, - ACTIONS(3761), 2, + ACTIONS(883), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(881), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3759), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(793), 7, - sym_identifier, - anon_sym_GT, - anon_sym_in, - anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(795), 17, - anon_sym_COMMA, - anon_sym_RBRACE, + 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, @@ -185102,15 +186484,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101206] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [102875] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(1998), 1, + STATE(2023), 1, sym_comment, - ACTIONS(829), 11, + ACTIONS(939), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -185122,7 +186505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 23, + ACTIONS(941), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -185146,146 +186529,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [101251] = 23, - ACTIONS(143), 1, + [102920] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - STATE(567), 1, - sym_block, - STATE(1999), 1, - sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3423), 1, - sym__flag, - ACTIONS(3685), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [101334] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3693), 1, - anon_sym_LBRACE, ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, sym_short_flag, - STATE(526), 1, + STATE(686), 1, sym_block, - STATE(2000), 1, + STATE(2024), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3444), 1, + STATE(3445), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [101417] = 4, - ACTIONS(143), 1, + [103003] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2001), 1, + ACTIONS(3775), 1, + anon_sym_DOT, + STATE(1825), 1, + sym_path, + STATE(2025), 2, sym_comment, - ACTIONS(907), 5, + aux_sym_cell_path_repeat1, + ACTIONS(729), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(909), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(731), 25, + anon_sym_DASH_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, @@ -185307,263 +186631,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101462] = 4, - ACTIONS(3), 1, + sym_short_flag, + [103052] = 13, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2002), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + STATE(2026), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3743), 2, anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_in, + anon_sym_LT2, + ACTIONS(3749), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 4, 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(803), 12, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, - sym_short_flag, - [101507] = 23, - ACTIONS(143), 1, + [103115] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - STATE(537), 1, + STATE(682), 1, sym_block, - STATE(2003), 1, + STATE(2027), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3436), 1, + STATE(3422), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [101590] = 4, - ACTIONS(143), 1, + [103198] = 23, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2004), 1, - sym_comment, - ACTIONS(829), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(831), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, - anon_sym_in, - anon_sym_if, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3681), 1, 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, + ACTIONS(3695), 1, anon_sym_bit_DASHand, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, + ACTIONS(3699), 1, anon_sym_bit_DASHor, + ACTIONS(3701), 1, anon_sym_and, + ACTIONS(3703), 1, anon_sym_xor, + ACTIONS(3705), 1, anon_sym_or, - [101635] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(676), 1, + STATE(627), 1, sym_block, - STATE(2005), 1, + STATE(2028), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3412), 1, + STATE(3463), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [101718] = 14, - ACTIONS(143), 1, + [103281] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, + anon_sym_DASH_DASH, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - STATE(2006), 1, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, + anon_sym_and, + ACTIONS(3703), 1, + anon_sym_xor, + ACTIONS(3705), 1, + anon_sym_or, + ACTIONS(3707), 1, + sym_short_flag, + STATE(675), 1, + sym_block, + STATE(2029), 1, sym_comment, - ACTIONS(3663), 2, + STATE(2994), 1, + sym_long_flag, + STATE(3454), 1, + sym__flag, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 11, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [101783] = 4, - ACTIONS(143), 1, + [103364] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2007), 1, + STATE(2030), 1, sym_comment, ACTIONS(829), 5, anon_sym_GT, @@ -185601,175 +186903,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [101828] = 15, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - STATE(2008), 1, - sym_comment, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101895] = 22, - ACTIONS(143), 1, + [103409] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3781), 1, - sym_identifier, - ACTIONS(3783), 1, - anon_sym_COMMA, - ACTIONS(3787), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3789), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3791), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3793), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3795), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3797), 1, + ACTIONS(3705), 1, anon_sym_or, - STATE(2009), 1, + ACTIONS(3707), 1, + sym_short_flag, + STATE(670), 1, + sym_block, + STATE(2031), 1, sym_comment, - ACTIONS(3755), 2, + STATE(2994), 1, + sym_long_flag, + STATE(3437), 1, + sym__flag, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3785), 4, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [101976] = 15, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3677), 2, anon_sym_DASH, - ACTIONS(3675), 1, anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - STATE(2010), 1, - sym_comment, - ACTIONS(3663), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [102043] = 4, - ACTIONS(143), 1, + [103492] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2011), 1, + STATE(2032), 1, sym_comment, - ACTIONS(829), 11, + ACTIONS(931), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -185781,7 +186980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 23, + ACTIONS(933), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -185805,123 +187004,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102088] = 4, + [103537] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(2012), 1, + STATE(2033), 1, sym_comment, - ACTIONS(766), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(764), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - 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, - [102133] = 16, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3483), 2, anon_sym_DASH, - ACTIONS(3675), 1, anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - ACTIONS(3801), 1, - anon_sym_bit_DASHor, - STATE(2013), 1, - sym_comment, - ACTIONS(3663), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3489), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3491), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3493), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3485), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3487), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3481), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 9, - anon_sym_COMMA, + ACTIONS(801), 10, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, - [102202] = 4, - ACTIONS(143), 1, + sym_short_flag, + [103596] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2014), 1, + STATE(2034), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(927), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(929), 23, 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, @@ -185937,36 +187090,37 @@ 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, - [102247] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [103641] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2015), 1, + STATE(2035), 1, sym_comment, - ACTIONS(105), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(103), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(869), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(871), 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, @@ -185980,16 +187134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [102292] = 4, + [103686] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2016), 1, + STATE(2036), 1, sym_comment, - ACTIONS(921), 2, + ACTIONS(105), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(919), 32, + ACTIONS(103), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -186022,15 +187175,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [102337] = 4, + [103731] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2017), 1, + STATE(2037), 1, sym_comment, - ACTIONS(885), 2, + ACTIONS(887), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(883), 32, + ACTIONS(885), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -186063,65 +187216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [102382] = 16, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3787), 1, - anon_sym_bit_DASHand, - STATE(2018), 1, - sym_comment, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102451] = 4, - ACTIONS(143), 1, + [103776] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2019), 1, + STATE(2038), 1, sym_comment, - ACTIONS(113), 11, + ACTIONS(923), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -186133,7 +187233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(115), 23, + ACTIONS(925), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -186157,223 +187257,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102496] = 17, - ACTIONS(143), 1, + [103821] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - ACTIONS(3801), 1, - anon_sym_bit_DASHor, - ACTIONS(3803), 1, - anon_sym_and, - STATE(2020), 1, + STATE(2039), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(861), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3681), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3667), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 8, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(863), 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_xor, - anon_sym_or, - [102567] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - 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, - sym_short_flag, - [102612] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, - anon_sym_and, - ACTIONS(3487), 1, - anon_sym_xor, - ACTIONS(3489), 1, - anon_sym_or, - STATE(2022), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(793), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - sym_short_flag, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [102683] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2023), 1, - sym_comment, - ACTIONS(929), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(927), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - 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, - sym_short_flag, - [102728] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2024), 1, - sym_comment, - ACTIONS(929), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(927), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - 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, @@ -186387,70 +187298,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [102773] = 4, - ACTIONS(143), 1, + [103866] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2025), 1, + STATE(2040), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, + ACTIONS(829), 5, 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(831), 23, + ACTIONS(831), 29, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, - anon_sym_RBRACE, - 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [102818] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2026), 1, - sym_comment, - STATE(2123), 1, - sym_cell_path, - ACTIONS(716), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(718), 25, - anon_sym_DASH_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, @@ -186472,33 +187339,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [102869] = 4, - ACTIONS(143), 1, + [103911] = 10, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2027), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + STATE(2041), 1, sym_comment, - ACTIONS(865), 5, + ACTIONS(801), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(867), 29, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(803), 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_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, @@ -186514,12 +187386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [102914] = 4, - ACTIONS(143), 1, + [103968] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2028), 1, + STATE(2042), 1, sym_comment, - ACTIONS(853), 11, + ACTIONS(913), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -186531,7 +187403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(855), 23, + ACTIONS(915), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -186555,71 +187427,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [102959] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - ACTIONS(3483), 1, - anon_sym_bit_DASHor, - ACTIONS(3485), 1, - anon_sym_and, - ACTIONS(3487), 1, - anon_sym_xor, - STATE(2029), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_or, - sym_short_flag, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [103028] = 4, - ACTIONS(143), 1, + [104013] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2043), 1, sym_comment, - ACTIONS(853), 5, + ACTIONS(833), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(855), 29, + ACTIONS(835), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -186649,69 +187468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [103073] = 17, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3787), 1, - anon_sym_bit_DASHand, - ACTIONS(3789), 1, - anon_sym_bit_DASHxor, - STATE(2031), 1, - sym_comment, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103144] = 4, + [104058] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(2044), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(833), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -186744,75 +187509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103189] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_block, - STATE(2033), 1, - sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3419), 1, - sym__flag, - ACTIONS(3685), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [103272] = 4, + [104103] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(2045), 1, sym_comment, - ACTIONS(909), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(907), 32, + ACTIONS(833), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -186845,33 +187550,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103317] = 4, - ACTIONS(3), 1, + [104148] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2035), 1, + STATE(2046), 1, sym_comment, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(833), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(835), 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, @@ -186885,150 +187591,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [103362] = 23, - ACTIONS(143), 1, + [104193] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3707), 1, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3703), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3705), 1, anon_sym_or, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(682), 1, + STATE(691), 1, sym_block, - STATE(2036), 1, + STATE(2047), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3438), 1, + STATE(3450), 1, sym__flag, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [103445] = 23, - ACTIONS(143), 1, + [104276] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_block, - STATE(2037), 1, + STATE(2048), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3442), 1, - sym__flag, - ACTIONS(3685), 2, + ACTIONS(939), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(941), 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, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [103528] = 4, - ACTIONS(143), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [104321] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2038), 1, + STATE(2049), 1, sym_comment, - ACTIONS(887), 11, - sym_identifier, + ACTIONS(829), 5, 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(889), 23, + ACTIONS(831), 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, @@ -187044,36 +187730,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103573] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [104366] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(2050), 1, sym_comment, - ACTIONS(893), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(891), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(881), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(883), 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, @@ -187087,16 +187774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [103618] = 4, + [104411] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2040), 1, + STATE(2051), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(941), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 32, + ACTIONS(939), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187129,12 +187815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103663] = 4, - ACTIONS(143), 1, + [104456] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2041), 1, + STATE(2052), 1, sym_comment, - ACTIONS(931), 11, + ACTIONS(877), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -187146,7 +187832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(933), 23, + ACTIONS(879), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -187170,15 +187856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103708] = 4, + [104501] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2042), 1, + STATE(2053), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(839), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 32, + ACTIONS(837), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187211,34 +187897,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103753] = 4, - ACTIONS(143), 1, + [104546] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2054), 1, sym_comment, - ACTIONS(911), 11, - sym_identifier, + ACTIONS(865), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(867), 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, - ACTIONS(913), 23, - anon_sym_COMMA, + [104591] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2055), 1, + sym_comment, + ACTIONS(843), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(841), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -187249,37 +187975,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103798] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [104636] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2044), 1, + STATE(2056), 1, sym_comment, - ACTIONS(895), 11, - sym_identifier, + ACTIONS(847), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(845), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + 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, - ACTIONS(897), 23, - anon_sym_COMMA, + sym_short_flag, + [104681] = 19, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3745), 1, anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, + anon_sym_bit_DASHand, + ACTIONS(3765), 1, + anon_sym_bit_DASHxor, + ACTIONS(3767), 1, + anon_sym_bit_DASHor, + ACTIONS(3778), 1, + anon_sym_and, + ACTIONS(3780), 1, + anon_sym_xor, + ACTIONS(3782), 1, + anon_sym_or, + STATE(2057), 1, + sym_comment, + ACTIONS(3743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 6, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + [104756] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2058), 1, + sym_comment, + ACTIONS(925), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(923), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + 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, @@ -187290,15 +188113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [103843] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [104801] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2045), 1, + STATE(2059), 1, sym_comment, - ACTIONS(829), 11, + ACTIONS(935), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -187310,7 +188134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(831), 23, + ACTIONS(937), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -187334,15 +188158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [103888] = 4, + [104846] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(2060), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(849), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187375,15 +188199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103933] = 4, + [104891] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2047), 1, + STATE(2061), 1, sym_comment, - ACTIONS(847), 2, + ACTIONS(855), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(845), 32, + ACTIONS(853), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187416,88 +188240,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [103978] = 18, - ACTIONS(143), 1, + [104936] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3787), 1, - anon_sym_bit_DASHand, - ACTIONS(3789), 1, - anon_sym_bit_DASHxor, - ACTIONS(3791), 1, - anon_sym_bit_DASHor, - STATE(2048), 1, + STATE(2062), 1, sym_comment, - ACTIONS(3755), 2, + ACTIONS(873), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(793), 4, - sym_identifier, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 5, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(875), 29, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104051] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2049), 1, - sym_comment, - ACTIONS(843), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(841), 32, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, 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, @@ -187511,16 +188281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [104096] = 4, + [104981] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2050), 1, + STATE(2063), 1, sym_comment, - ACTIONS(839), 2, + ACTIONS(859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(837), 32, + ACTIONS(857), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187553,29 +188322,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104141] = 4, - ACTIONS(143), 1, + [105026] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(2064), 1, sym_comment, - ACTIONS(865), 11, - sym_identifier, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 5, 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(867), 23, + ACTIONS(803), 27, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, + anon_sym_EQ_GT, + anon_sym_mod, anon_sym_SLASH_SLASH, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, @@ -187591,32 +188361,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104186] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105073] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2052), 1, + STATE(2065), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, + ACTIONS(829), 5, 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(831), 23, + ACTIONS(831), 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, @@ -187632,126 +188402,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104231] = 15, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105118] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3481), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3485), 1, + ACTIONS(3701), 1, anon_sym_and, - STATE(2053), 1, + ACTIONS(3703), 1, + anon_sym_xor, + ACTIONS(3705), 1, + anon_sym_or, + ACTIONS(3707), 1, + sym_short_flag, + STATE(633), 1, + sym_block, + STATE(2066), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + STATE(2994), 1, + sym_long_flag, + STATE(3439), 1, + sym__flag, + ACTIONS(3673), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3473), 2, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3469), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 6, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - ACTIONS(3465), 6, - anon_sym_GT, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104298] = 19, - ACTIONS(143), 1, + [105201] = 22, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, + ACTIONS(3713), 1, anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, + ACTIONS(3717), 1, + anon_sym_DASH, + ACTIONS(3719), 1, anon_sym_in, - ACTIONS(3787), 1, + ACTIONS(3721), 1, + anon_sym_PLUS, + ACTIONS(3737), 1, anon_sym_bit_DASHand, - ACTIONS(3789), 1, + ACTIONS(3739), 1, anon_sym_bit_DASHxor, - ACTIONS(3791), 1, + ACTIONS(3741), 1, anon_sym_bit_DASHor, - ACTIONS(3793), 1, + ACTIONS(3769), 1, anon_sym_and, - STATE(2054), 1, + ACTIONS(3771), 1, + anon_sym_xor, + ACTIONS(3773), 1, + anon_sym_or, + ACTIONS(3784), 1, + sym_identifier, + ACTIONS(3786), 1, + anon_sym_COMMA, + STATE(2067), 1, sym_comment, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, + ACTIONS(3709), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, + ACTIONS(3715), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3723), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3779), 2, + ACTIONS(3735), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(793), 3, - sym_identifier, - anon_sym_xor, - anon_sym_or, - ACTIONS(3759), 3, + ACTIONS(3711), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, - ACTIONS(3773), 3, + ACTIONS(3727), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3769), 4, + ACTIONS(3725), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 5, - anon_sym_COMMA, + ACTIONS(3788), 4, anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [104373] = 4, + [105282] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(2068), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(861), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187784,30 +188565,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104418] = 4, - ACTIONS(143), 1, + [105327] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2069), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, - anon_sym_GT, - anon_sym_in, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(3751), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(801), 3, + anon_sym_GT, anon_sym_PLUS, anon_sym_LT2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(831), 23, + ACTIONS(803), 25, anon_sym_COMMA, + anon_sym_PIPE, anon_sym_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_SLASH_SLASH, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -187822,78 +188606,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104463] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, anon_sym_and, - ACTIONS(3715), 1, anon_sym_xor, - ACTIONS(3717), 1, anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_block, - STATE(2057), 1, + [105378] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2070), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3418), 1, - sym__flag, - ACTIONS(3685), 2, + ACTIONS(871), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(869), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, + anon_sym_in, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104546] = 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, + sym_short_flag, + [105423] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2058), 1, + STATE(2071), 1, sym_comment, - ACTIONS(867), 2, + ACTIONS(875), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(865), 32, + ACTIONS(873), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -187926,206 +188691,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [104591] = 23, - ACTIONS(143), 1, + [105468] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - ACTIONS(3709), 1, - anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - ACTIONS(3717), 1, - anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(666), 1, - sym_block, - STATE(2059), 1, + STATE(2072), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3417), 1, - sym__flag, - ACTIONS(3685), 2, + ACTIONS(829), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(831), 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, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104674] = 20, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3757), 1, - anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, - anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3787), 1, - anon_sym_bit_DASHand, - ACTIONS(3789), 1, - anon_sym_bit_DASHxor, - ACTIONS(3791), 1, - anon_sym_bit_DASHor, - ACTIONS(3793), 1, - anon_sym_and, - ACTIONS(3795), 1, - anon_sym_xor, - STATE(2060), 1, - sym_comment, - ACTIONS(793), 2, - sym_identifier, - anon_sym_or, - ACTIONS(3755), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3761), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3779), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3769), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104751] = 23, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, - ACTIONS(3709), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, anon_sym_and, - ACTIONS(3715), 1, anon_sym_xor, - ACTIONS(3717), 1, anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(656), 1, - sym_block, - STATE(2061), 1, + [105513] = 12, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + STATE(2073), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3415), 1, - sym__flag, - ACTIONS(3685), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [104834] = 4, - ACTIONS(143), 1, + ACTIONS(803), 14, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + [105574] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2062), 1, + STATE(2074), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, + ACTIONS(931), 5, 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(831), 23, + ACTIONS(933), 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, @@ -188141,34 +188819,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [104879] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105619] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2063), 1, + STATE(2075), 1, sym_comment, - STATE(2452), 1, - sym_cell_path, - ACTIONS(744), 6, + ACTIONS(865), 11, + 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(746), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(867), 23, + anon_sym_COMMA, + anon_sym_DASH, + 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, @@ -188184,98 +188860,90 @@ 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, - sym_short_flag, - [104930] = 21, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [105664] = 17, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(793), 1, - sym_identifier, - ACTIONS(3757), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3763), 1, - anon_sym_SLASH_SLASH, - ACTIONS(3765), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3771), 1, - anon_sym_in, - ACTIONS(3787), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3789), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3791), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3793), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3795), 1, - anon_sym_xor, - ACTIONS(3797), 1, - anon_sym_or, - STATE(2064), 1, + STATE(2076), 1, sym_comment, - ACTIONS(3755), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3761), 2, + ACTIONS(3749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3767), 2, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3779), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3759), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - ACTIONS(3773), 3, + ACTIONS(3747), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3769), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 5, + ACTIONS(803), 8, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105009] = 7, - ACTIONS(143), 1, + anon_sym_EQ_GT, + anon_sym_xor, + anon_sym_or, + [105735] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2065), 1, + STATE(2077), 1, sym_comment, - STATE(2473), 1, - sym_cell_path, - ACTIONS(740), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(742), 25, + ACTIONS(903), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(901), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH_DASH, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, + 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, @@ -188290,29 +188958,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [105060] = 4, - ACTIONS(143), 1, + [105780] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2066), 1, + STATE(2078), 1, sym_comment, - ACTIONS(829), 11, - sym_identifier, + ACTIONS(829), 5, 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(831), 23, + ACTIONS(831), 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, @@ -188328,32 +188996,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105105] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105825] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2067), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(2079), 1, sym_comment, - ACTIONS(899), 11, - sym_identifier, + STATE(2120), 1, + sym_path, + STATE(2454), 1, + sym_cell_path, + ACTIONS(744), 6, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, 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(901), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(746), 25, + anon_sym_DASH_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, @@ -188369,33 +189039,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105150] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [105876] = 9, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2068), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + STATE(2080), 1, sym_comment, - ACTIONS(883), 11, - sym_identifier, + ACTIONS(801), 2, anon_sym_GT, - anon_sym_in, + anon_sym_LT2, + ACTIONS(3749), 2, 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(885), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, + anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(803), 24, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -188410,37 +189086,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105195] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105931] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2069), 1, + STATE(2081), 1, sym_comment, - ACTIONS(869), 11, - sym_identifier, + ACTIONS(115), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(113), 32, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_GT, + anon_sym_DASH, anon_sym_in, + anon_sym_DOT, 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(871), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + 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, @@ -188451,37 +189127,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105240] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [105976] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(889), 1, - anon_sym_LF, - STATE(2070), 1, + STATE(2082), 1, sym_comment, - ACTIONS(887), 33, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(829), 5, anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(831), 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, @@ -188495,29 +189171,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [105285] = 4, - ACTIONS(143), 1, + [106021] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2071), 1, + STATE(2083), 1, sym_comment, - ACTIONS(821), 11, - sym_identifier, + ACTIONS(829), 5, 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(823), 23, + ACTIONS(831), 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, @@ -188533,41 +189209,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105330] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106066] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2072), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + STATE(2084), 1, sym_comment, - STATE(2433), 1, - sym_cell_path, - ACTIONS(724), 6, + ACTIONS(3743), 2, anon_sym_GT, - anon_sym_DASH, + anon_sym_LT2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(726), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(803), 18, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -188579,11 +189260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [105381] = 4, - ACTIONS(143), 1, + [106125] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2073), 1, + STATE(2085), 1, sym_comment, ACTIONS(873), 11, sym_identifier, @@ -188621,18 +189301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [105426] = 4, - ACTIONS(143), 1, + [106170] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(2086), 1, sym_comment, - ACTIONS(919), 5, + ACTIONS(909), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(921), 29, + ACTIONS(911), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -188662,29 +189342,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [105471] = 4, - ACTIONS(143), 1, + [106215] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2075), 1, + STATE(2087), 1, sym_comment, - ACTIONS(833), 11, - sym_identifier, + ACTIONS(857), 5, anon_sym_GT, - anon_sym_in, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, + ACTIONS(859), 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, - ACTIONS(835), 23, + [106260] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2088), 1, + sym_comment, + ACTIONS(829), 5, + anon_sym_GT, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(831), 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, @@ -188700,31 +189421,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105516] = 7, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106305] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2076), 1, + STATE(2089), 1, sym_comment, - STATE(2472), 1, - sym_cell_path, - ACTIONS(736), 6, + ACTIONS(905), 5, anon_sym_GT, - anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(738), 25, - anon_sym_DASH_DASH, + ACTIONS(907), 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, @@ -188746,34 +189465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [105567] = 4, - ACTIONS(3), 1, + [106350] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2077), 1, + STATE(2090), 1, sym_comment, - ACTIONS(835), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(833), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(853), 5, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(855), 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, @@ -188787,67 +189506,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [105612] = 14, - ACTIONS(3), 1, + [106395] = 18, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3479), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3481), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3483), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - STATE(2078), 1, + ACTIONS(3778), 1, + anon_sym_and, + ACTIONS(3780), 1, + anon_sym_xor, + STATE(2091), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, + ACTIONS(3743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3477), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3469), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 7, - anon_sym_SEMI, + ACTIONS(803), 7, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_and, - anon_sym_xor, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_or, - sym_short_flag, - [105677] = 4, + [106468] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2079), 1, + STATE(2092), 1, sym_comment, - ACTIONS(933), 2, + ACTIONS(867), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(931), 32, + ACTIONS(865), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -188880,29 +189602,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [105722] = 4, - ACTIONS(143), 1, + [106513] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(2093), 1, sym_comment, - ACTIONS(837), 11, - sym_identifier, + ACTIONS(897), 5, 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(839), 23, + ACTIONS(899), 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, @@ -188918,21 +189640,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105767] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106558] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2081), 1, + STATE(2094), 1, sym_comment, - ACTIONS(103), 5, + ACTIONS(923), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(105), 29, + ACTIONS(925), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -188962,29 +189684,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [105812] = 4, - ACTIONS(143), 1, + [106603] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2082), 1, + STATE(2095), 1, sym_comment, - ACTIONS(841), 11, - sym_identifier, + ACTIONS(927), 5, 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(843), 23, + ACTIONS(929), 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, @@ -189000,77 +189722,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [105857] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106648] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2096), 1, sym_comment, - ACTIONS(875), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(873), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(113), 11, + sym_identifier, anon_sym_GT, - 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, - sym_short_flag, - [105902] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2084), 1, - sym_comment, - ACTIONS(859), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(857), 32, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, + ACTIONS(115), 23, + anon_sym_COMMA, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + 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, @@ -189081,16 +189763,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, - sym_short_flag, - [105947] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [106693] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2085), 1, + STATE(2097), 1, sym_comment, - ACTIONS(845), 11, + ACTIONS(869), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -189102,7 +189783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(847), 23, + ACTIONS(871), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -189126,34 +189807,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [105992] = 4, - ACTIONS(143), 1, + [106738] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2086), 1, + STATE(2098), 1, sym_comment, - ACTIONS(845), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(847), 29, - anon_sym_COMMA, + ACTIONS(879), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(877), 32, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_GT, + 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, 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, @@ -189167,74 +189847,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [106037] = 4, - ACTIONS(143), 1, + sym_short_flag, + [106783] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2087), 1, + STATE(2099), 1, sym_comment, - ACTIONS(861), 11, - sym_identifier, + ACTIONS(829), 5, 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(863), 23, + ACTIONS(831), 29, anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, - 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [106082] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2088), 1, - sym_comment, - ACTIONS(823), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(821), 32, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, 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, @@ -189248,36 +189889,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [106127] = 6, - ACTIONS(3), 1, + [106828] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2089), 1, + STATE(2100), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3471), 4, + ACTIONS(889), 5, + anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 26, - anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(891), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, - anon_sym_PLUS, + 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_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_not_DASHin, @@ -189291,30 +189930,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [106176] = 4, - ACTIONS(143), 1, + [106873] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2090), 1, + STATE(2101), 1, sym_comment, - ACTIONS(879), 11, - sym_identifier, + ACTIONS(829), 5, 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(881), 23, + ACTIONS(831), 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, @@ -189330,36 +189968,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [106221] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [106918] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2091), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(2102), 1, sym_comment, - ACTIONS(871), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(869), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2120), 1, + sym_path, + STATE(2463), 1, + sym_cell_path, + ACTIONS(736), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(738), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -189374,21 +190015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106266] = 4, + [106969] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2092), 1, - sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, + ACTIONS(915), 1, anon_sym_LF, - ACTIONS(829), 32, + STATE(2103), 1, + sym_comment, + ACTIONS(913), 33, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -189414,16 +190056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [106311] = 4, + [107014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2093), 1, + STATE(2104), 1, sym_comment, - ACTIONS(901), 2, + ACTIONS(891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(899), 32, + ACTIONS(889), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -189456,12 +190097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106356] = 4, - ACTIONS(143), 1, + [107059] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(2105), 1, sym_comment, - ACTIONS(891), 11, + ACTIONS(861), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -189473,7 +190114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(893), 23, + ACTIONS(863), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -189497,44 +190138,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [106401] = 10, - ACTIONS(3), 1, + [107104] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2095), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(2106), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, + STATE(2120), 1, + sym_path, + STATE(2450), 1, + sym_cell_path, + ACTIONS(721), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3473), 2, + anon_sym_LT2, + ACTIONS(723), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, + 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(793), 12, - anon_sym_SEMI, - anon_sym_PIPE, - 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, @@ -189544,29 +190182,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106458] = 4, - ACTIONS(143), 1, + [107155] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2096), 1, + STATE(2107), 1, sym_comment, - ACTIONS(903), 11, - sym_identifier, + ACTIONS(877), 5, 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(905), 23, + ACTIONS(879), 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, @@ -189582,36 +190220,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [106503] = 4, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [107200] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2108), 1, sym_comment, - ACTIONS(889), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(887), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(893), 7, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + anon_sym_DOT_DOT, + ACTIONS(895), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -189625,16 +190261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, sym_short_flag, - [106548] = 4, + [107245] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2109), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(899), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(897), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -189667,33 +190305,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106593] = 4, - ACTIONS(3), 1, + [107290] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2099), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(2110), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(2120), 1, + sym_path, + STATE(2443), 1, + sym_cell_path, + ACTIONS(713), 6, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_in, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(715), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, 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, @@ -189708,12 +190349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106638] = 4, - ACTIONS(143), 1, + [107341] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2100), 1, + STATE(2111), 1, sym_comment, - ACTIONS(907), 11, + ACTIONS(103), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -189725,7 +190366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(909), 23, + ACTIONS(105), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -189749,31 +190390,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [106683] = 7, + [107386] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2101), 1, + STATE(2112), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(907), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(905), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3471), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 24, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -189793,12 +190431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106734] = 4, - ACTIONS(143), 1, + [107431] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2102), 1, + STATE(2113), 1, sym_comment, - ACTIONS(923), 11, + ACTIONS(885), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -189810,7 +190448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(925), 23, + ACTIONS(887), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -189834,15 +190472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [106779] = 4, + [107476] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2103), 1, + STATE(2114), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(909), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -189875,129 +190513,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [106824] = 13, - ACTIONS(3), 1, + [107521] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - ACTIONS(3481), 1, - anon_sym_bit_DASHxor, - STATE(2104), 1, + STATE(2115), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, + ACTIONS(913), 5, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 8, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [106887] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2105), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3471), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - 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, - sym_short_flag, - [106942] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2106), 1, - sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 32, - anon_sym_SEMI, + ACTIONS(915), 29, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, 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, @@ -190011,30 +190554,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [106987] = 4, - ACTIONS(143), 1, + [107566] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2107), 1, + STATE(2116), 1, sym_comment, - ACTIONS(927), 11, - sym_identifier, + ACTIONS(797), 7, + anon_sym_EQ, anon_sym_GT, - anon_sym_in, + anon_sym_DASH, 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(929), 23, - anon_sym_COMMA, - anon_sym_DASH, - anon_sym_RBRACE, + ACTIONS(799), 27, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + 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, @@ -190050,15 +190591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [107032] = 4, - ACTIONS(143), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [107611] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2108), 1, + STATE(2117), 1, sym_comment, - ACTIONS(927), 11, + ACTIONS(833), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -190070,7 +190612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(929), 23, + ACTIONS(835), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -190094,64 +190636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [107077] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3479), 1, - anon_sym_bit_DASHand, - STATE(2109), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [107138] = 4, + [107656] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2118), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(915), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(913), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -190174,98 +190667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_not_DASHin, anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [107183] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2111), 1, - sym_comment, - ACTIONS(887), 5, - anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(889), 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, - [107228] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2112), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3467), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3477), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3469), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3471), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3465), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 10, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, @@ -190273,12 +190677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [107287] = 4, - ACTIONS(143), 1, + [107701] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(2119), 1, sym_comment, - ACTIONS(919), 11, + ACTIONS(833), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -190290,7 +190694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(921), 23, + ACTIONS(835), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -190314,26 +190718,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [107332] = 4, - ACTIONS(143), 1, + [107746] = 7, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2114), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(1825), 1, + sym_path, + STATE(2120), 1, sym_comment, - ACTIONS(829), 5, + STATE(2122), 1, + aux_sym_cell_path_repeat1, + ACTIONS(752), 6, anon_sym_GT, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_DASH, + ACTIONS(754), 25, + anon_sym_DASH_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, @@ -190355,12 +190761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107377] = 4, - ACTIONS(143), 1, + sym_short_flag, + [107797] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2121), 1, sym_comment, - ACTIONS(103), 11, + ACTIONS(837), 11, sym_identifier, anon_sym_GT, anon_sym_in, @@ -190372,7 +190779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(105), 23, + ACTIONS(839), 23, anon_sym_COMMA, anon_sym_DASH, anon_sym_RBRACE, @@ -190396,80 +190803,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [107422] = 18, - ACTIONS(143), 1, + [107842] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - ACTIONS(3801), 1, - anon_sym_bit_DASHor, - ACTIONS(3803), 1, - anon_sym_and, - ACTIONS(3805), 1, - anon_sym_xor, - STATE(2116), 1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(1825), 1, + sym_path, + STATE(2025), 1, + aux_sym_cell_path_repeat1, + STATE(2122), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(740), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(742), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3667), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3679), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - [107495] = 7, - ACTIONS(143), 1, + sym_short_flag, + [107893] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3683), 1, + ACTIONS(3729), 1, anon_sym_DOT, - STATE(1994), 1, + STATE(2108), 1, + sym_cell_path, + STATE(2120), 1, sym_path, - STATE(2117), 1, + STATE(2123), 1, sym_comment, - STATE(2478), 1, - sym_cell_path, - ACTIONS(712), 6, + ACTIONS(748), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(714), 25, + ACTIONS(750), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -190495,18 +190891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [107546] = 4, - ACTIONS(143), 1, + [107944] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2118), 1, + STATE(2124), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(837), 5, anon_sym_GT, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + ACTIONS(839), 29, anon_sym_COMMA, anon_sym_PIPE, anon_sym_DASH, @@ -190536,15 +190932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [107591] = 4, + [107989] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2119), 1, + STATE(2125), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(933), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 32, + ACTIONS(931), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -190577,90 +190973,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [107636] = 19, - ACTIONS(143), 1, + [108034] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - ACTIONS(3801), 1, - anon_sym_bit_DASHor, - ACTIONS(3803), 1, - anon_sym_and, - ACTIONS(3805), 1, - anon_sym_xor, - ACTIONS(3807), 1, - anon_sym_or, - STATE(2120), 1, + STATE(2126), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(841), 5, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(843), 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, - ACTIONS(3673), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3667), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3679), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - [107711] = 8, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [108079] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2121), 1, + STATE(2127), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(777), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3467), 2, + ACTIONS(775), 32, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3473), 2, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, + anon_sym_QMARK2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3475), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3471), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_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, @@ -190677,30 +191055,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [107764] = 4, - ACTIONS(143), 1, + [108124] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2122), 1, + STATE(2128), 1, sym_comment, - ACTIONS(829), 5, + ACTIONS(841), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(843), 23, 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, @@ -190716,29 +191093,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108169] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3792), 1, + anon_sym_LF, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [107809] = 4, - ACTIONS(143), 1, + STATE(1484), 1, + aux_sym_pipe_element_repeat1, + STATE(2129), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3790), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108244] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(2130), 1, sym_comment, - ACTIONS(825), 7, + ACTIONS(845), 11, + 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_DOT_DOT, - ACTIONS(827), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(847), 23, + anon_sym_COMMA, + anon_sym_DASH, + 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, @@ -190754,39 +191190,37 @@ 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, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_short_flag, - [107854] = 4, - ACTIONS(3), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108289] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2124), 1, + STATE(2131), 1, sym_comment, - ACTIONS(897), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(895), 32, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(849), 11, + sym_identifier, anon_sym_GT, - 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_LT2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(851), 23, + anon_sym_COMMA, + anon_sym_DASH, + anon_sym_RBRACE, + 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, @@ -190797,33 +191231,32 @@ 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, - sym_short_flag, - [107899] = 4, - ACTIONS(143), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108334] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2125), 1, + STATE(2132), 1, sym_comment, - ACTIONS(883), 5, + ACTIONS(853), 11, + sym_identifier, anon_sym_GT, + anon_sym_in, anon_sym_STAR, anon_sym_SLASH, + anon_sym_mod, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(885), 29, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(855), 23, 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, @@ -190839,212 +191272,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [108379] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [107944] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3683), 1, - anon_sym_DOT, - STATE(1994), 1, - sym_path, - STATE(2126), 1, + ACTIONS(3823), 1, + anon_sym_LF, + STATE(2133), 1, sym_comment, - STATE(2477), 1, - sym_cell_path, - ACTIONS(720), 6, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(722), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [108449] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - sym_short_flag, - [107995] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3809), 1, - anon_sym_QMARK2, - STATE(2127), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, + ACTIONS(3827), 1, anon_sym_LF, - ACTIONS(748), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(2134), 1, + sym_comment, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [108519] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [108042] = 23, - ACTIONS(143), 1, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2135), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108589] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3707), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_block, - STATE(2128), 1, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2136), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3414), 1, - sym__flag, - ACTIONS(3685), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108125] = 5, + [108659] = 17, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(3809), 1, - anon_sym_QMARK2, - STATE(2129), 1, - sym_comment, - ACTIONS(750), 2, - ts_builtin_sym_end, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3827), 1, anon_sym_LF, - ACTIONS(748), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + STATE(2137), 1, + sym_comment, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_DOT, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108729] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2138), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, + [108799] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2139), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108869] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [108172] = 4, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2140), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [108939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2130), 1, - sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, + ACTIONS(855), 1, anon_sym_LF, - ACTIONS(829), 32, + STATE(2141), 1, + sym_comment, + ACTIONS(853), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_in, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -191070,75 +191739,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [108217] = 5, + [108983] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2131), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3827), 1, anon_sym_LF, - ACTIONS(3473), 2, + STATE(2142), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(793), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_DASH, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [109053] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - sym_short_flag, - [108264] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2132), 1, + ACTIONS(3827), 1, + anon_sym_LF, + STATE(2143), 1, sym_comment, - ACTIONS(768), 6, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3825), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(770), 27, - anon_sym_DASH_DASH, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [109123] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(847), 1, + anon_sym_LF, + STATE(2144), 1, + sym_comment, + ACTIONS(845), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_QMARK2, + 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, @@ -191152,810 +191885,1030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - sym_short_flag, - [108308] = 17, + [109167] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2133), 1, + STATE(2145), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108378] = 17, + [109237] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2134), 1, + STATE(2146), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108448] = 17, + [109307] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3827), 1, anon_sym_LF, - STATE(2135), 1, + STATE(2147), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3825), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108518] = 17, + [109377] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3827), 1, anon_sym_LF, - STATE(2136), 1, + STATE(2148), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3825), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108588] = 17, + [109447] = 20, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3790), 1, + anon_sym_SEMI, + ACTIONS(3792), 1, + anon_sym_LF, + ACTIONS(3833), 1, + ts_builtin_sym_end, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3859), 1, anon_sym_or, - ACTIONS(3813), 1, + STATE(1484), 1, + aux_sym_pipe_element_repeat1, + STATE(2149), 1, + sym_comment, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [109523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(859), 1, anon_sym_LF, - STATE(2137), 1, + STATE(2150), 1, + sym_comment, + ACTIONS(857), 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, + [109567] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(903), 1, + anon_sym_LF, + STATE(2151), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(901), 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, - ACTIONS(3737), 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, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [109611] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2152), 1, + sym_comment, + ACTIONS(795), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(793), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_DOT, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 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(3733), 4, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [109655] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(883), 1, + anon_sym_LF, + STATE(2153), 1, + sym_comment, + ACTIONS(881), 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, - ACTIONS(3735), 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, + [109699] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, + anon_sym_LF, + STATE(2154), 1, + sym_comment, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_in, anon_sym_RBRACE, - ACTIONS(3729), 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, + [109753] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, + anon_sym_LF, + STATE(2155), 1, + sym_comment, + ACTIONS(829), 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, - [108658] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [109797] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2138), 1, + STATE(2156), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108728] = 17, + [109867] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(2139), 1, + STATE(2157), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(801), 24, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, anon_sym_GT, + 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, - [108798] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3817), 1, + [109917] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, anon_sym_LF, - STATE(2140), 1, + STATE(2158), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(829), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3815), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [108868] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [109961] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(3867), 1, anon_sym_LF, - STATE(2141), 1, + STATE(2159), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(3865), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [108938] = 17, + [110031] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(2142), 1, + STATE(2160), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109008] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(801), 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, - ACTIONS(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3817), 1, + [110087] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, anon_sym_LF, - STATE(2143), 1, + STATE(2161), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(829), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3815), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [109078] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3817), 1, + [110131] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(933), 1, anon_sym_LF, - STATE(2144), 1, + STATE(2162), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(931), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3815), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [109148] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [110175] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(311), 1, + anon_sym_LF, + ACTIONS(331), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(333), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(335), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(337), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(339), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(341), 1, anon_sym_or, - ACTIONS(3817), 1, - anon_sym_LF, - STATE(2145), 1, + STATE(2163), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(325), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(327), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(329), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(309), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(317), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(313), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [110245] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(863), 1, + anon_sym_LF, + STATE(2164), 1, + sym_comment, + ACTIONS(861), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, 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, - [109218] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [110289] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(2146), 1, + STATE(2165), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109288] = 17, + [110359] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(2147), 1, + STATE(2166), 1, sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(801), 26, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, anon_sym_GT, + anon_sym_DASH, + anon_sym_in, + anon_sym_RBRACE, + 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, - [109358] = 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, + [110407] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(835), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(2148), 1, + STATE(2167), 1, sym_comment, - ACTIONS(833), 32, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -191988,24 +192941,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109402] = 4, + [110451] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2149), 1, - sym_comment, - ACTIONS(783), 2, - ts_builtin_sym_end, + ACTIONS(803), 1, anon_sym_LF, - ACTIONS(781), 31, + STATE(2168), 1, + sym_comment, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 30, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, @@ -192028,33 +192982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109446] = 4, - ACTIONS(3), 1, + [110497] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(875), 1, - anon_sym_LF, - STATE(2150), 1, + STATE(2169), 1, sym_comment, - ACTIONS(873), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(779), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(781), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + 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, @@ -192068,67 +193021,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109490] = 17, + sym_short_flag, + [110541] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2151), 1, + STATE(2170), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109560] = 4, + [110611] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(933), 1, + ACTIONS(871), 1, anon_sym_LF, - STATE(2152), 1, + STATE(2171), 1, sym_comment, - ACTIONS(931), 32, + ACTIONS(869), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -192161,33 +193115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109604] = 4, - ACTIONS(3), 1, + [110655] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(823), 1, - anon_sym_LF, - STATE(2153), 1, + STATE(2172), 1, sym_comment, - ACTIONS(821), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(775), 6, anon_sym_GT, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(777), 27, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_DOT, + 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, @@ -192201,107 +193154,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109648] = 4, + sym_short_flag, + [110699] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2154), 1, - sym_comment, - ACTIONS(779), 2, - ts_builtin_sym_end, + ACTIONS(3550), 1, anon_sym_LF, - ACTIONS(777), 31, + ACTIONS(3566), 1, + anon_sym_bit_DASHand, + ACTIONS(3568), 1, + anon_sym_bit_DASHxor, + ACTIONS(3570), 1, + anon_sym_bit_DASHor, + ACTIONS(3572), 1, + anon_sym_and, + ACTIONS(3574), 1, + anon_sym_xor, + ACTIONS(3576), 1, + anon_sym_or, + STATE(2173), 1, + sym_comment, + ACTIONS(3554), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3560), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3562), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3564), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3548), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + anon_sym_RBRACE, + ACTIONS(3556), 4, anon_sym_in, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3558), 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(3552), 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, - [109692] = 17, + [110769] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3580), 1, + anon_sym_LF, + ACTIONS(3596), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3598), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3600), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3602), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3604), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3606), 1, anon_sym_or, - ACTIONS(3813), 1, - anon_sym_LF, - STATE(2155), 1, + STATE(2174), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3584), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3590), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3592), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3594), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3578), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3586), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3588), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3582), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109762] = 4, + [110839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(871), 1, + ACTIONS(875), 1, anon_sym_LF, - STATE(2156), 1, + STATE(2175), 1, sym_comment, - ACTIONS(869), 32, + ACTIONS(873), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -192334,90 +193301,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109806] = 17, + [110883] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2157), 1, + STATE(2176), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [109876] = 8, - ACTIONS(143), 1, + [110953] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3337), 1, - anon_sym_DOT, - STATE(1699), 1, - sym_path, - STATE(1973), 1, - sym_cell_path, - STATE(2158), 1, + ACTIONS(831), 1, + anon_sym_LF, + STATE(2177), 1, sym_comment, - ACTIONS(2186), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(740), 5, + ACTIONS(829), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_GT, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(742), 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, @@ -192431,70 +193394,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [109928] = 17, + [110997] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(2159), 1, + STATE(2178), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(801), 22, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, 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, - [109998] = 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, + [111049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, + ACTIONS(831), 1, anon_sym_LF, - ACTIONS(3819), 1, - anon_sym_COLON, - STATE(2160), 1, + STATE(2179), 1, sym_comment, - ACTIONS(103), 31, + ACTIONS(829), 32, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -192525,176 +193478,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110044] = 17, + [111093] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(803), 1, anon_sym_LF, - STATE(2161), 1, + STATE(2180), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(3795), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(801), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [111151] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(831), 1, + anon_sym_LF, + STATE(2181), 1, + sym_comment, + ACTIONS(829), 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, - [110114] = 20, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3724), 1, - anon_sym_SEMI, - ACTIONS(3726), 1, - anon_sym_LF, - ACTIONS(3821), 1, - ts_builtin_sym_end, - ACTIONS(3837), 1, + 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(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, - STATE(2162), 1, + [111195] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, + anon_sym_LF, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + STATE(2182), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110190] = 17, - ACTIONS(3), 1, + ACTIONS(801), 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, + [111255] = 23, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, + anon_sym_bit_DASHand, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3782), 1, anon_sym_or, - ACTIONS(3817), 1, - anon_sym_LF, - STATE(2163), 1, + ACTIONS(3869), 1, + anon_sym_PIPE, + ACTIONS(3871), 1, + anon_sym_if, + ACTIONS(3873), 1, + anon_sym_EQ_GT, + STATE(2183), 1, sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, + STATE(3359), 1, + aux_sym__match_or_pattern_repeat1, + STATE(3361), 1, + sym_match_guard, + ACTIONS(3743), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3749), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3753), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110260] = 4, + [111337] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(901), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(2164), 1, + STATE(2184), 1, sym_comment, - ACTIONS(899), 32, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -192727,385 +193712,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110304] = 17, + [111381] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(803), 1, + anon_sym_LF, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3813), 1, - anon_sym_LF, - STATE(2165), 1, + STATE(2185), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110374] = 17, + ACTIONS(801), 8, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [111443] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(3827), 1, anon_sym_LF, - STATE(2166), 1, + STATE(2186), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3811), 4, + ACTIONS(3825), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110444] = 17, + [111513] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3817), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2167), 1, + STATE(2187), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3815), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110514] = 17, + [111583] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(843), 1, anon_sym_LF, - STATE(2168), 1, + STATE(2188), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(841), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3811), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [110584] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [111627] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(311), 1, + anon_sym_LF, + ACTIONS(331), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(333), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(335), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(337), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(339), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(341), 1, anon_sym_or, - ACTIONS(3851), 1, - anon_sym_LF, - STATE(2169), 1, + STATE(2189), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(315), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(325), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(327), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(329), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(309), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(317), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(321), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(313), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110654] = 17, + [111697] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3813), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(2170), 1, + STATE(2190), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(829), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3811), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [110724] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3851), 1, + [111741] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, anon_sym_LF, - STATE(2171), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + STATE(2191), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110794] = 4, + ACTIONS(801), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [111805] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(839), 1, + ACTIONS(879), 1, anon_sym_LF, - STATE(2172), 1, + STATE(2192), 1, sym_comment, - ACTIONS(837), 32, + ACTIONS(877), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -193138,2224 +194090,1759 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [110838] = 17, + [111849] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(831), 1, anon_sym_LF, - STATE(2173), 1, + STATE(2193), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(829), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3849), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [110908] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3855), 1, + [111893] = 15, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, anon_sym_LF, - STATE(2174), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + STATE(2194), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(801), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + anon_sym_xor, + anon_sym_or, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [110978] = 17, + [111959] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2175), 1, + STATE(2195), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111048] = 17, + [112029] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2176), 1, + STATE(2196), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111118] = 17, + [112099] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2177), 1, + STATE(2197), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111188] = 17, + [112169] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3859), 1, + ACTIONS(831), 1, anon_sym_LF, - ACTIONS(3875), 1, - anon_sym_bit_DASHand, - ACTIONS(3877), 1, - anon_sym_bit_DASHxor, - ACTIONS(3879), 1, - anon_sym_bit_DASHor, - ACTIONS(3881), 1, - anon_sym_and, - ACTIONS(3883), 1, - anon_sym_xor, - ACTIONS(3885), 1, - anon_sym_or, - STATE(2178), 1, + STATE(2198), 1, sym_comment, - ACTIONS(3863), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3869), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3871), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3873), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3857), 4, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3865), 4, + anon_sym_GT, + anon_sym_DASH, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3867), 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(3861), 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, - [111258] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3851), 1, + [112213] = 16, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(803), 1, anon_sym_LF, - STATE(2179), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + STATE(2199), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(801), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + anon_sym_or, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111328] = 17, + [112281] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(839), 1, anon_sym_LF, - STATE(2180), 1, + STATE(2200), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(837), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3853), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [111398] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + 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(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3851), 1, + [112325] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(891), 1, anon_sym_LF, - STATE(2181), 1, + STATE(2201), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(889), 32, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 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(3849), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 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, - [111468] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [112369] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2182), 1, + STATE(2202), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111538] = 17, + [112439] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2183), 1, + STATE(2203), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111608] = 17, + [112509] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2184), 1, + STATE(2204), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111678] = 17, + [112579] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2185), 1, + STATE(2205), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111748] = 17, + [112649] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2186), 1, + STATE(2206), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111818] = 17, + [112719] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2187), 1, + STATE(2207), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111888] = 17, + [112789] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2188), 1, + STATE(2208), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [111958] = 17, + [112859] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2189), 1, + STATE(2209), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112028] = 17, + [112929] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2190), 1, + STATE(2210), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112098] = 17, + [112999] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2191), 1, + STATE(2211), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112168] = 17, + [113069] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2192), 1, + STATE(2212), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112238] = 17, + [113139] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2193), 1, + STATE(2213), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112308] = 17, + [113209] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3827), 1, anon_sym_LF, - STATE(2194), 1, + STATE(2214), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3825), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112378] = 17, + [113279] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3863), 1, anon_sym_LF, - STATE(2195), 1, + STATE(2215), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3861), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112448] = 17, + [113349] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3851), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2196), 1, + STATE(2216), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3849), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112518] = 17, + [113419] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3855), 1, + ACTIONS(3881), 1, anon_sym_LF, - STATE(2197), 1, + STATE(2217), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3853), 4, + ACTIONS(3879), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112588] = 19, + [113489] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3889), 1, + ACTIONS(3881), 1, anon_sym_LF, - STATE(1472), 1, - aux_sym_pipe_element_repeat1, - STATE(2198), 1, + STATE(2218), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3887), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [112662] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(913), 1, - anon_sym_LF, - STATE(2199), 1, - sym_comment, - ACTIONS(911), 32, + ACTIONS(3879), 4, 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, + ACTIONS(3795), 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, - [112706] = 4, - ACTIONS(143), 1, + [113559] = 17, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2200), 1, - sym_comment, - ACTIONS(764), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(766), 27, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_DOT, - 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, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - sym_short_flag, - [112750] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(3831), 1, anon_sym_LF, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - STATE(2201), 1, + STATE(2219), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 5, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_or, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [112818] = 23, - ACTIONS(143), 1, + [113629] = 17, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3892), 1, - anon_sym_PIPE, - ACTIONS(3894), 1, - anon_sym_if, - ACTIONS(3896), 1, - anon_sym_EQ_GT, - STATE(2202), 1, + ACTIONS(3881), 1, + anon_sym_LF, + STATE(2220), 1, sym_comment, - STATE(3326), 1, - aux_sym__match_or_pattern_repeat1, - STATE(3351), 1, - sym_match_guard, - ACTIONS(3663), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [112900] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(851), 1, - anon_sym_LF, - STATE(2203), 1, - sym_comment, - ACTIONS(849), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, + ACTIONS(3801), 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, - [112944] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(859), 1, - anon_sym_LF, - STATE(2204), 1, - sym_comment, - ACTIONS(857), 32, + ACTIONS(3879), 4, 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, + ACTIONS(3795), 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, + [113699] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [112988] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2205), 1, + STATE(2221), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 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, + ACTIONS(3807), 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, - [113042] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(2206), 1, - sym_comment, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3799), 4, 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, - [113086] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(2207), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 24, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_GT, - 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, - [113136] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(2208), 1, - sym_comment, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3795), 6, 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, - [113180] = 17, + [113769] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3900), 1, - anon_sym_LF, - ACTIONS(3916), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3918), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3920), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3922), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3924), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3926), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2209), 1, + ACTIONS(3881), 1, + anon_sym_LF, + STATE(2222), 1, sym_comment, - ACTIONS(3904), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3910), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3912), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3914), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3898), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3906), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3908), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3902), 6, + ACTIONS(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113250] = 17, + [113839] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(803), 1, + anon_sym_LF, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2210), 1, + STATE(2223), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(801), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [113320] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(2211), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 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, - [113376] = 17, + [113909] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3885), 1, + anon_sym_LF, + ACTIONS(3901), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3903), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3905), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3907), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3909), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3911), 1, anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2212), 1, + STATE(2224), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3889), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3895), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3897), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3899), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3883), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [113446] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(2213), 1, - sym_comment, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3891), 4, anon_sym_in, - anon_sym_RBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3893), 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(3887), 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, - [113490] = 17, + [113979] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2214), 1, + STATE(2225), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [113560] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(2215), 1, - sym_comment, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 26, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(3795), 6, anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - 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, - [113608] = 17, + [114049] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2216), 1, + STATE(2226), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [113678] = 4, + [114119] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(831), 1, anon_sym_LF, - STATE(2217), 1, + STATE(2227), 1, sym_comment, ACTIONS(829), 32, anon_sym_SEMI, @@ -195390,70 +195877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [113722] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2218), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [113792] = 5, + [114163] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(835), 1, anon_sym_LF, - STATE(2219), 1, + STATE(2228), 1, sym_comment, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(793), 30, + ACTIONS(833), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -195462,6 +195893,8 @@ 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, @@ -195484,69 +195917,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [113838] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2220), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [113908] = 4, + [114207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(2221), 1, + ACTIONS(3913), 1, + anon_sym_COLON, + STATE(2229), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(103), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, @@ -195577,90 +195958,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [113952] = 17, - ACTIONS(3), 1, + [114253] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2222), 1, + ACTIONS(3345), 1, + anon_sym_DOT, + STATE(1763), 1, + sym_path, + STATE(2074), 1, + sym_cell_path, + STATE(2230), 1, sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2187), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(725), 5, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [114022] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(2223), 1, - sym_comment, - ACTIONS(3731), 2, + ACTIONS(727), 23, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, + anon_sym_in, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 22, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, - 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, @@ -195674,67 +196002,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [114074] = 17, + [114305] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2224), 1, + STATE(2231), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114144] = 4, + [114375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(835), 1, anon_sym_LF, - STATE(2225), 1, + STATE(2232), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(833), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -195767,273 +196095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [114188] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2226), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [114258] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - STATE(2227), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(793), 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, - [114316] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2228), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [114386] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3934), 1, - anon_sym_LF, - STATE(2229), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3932), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [114456] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3930), 1, - anon_sym_LF, - STATE(2230), 1, - sym_comment, - ACTIONS(3731), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3737), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3729), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [114526] = 4, + [114419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(925), 1, anon_sym_LF, - STATE(2231), 1, + STATE(2233), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(923), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -196066,718 +196135,703 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [114570] = 17, + [114463] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2232), 1, + STATE(2234), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114640] = 17, + [114533] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_LF, - ACTIONS(323), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(325), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(327), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(329), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(331), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(333), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2233), 1, + ACTIONS(3831), 1, + anon_sym_LF, + STATE(2235), 1, sym_comment, - ACTIONS(307), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(317), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(319), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(321), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(301), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(309), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(313), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(305), 6, + ACTIONS(3829), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114710] = 17, + [114603] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3930), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2234), 1, + STATE(2236), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3928), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114780] = 12, + [114673] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - STATE(2235), 1, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3877), 1, + anon_sym_LF, + STATE(2237), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3875), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 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, - [114840] = 17, + [114743] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2236), 1, + STATE(2238), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114910] = 4, + [114813] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2237), 1, + STATE(2239), 1, sym_comment, - ACTIONS(829), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3829), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, - [114954] = 17, + [114883] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2238), 1, + STATE(2240), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115024] = 13, + [114953] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - STATE(2239), 1, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3881), 1, + anon_sym_LF, + STATE(2241), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 8, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [115086] = 17, + [115023] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3881), 1, anon_sym_LF, - STATE(2240), 1, + STATE(2242), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3879), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115156] = 17, + [115093] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3508), 1, - anon_sym_LF, - ACTIONS(3524), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3526), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3528), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3530), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3532), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3534), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2241), 1, + ACTIONS(3881), 1, + anon_sym_LF, + STATE(2243), 1, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3518), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3520), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3522), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3506), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3514), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3516), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3510), 6, + ACTIONS(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115226] = 17, + [115163] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2242), 1, + STATE(2244), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115296] = 4, + [115233] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(2243), 1, - sym_comment, - ACTIONS(829), 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(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [115340] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(795), 1, + ACTIONS(3881), 1, anon_sym_LF, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - STATE(2244), 1, + STATE(2245), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 7, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [115404] = 17, + [115303] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3877), 1, anon_sym_LF, - STATE(2245), 1, + STATE(2246), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3875), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115474] = 4, + [115373] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(929), 1, anon_sym_LF, - STATE(2246), 1, + STATE(2247), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(927), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -196810,264 +196864,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [115518] = 17, + [115417] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(887), 1, + anon_sym_LF, + STATE(2248), 1, + sym_comment, + ACTIONS(885), 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, - ACTIONS(3745), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, anon_sym_and, - ACTIONS(3751), 1, anon_sym_xor, - ACTIONS(3753), 1, anon_sym_or, - ACTIONS(3938), 1, + [115461] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2247), 1, + STATE(2249), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3829), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115588] = 15, + [115531] = 19, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3743), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - STATE(2248), 1, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3917), 1, + anon_sym_LF, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, + STATE(2250), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3915), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115654] = 17, + [115605] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(2249), 1, + STATE(2251), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115724] = 4, + [115675] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, - anon_sym_LF, - STATE(2250), 1, - sym_comment, - ACTIONS(829), 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, - [115768] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3881), 1, anon_sym_LF, - STATE(2251), 1, + STATE(2252), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3879), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115838] = 4, + [115745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(105), 1, anon_sym_LF, - STATE(2252), 1, + STATE(2253), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(103), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197100,67 +197158,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [115882] = 17, + [115789] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_LF, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2253), 1, + ACTIONS(3881), 1, + anon_sym_LF, + STATE(2254), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(793), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115952] = 4, + [115859] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(831), 1, + ACTIONS(941), 1, anon_sym_LF, - STATE(2254), 1, + STATE(2255), 1, sym_comment, - ACTIONS(829), 32, + ACTIONS(939), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197193,14 +197251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [115996] = 4, + [115903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(885), 1, + ACTIONS(899), 1, anon_sym_LF, - STATE(2255), 1, + STATE(2256), 1, sym_comment, - ACTIONS(883), 32, + ACTIONS(897), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197233,74 +197291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116040] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3538), 1, - anon_sym_LF, - ACTIONS(3554), 1, - anon_sym_bit_DASHand, - ACTIONS(3556), 1, - anon_sym_bit_DASHxor, - ACTIONS(3558), 1, - anon_sym_bit_DASHor, - ACTIONS(3560), 1, - anon_sym_and, - ACTIONS(3562), 1, - anon_sym_xor, - ACTIONS(3564), 1, - anon_sym_or, - STATE(2256), 1, - sym_comment, - ACTIONS(3542), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3548), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3550), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3552), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3536), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(3544), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3546), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3540), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116110] = 4, + [115947] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(105), 1, - anon_sym_LF, STATE(2257), 1, sym_comment, - ACTIONS(103), 32, + ACTIONS(799), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(797), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -197326,147 +197331,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116154] = 17, + [115991] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3881), 1, anon_sym_LF, STATE(2258), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3879), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116224] = 4, + [116061] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(921), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3823), 1, anon_sym_LF, STATE(2259), 1, sym_comment, - ACTIONS(919), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [116131] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [116268] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(929), 1, + ACTIONS(3881), 1, anon_sym_LF, STATE(2260), 1, sym_comment, - ACTIONS(927), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, - [116312] = 4, + [116201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(929), 1, + ACTIONS(831), 1, anon_sym_LF, STATE(2261), 1, sym_comment, - ACTIONS(927), 32, + ACTIONS(829), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197499,21 +197530,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116356] = 4, + [116245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(925), 1, - anon_sym_LF, STATE(2262), 1, sym_comment, - ACTIONS(923), 32, + ACTIONS(789), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(787), 31, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, anon_sym_GT, anon_sym_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, @@ -197539,67 +197570,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116400] = 17, + [116289] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3823), 1, anon_sym_LF, STATE(2263), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116470] = 4, + [116359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(909), 1, + ACTIONS(937), 1, anon_sym_LF, STATE(2264), 1, sym_comment, - ACTIONS(907), 32, + ACTIONS(935), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197632,67 +197663,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116514] = 17, + [116403] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3823), 1, anon_sym_LF, STATE(2265), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116584] = 4, + [116473] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(905), 1, + ACTIONS(851), 1, anon_sym_LF, STATE(2266), 1, sym_comment, - ACTIONS(903), 32, + ACTIONS(849), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197725,67 +197756,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116628] = 17, + [116517] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3881), 1, anon_sym_LF, STATE(2267), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3879), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116698] = 4, + [116587] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(893), 1, + ACTIONS(911), 1, anon_sym_LF, STATE(2268), 1, sym_comment, - ACTIONS(891), 32, + ACTIONS(909), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -197818,227 +197849,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [116742] = 4, + [116631] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(881), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3823), 1, anon_sym_LF, STATE(2269), 1, sym_comment, - ACTIONS(879), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [116701] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [116786] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(863), 1, + ACTIONS(3823), 1, anon_sym_LF, STATE(2270), 1, sym_comment, - ACTIONS(861), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3805), 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(3807), 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, - [116830] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2271), 1, - sym_comment, - ACTIONS(791), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(789), 31, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3799), 4, anon_sym_in, - anon_sym_DOT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [116771] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [116874] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(897), 1, + ACTIONS(3831), 1, anon_sym_LF, - STATE(2272), 1, + STATE(2271), 1, sym_comment, - ACTIONS(895), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3829), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, - [116918] = 17, + [116841] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(303), 1, - anon_sym_LF, - ACTIONS(323), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(325), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(327), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(329), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(331), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(333), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2273), 1, + ACTIONS(3823), 1, + anon_sym_LF, + STATE(2272), 1, sym_comment, - ACTIONS(307), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(317), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(319), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(321), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(301), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - ACTIONS(309), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(313), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(305), 6, + ACTIONS(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116988] = 4, + [116911] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(855), 1, + ACTIONS(907), 1, anon_sym_LF, - STATE(2274), 1, + STATE(2273), 1, sym_comment, - ACTIONS(853), 32, + ACTIONS(905), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -198071,147 +198101,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117032] = 17, + [116955] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3938), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(2275), 1, + STATE(2274), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3936), 4, + ACTIONS(3821), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117102] = 4, + [117025] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(867), 1, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3823), 1, anon_sym_LF, - STATE(2276), 1, + STATE(2275), 1, sym_comment, - ACTIONS(865), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, + [117095] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3809), 1, anon_sym_bit_DASHand, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, + ACTIONS(3813), 1, anon_sym_bit_DASHor, + ACTIONS(3815), 1, anon_sym_and, + ACTIONS(3817), 1, anon_sym_xor, + ACTIONS(3819), 1, anon_sym_or, - [117146] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(847), 1, + ACTIONS(3823), 1, anon_sym_LF, - STATE(2277), 1, + STATE(2276), 1, sym_comment, - ACTIONS(845), 32, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3797), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 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(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 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, - [117190] = 4, + [117165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(843), 1, + ACTIONS(867), 1, anon_sym_LF, - STATE(2278), 1, + STATE(2277), 1, sym_comment, - ACTIONS(841), 32, + ACTIONS(865), 32, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -198244,691 +198300,589 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [117234] = 17, + [117209] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3819), 1, anon_sym_or, - STATE(2279), 1, + ACTIONS(3823), 1, + anon_sym_LF, + STATE(2278), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3821), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117303] = 17, + [117279] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3922), 1, + anon_sym_LF, + ACTIONS(3938), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3940), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3942), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3944), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3946), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3948), 1, anon_sym_or, - STATE(2280), 1, + STATE(2279), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3926), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3932), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3934), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3936), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3920), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + ACTIONS(3928), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3930), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3924), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117372] = 4, + [117349] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2281), 1, - sym_comment, - ACTIONS(885), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(883), 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(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [117415] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2282), 1, + STATE(2280), 1, sym_comment, - ACTIONS(905), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(903), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3845), 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(3847), 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, - [117458] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2283), 1, - sym_comment, - ACTIONS(909), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(907), 30, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, 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, - [117501] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2284), 1, - sym_comment, - ACTIONS(867), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(865), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, + ACTIONS(3841), 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(3835), 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, - [117544] = 17, + [117418] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2285), 1, + STATE(2281), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117613] = 17, + [117487] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3658), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3660), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3662), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3664), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3666), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3668), 1, anon_sym_or, - STATE(2286), 1, + STATE(2282), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3548), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3550), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3646), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3652), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3654), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3656), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3648), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3650), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3644), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117682] = 17, + [117556] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3630), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3632), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3634), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3636), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3638), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3640), 1, anon_sym_or, - STATE(2287), 1, + STATE(2283), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3578), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3580), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3618), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3624), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3626), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3628), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3620), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3622), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3616), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117751] = 17, + [117625] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2288), 1, + STATE(2284), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117820] = 17, + [117694] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2289), 1, + STATE(2285), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117889] = 17, + [117763] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2290), 1, + STATE(2286), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [117958] = 17, + [117832] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2291), 1, + STATE(2287), 1, sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3865), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3867), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118027] = 17, + [117901] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2292), 1, + STATE(2288), 1, sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118096] = 4, + [117970] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2293), 1, + STATE(2289), 1, sym_comment, - ACTIONS(875), 2, + ACTIONS(863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(873), 30, + ACTIONS(861), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -198959,15 +198913,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118139] = 4, + [118013] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2294), 1, + STATE(2290), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(891), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(889), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -198998,1005 +198952,717 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [118182] = 17, + [118056] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2295), 1, + STATE(2291), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118251] = 17, + [118125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2296), 1, + STATE(2292), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, + ACTIONS(883), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(881), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [118320] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, + 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(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(2297), 1, - sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118389] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_COMMA, - STATE(2298), 1, - sym_comment, - ACTIONS(3940), 15, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3942), 16, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [118434] = 17, + [118168] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2299), 1, + STATE(2293), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3855), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118503] = 17, + [118237] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2300), 1, + STATE(2294), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118572] = 17, + [118306] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2301), 1, + STATE(2295), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3855), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118641] = 17, + [118375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2302), 1, + STATE(2296), 1, sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(839), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(837), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3827), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [118710] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, + 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(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(2303), 1, - sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118779] = 17, + [118418] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2304), 1, + STATE(2297), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118848] = 17, + [118487] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(367), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(369), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(371), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(373), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(375), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(377), 1, anon_sym_or, - STATE(2305), 1, + STATE(2298), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(309), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(311), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(351), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(361), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(363), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(365), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(353), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(357), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(349), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118917] = 17, + [118556] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2306), 1, + STATE(2299), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3825), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [118986] = 17, + [118625] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2307), 1, + STATE(2300), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119055] = 17, + [118694] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2308), 1, + STATE(2301), 1, sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119124] = 17, + [118763] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2309), 1, + STATE(2302), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3825), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119193] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2310), 1, - sym_comment, - ACTIONS(1671), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1673), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [119236] = 17, + [118832] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2311), 1, + STATE(2303), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119305] = 17, + [118901] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2312), 1, + STATE(2304), 1, sym_comment, - ACTIONS(3811), 2, + ACTIONS(3825), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3813), 2, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119374] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3948), 1, - anon_sym_COMMA, - STATE(2313), 1, - sym_comment, - ACTIONS(3950), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3946), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [119419] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2314), 1, - sym_comment, - ACTIONS(3954), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym__, - anon_sym_DOT_DOT, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3952), 23, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [119462] = 4, + [118970] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2315), 1, + STATE(2305), 1, sym_comment, - ACTIONS(929), 2, + ACTIONS(871), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(927), 30, + ACTIONS(869), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200027,15 +199693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119505] = 4, + [119013] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2316), 1, + STATE(2306), 1, sym_comment, - ACTIONS(843), 2, + ACTIONS(929), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(841), 30, + ACTIONS(927), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200066,93 +199732,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119548] = 4, + [119056] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2317), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2307), 1, sym_comment, - ACTIONS(929), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(927), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(3845), 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(3847), 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, - [119591] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2318), 1, - sym_comment, - ACTIONS(901), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(899), 30, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, - [119634] = 4, + [119125] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2319), 1, + STATE(2308), 1, sym_comment, - ACTIONS(851), 2, + ACTIONS(875), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(849), 30, + ACTIONS(873), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200183,62 +199823,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119677] = 17, + [119168] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2320), 1, + STATE(2309), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119746] = 4, + [119237] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2321), 1, + STATE(2310), 1, sym_comment, ACTIONS(831), 2, ts_builtin_sym_end, @@ -200274,118 +199914,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119789] = 17, + [119280] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2322), 1, + STATE(2311), 1, sym_comment, - ACTIONS(3811), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3813), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [119858] = 4, + [119349] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2323), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2312), 1, sym_comment, - ACTIONS(913), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(911), 30, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, + [119418] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [119901] = 4, + STATE(2313), 1, + sym_comment, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [119487] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2324), 1, + STATE(2314), 1, sym_comment, - ACTIONS(933), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(931), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3841), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - anon_sym_PLUS, + ACTIONS(801), 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, @@ -200404,67 +200112,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [119944] = 17, + [119536] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2325), 1, + STATE(2315), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, + ACTIONS(3875), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3938), 2, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120013] = 4, + [119605] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2326), 1, + STATE(2316), 1, sym_comment, - ACTIONS(839), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(837), 30, + ACTIONS(829), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200495,141 +200203,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120056] = 17, + [119648] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(359), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(361), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(363), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(365), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(367), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(369), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2327), 1, + STATE(2317), 1, sym_comment, - ACTIONS(301), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(303), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(343), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(353), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(355), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(357), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(345), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(349), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(341), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120125] = 17, + [119717] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2328), 1, + STATE(2318), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3938), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120194] = 4, + [119786] = 10, ACTIONS(3), 1, anon_sym_POUND, - STATE(2329), 1, + STATE(2319), 1, sym_comment, - ACTIONS(893), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(891), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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(801), 10, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -200638,76 +200352,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120237] = 17, + [119841] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2330), 1, + STATE(2320), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, + ACTIONS(3875), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3938), 2, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120306] = 5, + [119910] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2331), 1, + STATE(2321), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(105), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3831), 2, + ACTIONS(103), 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, - ACTIONS(793), 28, + 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, + [119953] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2322), 1, + sym_comment, + ACTIONS(831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(829), 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, @@ -200730,119 +200482,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120351] = 17, + [119996] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2332), 1, + STATE(2323), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120420] = 17, + [120065] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3970), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3972), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3974), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3976), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3978), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3980), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2333), 1, + STATE(2324), 1, sym_comment, - ACTIONS(3857), 2, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3859), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3958), 2, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120134] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2325), 1, + sym_comment, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3964), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3966), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3968), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3960), 4, + ACTIONS(3861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3962), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3956), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120489] = 4, + [120203] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2334), 1, + STATE(2326), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(887), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(885), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200873,33 +200677,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120532] = 8, + [120246] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2335), 1, + STATE(2327), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(915), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(913), 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, - ACTIONS(3831), 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, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [120289] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3964), 1, + anon_sym_bit_DASHand, + ACTIONS(3966), 1, + anon_sym_bit_DASHxor, + ACTIONS(3968), 1, + anon_sym_bit_DASHor, + ACTIONS(3970), 1, + anon_sym_and, + ACTIONS(3972), 1, + anon_sym_xor, + ACTIONS(3974), 1, + anon_sym_or, + STATE(2328), 1, + sym_comment, + ACTIONS(3883), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3885), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3958), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3960), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3829), 4, + ACTIONS(3962), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3954), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3956), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 20, + ACTIONS(3950), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120358] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2329), 1, + sym_comment, + ACTIONS(903), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(901), 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, @@ -200916,26 +200807,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120583] = 4, + [120401] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2336), 1, + STATE(2330), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3841), 4, + anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(801), 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, @@ -200955,15 +200848,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120626] = 4, + [120448] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2337), 1, + STATE(2331), 1, sym_comment, - ACTIONS(925), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(923), 30, + ACTIONS(833), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -200994,113 +200887,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120669] = 17, + [120491] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2338), 1, + STATE(2332), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, + ACTIONS(3875), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3938), 2, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120738] = 11, + [120560] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2339), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2333), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120629] = 19, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3915), 1, + anon_sym_SEMI, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, + STATE(2334), 1, + sym_comment, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 8, + [120702] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2335), 1, + sym_comment, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3875), 2, anon_sym_SEMI, anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120771] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(367), 1, anon_sym_bit_DASHand, + ACTIONS(369), 1, anon_sym_bit_DASHxor, + ACTIONS(371), 1, anon_sym_bit_DASHor, + ACTIONS(373), 1, anon_sym_and, + ACTIONS(375), 1, anon_sym_xor, + ACTIONS(377), 1, anon_sym_or, - [120795] = 4, + STATE(2336), 1, + sym_comment, + ACTIONS(309), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(311), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(351), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(361), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(363), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(365), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(353), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(357), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(349), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120840] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2340), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2337), 1, sym_comment, - ACTIONS(859), 2, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(857), 30, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [120909] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2338), 1, + sym_comment, + ACTIONS(933), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(931), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -201131,15 +201240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120838] = 4, + [120952] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2341), 1, + STATE(2339), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(925), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(923), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -201170,887 +201279,1034 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [120881] = 17, + [120995] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2342), 1, + STATE(2340), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [120950] = 17, + [121064] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(359), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(361), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(363), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(365), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(367), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(369), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2343), 1, + STATE(2341), 1, sym_comment, - ACTIONS(301), 2, + ACTIONS(3829), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(303), 2, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(343), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(353), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(355), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(357), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(345), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(349), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(341), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121019] = 12, + [121133] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - STATE(2344), 1, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2342), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(793), 7, - anon_sym_SEMI, - anon_sym_PIPE, + [121202] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [121078] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2345), 1, + STATE(2343), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(3821), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, + [121271] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [121121] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - STATE(2346), 1, + STATE(2344), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 6, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3835), 6, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [121340] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - ACTIONS(3823), 6, + STATE(2345), 1, + sym_comment, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121182] = 4, + [121409] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2347), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2346), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(801), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, + [121478] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [121225] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - STATE(2348), 1, + STATE(2347), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 5, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121288] = 4, + [121547] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2349), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2348), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(3821), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, - [121331] = 17, + [121616] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2350), 1, + STATE(2349), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121400] = 15, + [121685] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - STATE(2351), 1, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2350), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(793), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_xor, - anon_sym_or, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121465] = 17, + [121754] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2352), 1, + STATE(2351), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3938), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121534] = 19, + [121823] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3743), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3859), 1, anon_sym_or, - ACTIONS(3887), 1, + STATE(2352), 1, + sym_comment, + ACTIONS(3821), 2, anon_sym_SEMI, - ACTIONS(3982), 1, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1472), 1, - aux_sym_pipe_element_repeat1, - STATE(2353), 1, - sym_comment, - ACTIONS(3731), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121607] = 17, + [121892] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2354), 1, + STATE(2353), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121676] = 17, + [121961] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2354), 1, + sym_comment, + ACTIONS(1697), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1699), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [122004] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, STATE(2355), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121745] = 4, + [122073] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, STATE(2356), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(3829), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, - [121788] = 17, + [122142] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, STATE(2357), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3932), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3934), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121857] = 17, + [122211] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, STATE(2358), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121926] = 17, + ACTIONS(801), 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, + [122264] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, STATE(2359), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [121995] = 4, + [122333] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2360), 1, sym_comment, - ACTIONS(881), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(879), 30, + ACTIONS(829), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -202081,91 +202337,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122038] = 17, + [122376] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, STATE(2361), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3936), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3938), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122107] = 9, + [122445] = 5, ACTIONS(3), 1, anon_sym_POUND, STATE(2362), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3829), 4, + ACTIONS(801), 28, + 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_SLASH_SLASH, - ACTIONS(3823), 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(793), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, @@ -202177,110 +202429,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122160] = 6, + [122490] = 17, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, STATE(2363), 1, sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3831), 2, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3829), 4, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 24, - anon_sym_SEMI, - anon_sym_PIPE, + ACTIONS(3835), 6, 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, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + [122559] = 17, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, + ACTIONS(3853), 1, anon_sym_bit_DASHor, + ACTIONS(3855), 1, anon_sym_and, + ACTIONS(3857), 1, anon_sym_xor, + ACTIONS(3859), 1, anon_sym_or, - [122207] = 4, - ACTIONS(3), 1, - anon_sym_POUND, STATE(2364), 1, sym_comment, - ACTIONS(831), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(3825), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, - anon_sym_in, - anon_sym_STAR, + anon_sym_PLUS, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3839), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, - [122250] = 7, + [122628] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2365), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(843), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(841), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, + anon_sym_in, + anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3829), 4, - anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(793), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_in, + anon_sym_PLUS, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, anon_sym_EQ_EQ, @@ -202299,7 +202572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122299] = 4, + [122671] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2366), 1, @@ -202338,15 +202611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122342] = 4, + [122714] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(2367), 1, sym_comment, - ACTIONS(863), 2, + ACTIONS(847), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(861), 30, + ACTIONS(845), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -202377,95 +202650,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122385] = 17, + [122757] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, STATE(2368), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122454] = 10, - ACTIONS(3), 1, + [122826] = 5, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3982), 1, + anon_sym_COMMA, STATE(2369), 1, sym_comment, - ACTIONS(795), 2, + ACTIONS(3978), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3980), 16, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [122871] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2370), 1, + sym_comment, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(801), 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, - ACTIONS(793), 10, - anon_sym_SEMI, - anon_sym_PIPE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -202474,170 +202785,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122509] = 17, + [122922] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2370), 1, + STATE(2371), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(835), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(833), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [122578] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2371), 1, - sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122647] = 16, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, + 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(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - STATE(2372), 1, - sym_comment, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(793), 3, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_or, - ACTIONS(3827), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [122714] = 4, + [122965] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2373), 1, + STATE(2372), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(851), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(849), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -202668,587 +202863,621 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [122757] = 17, + [123008] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2374), 1, + STATE(2373), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(3881), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122826] = 17, + [123077] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2375), 1, + STATE(2374), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122895] = 17, + [123146] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2376), 1, + STATE(2375), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [122964] = 17, + [123215] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2377), 1, + STATE(2376), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123033] = 17, + [123284] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2378), 1, + STATE(2377), 1, sym_comment, - ACTIONS(793), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(795), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3861), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123102] = 17, + [123353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2379), 1, + STATE(2378), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(829), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [123171] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, + 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(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(2380), 1, + [123396] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2379), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123240] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(801), 8, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHand, - ACTIONS(3839), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(2381), 1, + [123453] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2380), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(829), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [123309] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [123496] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2382), 1, + STATE(2381), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(3863), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123378] = 17, + [123565] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3986), 1, + anon_sym_COMMA, + STATE(2382), 1, + sym_comment, + ACTIONS(3988), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3984), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [123610] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, STATE(2383), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3928), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(911), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(909), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [123447] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [123653] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2384), 1, + sym_comment, + ACTIONS(3992), 9, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3990), 23, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [123696] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2384), 1, + STATE(2385), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123516] = 4, + [123765] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2385), 1, + STATE(2386), 1, sym_comment, - ACTIONS(831), 2, + ACTIONS(855), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(829), 30, + ACTIONS(853), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -203279,54 +203508,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123559] = 4, + [123808] = 17, ACTIONS(3), 1, anon_sym_POUND, - STATE(2386), 1, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + ACTIONS(3855), 1, + anon_sym_and, + ACTIONS(3857), 1, + anon_sym_xor, + ACTIONS(3859), 1, + anon_sym_or, + STATE(2387), 1, sym_comment, - ACTIONS(835), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(833), 30, + ACTIONS(3837), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3843), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3845), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3861), 2, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_GT, - anon_sym_DASH, + ACTIONS(3863), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3841), 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(3835), 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, - [123602] = 4, + [123877] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2387), 1, + STATE(2388), 1, sym_comment, - ACTIONS(847), 2, + ACTIONS(907), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(845), 30, + ACTIONS(905), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -203357,223 +203599,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123645] = 17, + [123920] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2388), 1, + STATE(2389), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3928), 2, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3930), 2, + ACTIONS(3881), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123714] = 17, + [123989] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3998), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(4000), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(4002), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(4004), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(4006), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(4008), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2389), 1, + STATE(2390), 1, sym_comment, - ACTIONS(3898), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3900), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3986), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3992), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3994), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3996), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3988), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3990), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3984), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123783] = 17, + [124058] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2390), 1, + STATE(2391), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, + ACTIONS(879), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(877), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3827), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [123852] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [124101] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2391), 1, + STATE(2392), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [123921] = 4, + [124170] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2392), 1, + STATE(2393), 1, sym_comment, - ACTIONS(823), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(821), 30, + ACTIONS(829), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -203604,119 +203833,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [123964] = 17, + [124213] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2393), 1, + STATE(2394), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3875), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3877), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124033] = 17, + [124282] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2394), 1, + STATE(2395), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124102] = 4, + [124351] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2395), 1, + STATE(2396), 1, sym_comment, - ACTIONS(871), 2, + ACTIONS(859), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(869), 30, + ACTIONS(857), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -203747,67 +203976,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [124145] = 17, + [124394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2396), 1, + STATE(2397), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(829), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3827), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [124214] = 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, + [124437] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2397), 1, + STATE(2398), 1, sym_comment, - ACTIONS(897), 2, + ACTIONS(937), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(895), 30, + ACTIONS(935), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -203838,327 +204054,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [124257] = 17, + [124480] = 16, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2398), 1, + STATE(2399), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(801), 3, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_or, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124326] = 17, + [124547] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2399), 1, + STATE(2400), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3879), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3881), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124395] = 17, + [124616] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2400), 1, + STATE(2401), 1, sym_comment, - ACTIONS(3815), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3817), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(829), 30, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3827), 4, anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [124464] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [124659] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2401), 1, + STATE(2402), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3829), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3831), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124533] = 17, + [124728] = 15, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2402), 1, + STATE(2403), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, + ACTIONS(801), 4, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + anon_sym_xor, + anon_sym_or, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124602] = 17, + [124793] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2403), 1, + STATE(2404), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(3881), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124671] = 4, + [124862] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2404), 1, + STATE(2405), 1, sym_comment, - ACTIONS(889), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(887), 30, + ACTIONS(829), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -204189,119 +204389,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [124714] = 17, + [124905] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2405), 1, + STATE(2406), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, + ACTIONS(3875), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(3877), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124783] = 17, + [124974] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3620), 1, + STATE(2407), 1, + sym_comment, + ACTIONS(867), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(865), 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, - ACTIONS(3622), 1, anon_sym_bit_DASHxor, - ACTIONS(3624), 1, anon_sym_bit_DASHor, - ACTIONS(3626), 1, anon_sym_and, - ACTIONS(3628), 1, anon_sym_xor, - ACTIONS(3630), 1, anon_sym_or, - STATE(2406), 1, + [125017] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3849), 1, + anon_sym_bit_DASHand, + ACTIONS(3851), 1, + anon_sym_bit_DASHxor, + ACTIONS(3853), 1, + anon_sym_bit_DASHor, + STATE(2408), 1, sym_comment, - ACTIONS(3506), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3508), 2, + ACTIONS(803), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3608), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3614), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3616), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3618), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3610), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3612), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3606), 6, + ACTIONS(801), 5, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [124852] = 4, + [125080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2407), 1, + STATE(2409), 1, sym_comment, - ACTIONS(921), 2, + ACTIONS(899), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(919), 30, + ACTIONS(897), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -204332,15 +204568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [124895] = 4, + [125123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2408), 1, + STATE(2410), 1, sym_comment, - ACTIONS(105), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(103), 30, + ACTIONS(829), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_GT, @@ -204371,720 +204607,608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [124938] = 17, + [125166] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(4008), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(4010), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(4012), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(4014), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(4016), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(4018), 1, anon_sym_or, - STATE(2409), 1, + STATE(2411), 1, sym_comment, - ACTIONS(3815), 2, + ACTIONS(3920), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3817), 2, + ACTIONS(3922), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3825), 2, + ACTIONS(3996), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(4002), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(4004), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(4006), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3827), 4, + ACTIONS(3998), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(4000), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3994), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125007] = 17, + [125235] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2410), 1, + STATE(2412), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125076] = 17, + [125304] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2411), 1, + STATE(2413), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125145] = 4, + [125373] = 13, ACTIONS(3), 1, anon_sym_POUND, - STATE(2412), 1, - sym_comment, - ACTIONS(855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(853), 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(3849), 1, anon_sym_bit_DASHand, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [125188] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2413), 1, + STATE(2414), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(801), 6, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125257] = 17, + [125434] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3649), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3651), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3653), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3655), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3657), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3659), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2414), 1, + STATE(2415), 1, sym_comment, - ACTIONS(3536), 2, + ACTIONS(3821), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3538), 2, + ACTIONS(3823), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3637), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3643), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3645), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3647), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3639), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3641), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3635), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125326] = 17, + [125503] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2415), 1, + STATE(2416), 1, sym_comment, ACTIONS(3825), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3827), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3853), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3855), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125395] = 17, + [125572] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2416), 1, + STATE(2417), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3821), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(3823), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125464] = 17, + [125641] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2417), 1, + STATE(2418), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(831), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(829), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [125533] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [125684] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2418), 1, + STATE(2419), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(3881), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125602] = 17, + [125753] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, - anon_sym_bit_DASHxor, - ACTIONS(3841), 1, - anon_sym_bit_DASHor, - ACTIONS(3843), 1, - anon_sym_and, - ACTIONS(3845), 1, - anon_sym_xor, - ACTIONS(3847), 1, - anon_sym_or, - STATE(2419), 1, + STATE(2420), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(803), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125671] = 17, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(801), 7, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, anon_sym_and, - ACTIONS(3845), 1, anon_sym_xor, - ACTIONS(3847), 1, anon_sym_or, - STATE(2420), 1, + [125812] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2421), 1, sym_comment, - ACTIONS(3825), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3831), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3835), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3849), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(941), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(939), 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(3829), 4, anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 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, - [125740] = 17, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [125855] = 17, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3837), 1, + ACTIONS(3849), 1, anon_sym_bit_DASHand, - ACTIONS(3839), 1, + ACTIONS(3851), 1, anon_sym_bit_DASHxor, - ACTIONS(3841), 1, + ACTIONS(3853), 1, anon_sym_bit_DASHor, - ACTIONS(3843), 1, + ACTIONS(3855), 1, anon_sym_and, - ACTIONS(3845), 1, + ACTIONS(3857), 1, anon_sym_xor, - ACTIONS(3847), 1, + ACTIONS(3859), 1, anon_sym_or, - STATE(2421), 1, + STATE(2422), 1, sym_comment, - ACTIONS(3825), 2, + ACTIONS(3837), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3831), 2, + ACTIONS(3843), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3833), 2, + ACTIONS(3845), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3835), 2, + ACTIONS(3847), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3849), 2, + ACTIONS(3879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3851), 2, + ACTIONS(3881), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3827), 4, + ACTIONS(3839), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3829), 4, + ACTIONS(3841), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3823), 6, + ACTIONS(3835), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [125809] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(4010), 15, - sym_cmd_identifier, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_not, - anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4012), 16, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_EQ, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_DASHinf, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [125851] = 4, - ACTIONS(143), 1, + [125924] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(2423), 1, sym_comment, - ACTIONS(849), 6, + ACTIONS(897), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(851), 25, + ACTIONS(899), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205110,19 +205234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [125893] = 4, - ACTIONS(143), 1, + [125966] = 4, + ACTIONS(145), 1, anon_sym_POUND, STATE(2424), 1, sym_comment, - ACTIONS(923), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(925), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205148,38 +205272,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [125935] = 10, - ACTIONS(143), 1, + [126008] = 18, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3809), 1, + anon_sym_bit_DASHand, + ACTIONS(3811), 1, + anon_sym_bit_DASHxor, + ACTIONS(3813), 1, + anon_sym_bit_DASHor, + ACTIONS(3815), 1, + anon_sym_and, + ACTIONS(3817), 1, + anon_sym_xor, + ACTIONS(3819), 1, + anon_sym_or, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, STATE(2425), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(3797), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3803), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3805), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3807), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3799), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3801), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3795), 6, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT2, - ACTIONS(3689), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126078] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2426), 1, + sym_comment, + ACTIONS(865), 6, + anon_sym_GT, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(867), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 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, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [126120] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2427), 1, + sym_comment, + ACTIONS(931), 6, + anon_sym_GT, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(933), 25, anon_sym_DASH_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, @@ -205192,19 +205400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [125989] = 4, - ACTIONS(143), 1, + [126162] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2426), 1, + STATE(2428), 1, sym_comment, - ACTIONS(907), 6, + ACTIONS(881), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(909), 25, + ACTIONS(883), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205230,19 +205438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126031] = 4, - ACTIONS(143), 1, + [126204] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2427), 1, + STATE(2429), 1, sym_comment, - ACTIONS(903), 6, + ACTIONS(103), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(905), 25, + ACTIONS(105), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205268,19 +205476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126073] = 4, - ACTIONS(143), 1, + [126246] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2428), 1, + STATE(2430), 1, sym_comment, - ACTIONS(927), 6, + ACTIONS(885), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(929), 25, + ACTIONS(887), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205306,19 +205514,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126115] = 4, - ACTIONS(143), 1, + [126288] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2429), 1, + STATE(2431), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(901), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(903), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205344,19 +205552,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126157] = 4, - ACTIONS(143), 1, + [126330] = 10, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2430), 1, + STATE(2432), 1, sym_comment, - ACTIONS(927), 6, + ACTIONS(3673), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 15, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [126384] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2433), 1, + sym_comment, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(929), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205382,19 +205634,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126199] = 4, - ACTIONS(143), 1, + [126426] = 8, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(2434), 1, + sym_comment, + ACTIONS(801), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(803), 21, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + 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, + sym_short_flag, + [126476] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2435), 1, sym_comment, - ACTIONS(891), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(893), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205420,19 +205714,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126241] = 4, - ACTIONS(143), 1, + [126518] = 11, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2432), 1, + STATE(2436), 1, + sym_comment, + ACTIONS(3673), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, + anon_sym_mod, + anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(803), 11, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [126574] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2437), 1, sym_comment, - ACTIONS(879), 6, + ACTIONS(833), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(881), 25, + ACTIONS(835), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205458,19 +205797,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126283] = 4, - ACTIONS(143), 1, + [126616] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2433), 1, + STATE(2438), 1, sym_comment, - ACTIONS(861), 6, + ACTIONS(833), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(863), 25, + ACTIONS(835), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205496,27 +205835,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126325] = 8, - ACTIONS(143), 1, + [126658] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2434), 1, + STATE(2439), 1, sym_comment, - ACTIONS(793), 2, + ACTIONS(829), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3695), 2, + anon_sym_LT2, + ACTIONS(831), 25, + anon_sym_DASH_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, + sym_short_flag, + [126700] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2440), 1, + sym_comment, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(795), 21, + ACTIONS(801), 4, + anon_sym_GT, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(803), 21, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205538,57 +205914,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126375] = 4, - ACTIONS(143), 1, + [126748] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2435), 1, + STATE(2441), 1, sym_comment, - ACTIONS(4014), 15, - sym_cmd_identifier, + ACTIONS(4022), 9, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_not, + anon_sym__, anon_sym_DOT_DOT, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, - anon_sym_inf, - anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4016), 16, + ACTIONS(4020), 22, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, + anon_sym_inf, anon_sym_DASHinf, + anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [126417] = 4, - ACTIONS(143), 1, + [126790] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2442), 1, sym_comment, - ACTIONS(919), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(921), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205614,19 +205990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126459] = 4, - ACTIONS(143), 1, + [126832] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2437), 1, + STATE(2443), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(909), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(911), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205652,19 +206028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126501] = 4, - ACTIONS(143), 1, + [126874] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2438), 1, + STATE(2444), 1, sym_comment, - ACTIONS(845), 6, + ACTIONS(913), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(847), 25, + ACTIONS(915), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205690,19 +206066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126543] = 4, - ACTIONS(143), 1, + [126916] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2439), 1, + STATE(2445), 1, sym_comment, - ACTIONS(103), 6, + ACTIONS(837), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(105), 25, + ACTIONS(839), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205728,24 +206104,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126585] = 4, - ACTIONS(143), 1, + [126958] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2440), 1, + STATE(2446), 1, sym_comment, - ACTIONS(841), 6, + ACTIONS(3685), 2, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + ACTIONS(801), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(843), 25, + ACTIONS(803), 23, anon_sym_DASH_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, @@ -205766,19 +206143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126627] = 4, - ACTIONS(143), 1, + [127002] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2441), 1, + STATE(2447), 1, sym_comment, - ACTIONS(837), 6, + ACTIONS(841), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(839), 25, + ACTIONS(843), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205804,42 +206181,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126669] = 11, - ACTIONS(143), 1, + [127044] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2442), 1, + STATE(2448), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(845), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(847), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 11, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, anon_sym_bit_DASHand, @@ -205849,71 +206219,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126725] = 18, + [127086] = 18, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, + ACTIONS(3160), 1, anon_sym_PIPE, - ACTIONS(3743), 1, + ACTIONS(3809), 1, anon_sym_bit_DASHand, - ACTIONS(3745), 1, + ACTIONS(3811), 1, anon_sym_bit_DASHxor, - ACTIONS(3747), 1, + ACTIONS(3813), 1, anon_sym_bit_DASHor, - ACTIONS(3749), 1, + ACTIONS(3815), 1, anon_sym_and, - ACTIONS(3751), 1, + ACTIONS(3817), 1, anon_sym_xor, - ACTIONS(3753), 1, + ACTIONS(3819), 1, anon_sym_or, - ACTIONS(3982), 1, + ACTIONS(3976), 1, anon_sym_LF, - STATE(1472), 1, + STATE(1484), 1, aux_sym_pipe_element_repeat1, - STATE(2443), 1, + STATE(2449), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(3797), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3737), 2, + ACTIONS(3803), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, + ACTIONS(3805), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3741), 2, + ACTIONS(3807), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3733), 4, + ACTIONS(3799), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3735), 4, + ACTIONS(3801), 4, anon_sym_STAR, anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, + ACTIONS(3795), 6, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [126795] = 4, - ACTIONS(143), 1, + [127156] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2444), 1, + STATE(2450), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(905), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(907), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205939,19 +206309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126837] = 4, - ACTIONS(143), 1, + [127198] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2445), 1, + STATE(2451), 1, sym_comment, - ACTIONS(853), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(855), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -205977,60 +206347,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126879] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2446), 1, - sym_comment, - ACTIONS(3695), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3697), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(793), 4, - anon_sym_GT, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(795), 21, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - 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, - sym_short_flag, - [126927] = 4, - ACTIONS(143), 1, + [127240] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2447), 1, + STATE(2452), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(849), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(851), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206056,25 +206385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [126969] = 5, - ACTIONS(143), 1, + [127282] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2448), 1, + STATE(2453), 1, sym_comment, - ACTIONS(3697), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(793), 6, + ACTIONS(853), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(795), 23, + ACTIONS(855), 25, anon_sym_DASH_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, @@ -206095,19 +206423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127013] = 4, - ACTIONS(143), 1, + [127324] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2449), 1, + STATE(2454), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(857), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(859), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206133,57 +206461,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127055] = 4, - ACTIONS(143), 1, + [127366] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2450), 1, + STATE(2455), 1, sym_comment, - ACTIONS(4020), 9, + ACTIONS(4024), 15, + sym_cmd_identifier, anon_sym_DOLLAR, anon_sym_DASH, - anon_sym__, + anon_sym_not, anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, aux_sym_val_number_token1, aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4018), 22, + ACTIONS(4026), 16, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_not, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_EQ, - sym_val_nothing, - anon_sym_true, - anon_sym_false, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, - anon_sym_inf, anon_sym_DASHinf, - anon_sym_NaN, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127097] = 4, - ACTIONS(143), 1, + [127408] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2451), 1, + STATE(2456), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(923), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(925), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206209,19 +206537,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127139] = 4, - ACTIONS(143), 1, + [127450] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(2457), 1, sym_comment, - ACTIONS(931), 6, + ACTIONS(939), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(933), 25, + ACTIONS(941), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206247,74 +206575,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127181] = 12, - ACTIONS(143), 1, + [127492] = 9, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2453), 1, + STATE(2458), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(801), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(795), 9, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - sym_short_flag, - [127239] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2454), 1, - sym_comment, - ACTIONS(829), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(803), 19, anon_sym_DASH_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, @@ -206331,57 +206618,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127281] = 13, - ACTIONS(143), 1, + [127544] = 12, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3707), 1, - anon_sym_bit_DASHand, - STATE(2455), 1, + STATE(2459), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 8, + ACTIONS(803), 9, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHand, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [127341] = 4, - ACTIONS(143), 1, + [127602] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2456), 1, + STATE(2460), 1, sym_comment, ACTIONS(829), 6, anon_sym_GT, @@ -206416,119 +206702,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127383] = 18, - ACTIONS(3), 1, + [127644] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3743), 1, - anon_sym_bit_DASHand, - ACTIONS(3745), 1, - anon_sym_bit_DASHxor, - ACTIONS(3747), 1, - anon_sym_bit_DASHor, - ACTIONS(3749), 1, - anon_sym_and, - ACTIONS(3751), 1, - anon_sym_xor, - ACTIONS(3753), 1, - anon_sym_or, - ACTIONS(3982), 1, - anon_sym_LF, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, - STATE(2457), 1, + STATE(2461), 1, sym_comment, - ACTIONS(3731), 2, + ACTIONS(869), 6, + anon_sym_GT, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PLUS, - ACTIONS(3737), 2, + anon_sym_LT2, + ACTIONS(871), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3739), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3741), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3733), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3735), 4, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3729), 6, - anon_sym_GT, + 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, - [127453] = 14, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3707), 1, + 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(3709), 1, anon_sym_bit_DASHxor, - STATE(2458), 1, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + sym_short_flag, + [127686] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2462), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(873), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(875), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(3691), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3703), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 7, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [127515] = 4, - ACTIONS(143), 1, + [127728] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2459), 1, + STATE(2463), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(889), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(891), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206554,12 +206816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127557] = 4, - ACTIONS(143), 1, + [127770] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2464), 1, sym_comment, - ACTIONS(4024), 9, + ACTIONS(4030), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym__, @@ -206569,7 +206831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4022), 22, + ACTIONS(4028), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -206592,71 +206854,75 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [127599] = 4, - ACTIONS(143), 1, + [127812] = 13, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2461), 1, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + STATE(2465), 1, sym_comment, - ACTIONS(883), 6, + ACTIONS(3673), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(885), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 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, + ACTIONS(803), 8, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_bit_DASHxor, anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [127641] = 9, - ACTIONS(143), 1, + [127872] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2466), 1, sym_comment, - ACTIONS(793), 2, + ACTIONS(829), 6, anon_sym_GT, - anon_sym_LT2, - ACTIONS(3689), 2, anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(831), 25, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(795), 19, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -206673,19 +206939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127693] = 4, - ACTIONS(143), 1, + [127914] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2467), 1, sym_comment, - ACTIONS(887), 6, + ACTIONS(927), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(889), 25, + ACTIONS(929), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206711,68 +206977,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127735] = 15, - ACTIONS(143), 1, + [127956] = 14, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, - anon_sym_bit_DASHor, - STATE(2464), 1, + STATE(2468), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 6, + ACTIONS(803), 7, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_bit_DASHor, anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [127799] = 4, - ACTIONS(143), 1, + [128018] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2469), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(935), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(937), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206798,19 +207063,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127841] = 4, - ACTIONS(143), 1, + [128060] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2466), 1, + STATE(2470), 1, sym_comment, - ACTIONS(911), 6, + ACTIONS(877), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(913), 25, + ACTIONS(879), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206836,19 +207101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127883] = 4, - ACTIONS(143), 1, + [128102] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2467), 1, + STATE(2471), 1, sym_comment, - ACTIONS(829), 6, + ACTIONS(861), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(831), 25, + ACTIONS(863), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206874,19 +207139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127925] = 4, - ACTIONS(143), 1, + [128144] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2468), 1, + STATE(2472), 1, sym_comment, - ACTIONS(833), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(835), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -206912,60 +207177,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [127967] = 16, - ACTIONS(143), 1, + [128186] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3707), 1, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, - anon_sym_and, - STATE(2469), 1, + STATE(2473), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(795), 5, + ACTIONS(803), 6, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, sym_short_flag, - [128033] = 4, - ACTIONS(143), 1, + [128250] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2470), 1, + STATE(2474), 1, sym_comment, ACTIONS(829), 6, anon_sym_GT, @@ -207000,108 +207264,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [128075] = 17, - ACTIONS(143), 1, + [128292] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3707), 1, + STATE(2475), 1, + sym_comment, + ACTIONS(4032), 15, + sym_cmd_identifier, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_not, + anon_sym_DOT_DOT, + sym_val_nothing, + anon_sym_true, + anon_sym_false, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + anon_sym_inf, + anon_sym_NaN, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4034), 16, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_DASHinf, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128334] = 16, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3695), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3699), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3701), 1, anon_sym_and, - ACTIONS(3715), 1, - anon_sym_xor, - STATE(2471), 1, + STATE(2476), 1, sym_comment, - ACTIONS(3685), 2, + ACTIONS(3673), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, + ACTIONS(3677), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3693), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(795), 4, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_or, - sym_short_flag, - ACTIONS(3691), 4, + ACTIONS(3679), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3691), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128143] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2472), 1, - sym_comment, - ACTIONS(873), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(875), 25, + ACTIONS(803), 5, anon_sym_DASH_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, sym_short_flag, - [128185] = 4, - ACTIONS(143), 1, + [128400] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2477), 1, sym_comment, - ACTIONS(895), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(897), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -207127,57 +207390,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [128227] = 4, - ACTIONS(143), 1, + [128442] = 17, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2474), 1, + ACTIONS(3695), 1, + anon_sym_bit_DASHand, + ACTIONS(3697), 1, + anon_sym_bit_DASHxor, + ACTIONS(3699), 1, + anon_sym_bit_DASHor, + ACTIONS(3701), 1, + anon_sym_and, + ACTIONS(3703), 1, + anon_sym_xor, + STATE(2478), 1, sym_comment, - ACTIONS(857), 6, + ACTIONS(3673), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(859), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, 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, + ACTIONS(3693), 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, + ACTIONS(803), 4, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_or, sym_short_flag, - [128269] = 4, - ACTIONS(143), 1, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128510] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2475), 1, + STATE(2479), 1, sym_comment, - ACTIONS(821), 6, + ACTIONS(829), 6, anon_sym_GT, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(823), 25, + ACTIONS(831), 25, anon_sym_DASH_DASH, anon_sym_in, anon_sym_LBRACE, @@ -207203,10 +207479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [128311] = 4, - ACTIONS(143), 1, + [128552] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2480), 1, sym_comment, ACTIONS(829), 6, anon_sym_GT, @@ -207241,390 +207517,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, sym_short_flag, - [128353] = 4, - ACTIONS(143), 1, + [128594] = 18, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2477), 1, - sym_comment, - ACTIONS(869), 6, - anon_sym_GT, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(871), 25, - anon_sym_DASH_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, + ACTIONS(3695), 1, anon_sym_bit_DASHand, + ACTIONS(3697), 1, anon_sym_bit_DASHxor, + ACTIONS(3699), 1, anon_sym_bit_DASHor, + ACTIONS(3701), 1, anon_sym_and, + ACTIONS(3703), 1, anon_sym_xor, + ACTIONS(3705), 1, anon_sym_or, - sym_short_flag, - [128395] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2478), 1, + STATE(2481), 1, sym_comment, - ACTIONS(899), 6, + ACTIONS(3673), 2, anon_sym_GT, + anon_sym_LT2, + ACTIONS(3677), 2, anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3683), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(901), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3685), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3687), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3689), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3693), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(803), 3, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + ACTIONS(3679), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3691), 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, + [128664] = 19, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, anon_sym_bit_DASHand, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, + ACTIONS(3767), 1, anon_sym_bit_DASHor, + ACTIONS(3778), 1, anon_sym_and, + ACTIONS(3780), 1, anon_sym_xor, + ACTIONS(3782), 1, anon_sym_or, - sym_short_flag, - [128437] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2479), 1, + STATE(2482), 1, sym_comment, - ACTIONS(865), 6, + ACTIONS(3743), 2, anon_sym_GT, - anon_sym_DASH, + anon_sym_LT2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(867), 25, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, + ACTIONS(3761), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(4036), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(3747), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(3759), 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, - sym_short_flag, - [128479] = 18, - ACTIONS(143), 1, + [128735] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3707), 1, + ACTIONS(3745), 1, + anon_sym_DASH, + ACTIONS(3755), 1, + anon_sym_PLUS, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3709), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3711), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3713), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3715), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3717), 1, + ACTIONS(3782), 1, anon_sym_or, - STATE(2480), 1, + ACTIONS(4038), 1, + anon_sym_LBRACE, + STATE(2483), 1, sym_comment, - ACTIONS(3685), 2, + STATE(2801), 1, + sym_block, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3689), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3695), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3697), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3699), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3701), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3705), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(795), 3, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - ACTIONS(3691), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3703), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128549] = 20, - ACTIONS(143), 1, + [128808] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - ACTIONS(4026), 1, - anon_sym_LBRACE, - STATE(2481), 1, - sym_comment, - STATE(2790), 1, + STATE(574), 1, sym_block, - ACTIONS(3663), 2, + STATE(2484), 1, + sym_comment, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128622] = 20, - ACTIONS(143), 1, + [128881] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - ACTIONS(4028), 1, - anon_sym_LBRACE, - STATE(2482), 1, - sym_comment, - STATE(2952), 1, + STATE(696), 1, sym_block, - ACTIONS(3663), 2, + STATE(2485), 1, + sym_comment, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128695] = 19, - ACTIONS(143), 1, + [128954] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - STATE(2483), 1, + ACTIONS(4038), 1, + anon_sym_LBRACE, + STATE(2486), 1, sym_comment, - ACTIONS(3663), 2, + STATE(2861), 1, + sym_block, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(4030), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128766] = 19, - ACTIONS(143), 1, + [129027] = 20, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - STATE(2484), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(2487), 1, sym_comment, - ACTIONS(2479), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3663), 2, + STATE(3021), 1, + sym_block, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [128837] = 5, - ACTIONS(143), 1, + [129100] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4032), 1, + ACTIONS(4042), 1, sym__long_flag_identifier, - STATE(2485), 1, + STATE(2488), 1, sym_comment, - ACTIONS(1299), 14, + ACTIONS(1307), 14, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_not, @@ -207639,7 +207908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1303), 15, + ACTIONS(1311), 15, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -207655,170 +207924,116 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [128880] = 19, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3665), 1, - anon_sym_DASH, - ACTIONS(3675), 1, - anon_sym_PLUS, - ACTIONS(3777), 1, - anon_sym_bit_DASHand, - ACTIONS(3799), 1, - anon_sym_bit_DASHxor, - ACTIONS(3801), 1, - anon_sym_bit_DASHor, - ACTIONS(3803), 1, - anon_sym_and, - ACTIONS(3805), 1, - anon_sym_xor, - ACTIONS(3807), 1, - anon_sym_or, - STATE(2486), 1, - sym_comment, - ACTIONS(3663), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(3669), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(3671), 2, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, - anon_sym_mod, - anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - ACTIONS(3681), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(4034), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(3667), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(3679), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [128951] = 20, - ACTIONS(143), 1, + [129143] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - STATE(648), 1, - sym_block, - STATE(2487), 1, + STATE(2489), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(2489), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [129024] = 20, - ACTIONS(143), 1, + [129214] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - STATE(581), 1, - sym_block, - STATE(2488), 1, + STATE(2490), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(4044), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [129097] = 4, - ACTIONS(143), 1, + [129285] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2491), 1, sym_comment, - ACTIONS(1402), 8, + ACTIONS(1459), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -207827,7 +208042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1404), 21, + ACTIONS(1461), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -207849,63 +208064,63 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129137] = 19, - ACTIONS(143), 1, + [129325] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - ACTIONS(4036), 1, + ACTIONS(4046), 1, anon_sym_LBRACE, - STATE(2490), 1, + STATE(2492), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [129207] = 4, - ACTIONS(143), 1, + [129395] = 4, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2491), 1, + STATE(2493), 1, sym_comment, - ACTIONS(1390), 8, + ACTIONS(1447), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -207914,7 +208129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1392), 21, + ACTIONS(1449), 21, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -207936,87 +208151,65 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [129247] = 19, - ACTIONS(143), 1, + [129435] = 19, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3665), 1, + ACTIONS(3745), 1, anon_sym_DASH, - ACTIONS(3675), 1, + ACTIONS(3755), 1, anon_sym_PLUS, - ACTIONS(3777), 1, + ACTIONS(3763), 1, anon_sym_bit_DASHand, - ACTIONS(3799), 1, + ACTIONS(3765), 1, anon_sym_bit_DASHxor, - ACTIONS(3801), 1, + ACTIONS(3767), 1, anon_sym_bit_DASHor, - ACTIONS(3803), 1, + ACTIONS(3778), 1, anon_sym_and, - ACTIONS(3805), 1, + ACTIONS(3780), 1, anon_sym_xor, - ACTIONS(3807), 1, + ACTIONS(3782), 1, anon_sym_or, - ACTIONS(4038), 1, + ACTIONS(4048), 1, anon_sym_LBRACE, - STATE(2492), 1, + STATE(2494), 1, sym_comment, - ACTIONS(3663), 2, + ACTIONS(3743), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(3669), 2, + ACTIONS(3749), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3671), 2, + ACTIONS(3751), 2, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, - ACTIONS(3673), 2, + ACTIONS(3753), 2, anon_sym_mod, anon_sym_SLASH_SLASH, - ACTIONS(3677), 2, + ACTIONS(3757), 2, anon_sym_bit_DASHshl, anon_sym_bit_DASHshr, - ACTIONS(3681), 2, + ACTIONS(3761), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(3667), 4, + ACTIONS(3747), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(3679), 4, + ACTIONS(3759), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [129317] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(768), 1, - anon_sym_DASH, - STATE(2493), 1, - sym_comment, - ACTIONS(770), 14, - 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_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [129343] = 4, - ACTIONS(143), 1, + [129505] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(887), 1, + ACTIONS(779), 1, anon_sym_DASH, - STATE(2494), 1, + STATE(2495), 1, sym_comment, - ACTIONS(889), 14, + ACTIONS(781), 14, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -208031,14 +208224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [129369] = 4, - ACTIONS(143), 1, + [129531] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(764), 1, + ACTIONS(775), 1, anon_sym_DASH, - STATE(2495), 1, + STATE(2496), 1, sym_comment, - ACTIONS(766), 14, + ACTIONS(777), 14, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -208053,60 +208246,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [129395] = 14, - ACTIONS(143), 1, + [129557] = 14, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4040), 1, + ACTIONS(4050), 1, sym_identifier, - ACTIONS(4045), 1, + ACTIONS(4055), 1, anon_sym_DOLLAR, - ACTIONS(4048), 1, + ACTIONS(4058), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4051), 1, + ACTIONS(4061), 1, anon_sym_DASH_DASH, - ACTIONS(4054), 1, + ACTIONS(4064), 1, anon_sym_DASH, - STATE(2497), 1, + STATE(2498), 1, sym_param_long_flag, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - STATE(2496), 2, + STATE(2497), 2, sym_comment, aux_sym_parameter_parens_repeat1, - ACTIONS(4043), 3, + ACTIONS(4053), 3, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - [129441] = 11, - ACTIONS(143), 1, + [129603] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4059), 1, + ACTIONS(4069), 1, anon_sym_EQ, - ACTIONS(4061), 1, + ACTIONS(4071), 1, anon_sym_COLON, - ACTIONS(4063), 1, + ACTIONS(4073), 1, anon_sym_COMMA, - ACTIONS(4065), 1, + ACTIONS(4075), 1, anon_sym_LPAREN, - ACTIONS(4067), 1, + ACTIONS(4077), 1, anon_sym_DASH, - STATE(2497), 1, + STATE(2498), 1, sym_comment, - STATE(2509), 1, + STATE(2512), 1, sym_flag_capsule, - STATE(2540), 1, + STATE(2564), 1, sym_param_type, - STATE(2541), 1, + STATE(2565), 1, sym_param_value, - ACTIONS(4057), 7, + ACTIONS(4067), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -208114,357 +208307,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [129481] = 10, - ACTIONS(143), 1, + [129643] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2763), 1, + ACTIONS(913), 1, + anon_sym_DASH, + STATE(2499), 1, + sym_comment, + ACTIONS(915), 14, + anon_sym_EQ, sym_identifier, - ACTIONS(4069), 1, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - STATE(1791), 1, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [129669] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2771), 1, + sym_identifier, + ACTIONS(4079), 1, + anon_sym_DOLLAR, + STATE(1749), 1, sym_val_number, - STATE(1930), 1, + STATE(1790), 1, sym__var, - STATE(2343), 1, + STATE(2163), 1, sym_val_variable, - STATE(2498), 1, + STATE(2500), 1, sym_comment, - STATE(3284), 1, + STATE(2952), 1, sym__where_predicate, - ACTIONS(4071), 4, + ACTIONS(4081), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(4073), 4, + ACTIONS(4083), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - [129518] = 10, - ACTIONS(143), 1, + [129706] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2935), 1, + ACTIONS(2773), 1, sym_identifier, - ACTIONS(4075), 1, + ACTIONS(4085), 1, anon_sym_DOLLAR, - STATE(1748), 1, + STATE(1795), 1, sym_val_number, - STATE(1830), 1, + STATE(1931), 1, sym__var, - STATE(2233), 1, + STATE(2298), 1, sym_val_variable, - STATE(2499), 1, + STATE(2501), 1, sym_comment, - STATE(3043), 1, + STATE(3300), 1, sym__where_predicate, - ACTIONS(4077), 4, + ACTIONS(4087), 4, aux_sym_val_number_token1, aux_sym_val_number_token2, anon_sym_inf, anon_sym_NaN, - ACTIONS(4079), 4, + ACTIONS(4089), 4, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_DASHinf, - [129555] = 15, - ACTIONS(143), 1, + [129743] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4083), 1, - anon_sym_RBRACK, - ACTIONS(4085), 1, + ACTIONS(4093), 1, + anon_sym_RPAREN, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2500), 1, + STATE(2502), 1, sym_comment, - STATE(2507), 1, - aux_sym_parameter_parens_repeat1, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129601] = 15, - ACTIONS(143), 1, + [129789] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4093), 1, - anon_sym_PIPE, + ACTIONS(4103), 1, + anon_sym_RBRACK, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2501), 1, + STATE(2503), 1, sym_comment, - STATE(2505), 1, - aux_sym_parameter_parens_repeat1, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129647] = 15, - ACTIONS(143), 1, + [129835] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4095), 1, + ACTIONS(4105), 1, anon_sym_RBRACK, - STATE(2497), 1, + STATE(2498), 1, sym_param_long_flag, - STATE(2502), 1, + STATE(2504), 1, sym_comment, - STATE(2513), 1, + STATE(2506), 1, aux_sym_parameter_parens_repeat1, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129693] = 15, - ACTIONS(143), 1, + [129881] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4097), 1, - anon_sym_RPAREN, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, + ACTIONS(4107), 1, + anon_sym_RBRACK, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2503), 1, + STATE(2505), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129739] = 15, - ACTIONS(143), 1, + [129927] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, + sym_param_long_flag, + STATE(2506), 1, + sym_comment, + STATE(2515), 1, + sym__param_name, + STATE(2523), 1, + sym_param_opt, + STATE(2588), 1, + sym_param_rest, + STATE(2593), 1, + sym_param_short_flag, + STATE(2697), 1, + sym_parameter, + [129973] = 15, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4091), 1, + sym_identifier, + ACTIONS(4095), 1, + anon_sym_DOLLAR, + ACTIONS(4097), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(4099), 1, + anon_sym_DASH_DASH, + ACTIONS(4101), 1, + anon_sym_DASH, + ACTIONS(4111), 1, anon_sym_RPAREN, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2504), 1, + STATE(2507), 1, sym_comment, - STATE(2508), 1, - aux_sym_parameter_parens_repeat1, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129785] = 15, - ACTIONS(143), 1, + [130019] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, - anon_sym_DASH, ACTIONS(4101), 1, + anon_sym_DASH, + ACTIONS(4113), 1, anon_sym_PIPE, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2505), 1, + STATE(2508), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129831] = 15, - ACTIONS(143), 1, + [130065] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4103), 1, - anon_sym_RPAREN, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, - STATE(2497), 1, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(2498), 1, sym_param_long_flag, - STATE(2506), 1, + STATE(2505), 1, + aux_sym_parameter_parens_repeat1, + STATE(2509), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129877] = 15, - ACTIONS(143), 1, + [130111] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4105), 1, - anon_sym_RBRACK, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, - STATE(2497), 1, + ACTIONS(4117), 1, + anon_sym_RPAREN, + STATE(2498), 1, sym_param_long_flag, - STATE(2507), 1, + STATE(2510), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2517), 1, + aux_sym_parameter_parens_repeat1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129923] = 15, - ACTIONS(143), 1, + [130157] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4107), 1, - anon_sym_RPAREN, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, - STATE(2497), 1, + ACTIONS(4119), 1, + anon_sym_RBRACK, + STATE(2498), 1, sym_param_long_flag, - STATE(2508), 1, + STATE(2503), 1, + aux_sym_parameter_parens_repeat1, + STATE(2511), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [129969] = 9, - ACTIONS(143), 1, + [130203] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4059), 1, + ACTIONS(4069), 1, anon_sym_EQ, - ACTIONS(4061), 1, + ACTIONS(4071), 1, anon_sym_COLON, - ACTIONS(4111), 1, + ACTIONS(4123), 1, anon_sym_COMMA, - ACTIONS(4113), 1, + ACTIONS(4125), 1, anon_sym_DASH, - STATE(2509), 1, + STATE(2512), 1, sym_comment, - STATE(2581), 1, + STATE(2594), 1, sym_param_type, - STATE(2582), 1, + STATE(2595), 1, sym_param_value, - ACTIONS(4109), 7, + ACTIONS(4121), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -208472,198 +208718,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [130003] = 15, - ACTIONS(143), 1, + [130237] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4115), 1, - anon_sym_RPAREN, - STATE(2497), 1, + ACTIONS(4127), 1, + anon_sym_PIPE, + STATE(2498), 1, sym_param_long_flag, - STATE(2506), 1, + STATE(2508), 1, aux_sym_parameter_parens_repeat1, - STATE(2510), 1, + STATE(2513), 1, sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [130049] = 15, - ACTIONS(143), 1, + [130283] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4117), 1, + ACTIONS(4129), 1, anon_sym_RPAREN, - STATE(2497), 1, + STATE(2498), 1, sym_param_long_flag, - STATE(2503), 1, + STATE(2502), 1, aux_sym_parameter_parens_repeat1, - STATE(2511), 1, - sym_comment, STATE(2514), 1, + sym_comment, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [130095] = 15, - ACTIONS(143), 1, + [130329] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4133), 1, + anon_sym_COMMA, + ACTIONS(4135), 1, + anon_sym_DASH, + STATE(2515), 1, + sym_comment, + STATE(2558), 1, + sym_param_type, + STATE(2559), 1, + sym_param_value, + ACTIONS(4131), 7, sym_identifier, - ACTIONS(4085), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(4087), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, anon_sym_DASH_DASH, + [130363] = 15, + ACTIONS(145), 1, + anon_sym_POUND, ACTIONS(4091), 1, + sym_identifier, + ACTIONS(4095), 1, + anon_sym_DOLLAR, + ACTIONS(4097), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4099), 1, + anon_sym_DASH_DASH, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4119), 1, - anon_sym_RBRACK, - STATE(2497), 1, + ACTIONS(4137), 1, + anon_sym_RPAREN, + STATE(2498), 1, sym_param_long_flag, - STATE(2512), 1, - sym_comment, - STATE(2514), 1, - sym__param_name, - STATE(2515), 1, + STATE(2507), 1, aux_sym_parameter_parens_repeat1, - STATE(2525), 1, + STATE(2515), 1, + sym__param_name, + STATE(2516), 1, + sym_comment, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [130141] = 15, - ACTIONS(143), 1, + [130409] = 15, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4081), 1, + ACTIONS(4091), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR, - ACTIONS(4087), 1, + ACTIONS(4097), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4099), 1, anon_sym_DASH_DASH, - ACTIONS(4091), 1, + ACTIONS(4101), 1, anon_sym_DASH, - ACTIONS(4121), 1, - anon_sym_RBRACK, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, + ACTIONS(4139), 1, + anon_sym_RPAREN, STATE(2497), 1, + aux_sym_parameter_parens_repeat1, + STATE(2498), 1, sym_param_long_flag, - STATE(2513), 1, - sym_comment, - STATE(2514), 1, + STATE(2515), 1, sym__param_name, - STATE(2525), 1, + STATE(2517), 1, + sym_comment, + STATE(2523), 1, sym_param_opt, - STATE(2526), 1, + STATE(2588), 1, sym_param_rest, - STATE(2569), 1, + STATE(2593), 1, sym_param_short_flag, - STATE(2665), 1, + STATE(2697), 1, sym_parameter, - [130187] = 9, - ACTIONS(143), 1, + [130455] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4059), 1, - anon_sym_EQ, - ACTIONS(4061), 1, - anon_sym_COLON, - ACTIONS(4125), 1, - anon_sym_COMMA, - ACTIONS(4127), 1, + ACTIONS(4143), 1, anon_sym_DASH, - STATE(2514), 1, + STATE(2518), 1, sym_comment, - STATE(2537), 1, - sym_param_type, - STATE(2539), 1, - sym_param_value, - ACTIONS(4123), 7, + ACTIONS(4141), 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, - [130221] = 15, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4081), 1, - sym_identifier, - ACTIONS(4085), 1, - anon_sym_DOLLAR, - ACTIONS(4087), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4089), 1, - anon_sym_DASH_DASH, - ACTIONS(4091), 1, - anon_sym_DASH, - ACTIONS(4129), 1, - anon_sym_RBRACK, - STATE(2496), 1, - aux_sym_parameter_parens_repeat1, - STATE(2497), 1, - sym_param_long_flag, - STATE(2514), 1, - sym__param_name, - STATE(2515), 1, - sym_comment, - STATE(2525), 1, - sym_param_opt, - STATE(2526), 1, - sym_param_rest, - STATE(2569), 1, - sym_param_short_flag, - STATE(2665), 1, - sym_parameter, - [130267] = 6, - ACTIONS(143), 1, + [130478] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4133), 1, + ACTIONS(4147), 1, anon_sym_AT, - ACTIONS(4135), 1, + ACTIONS(4149), 1, anon_sym_DASH, - STATE(2516), 1, + STATE(2519), 1, sym_comment, - STATE(2597), 1, + STATE(2600), 1, sym_param_cmd, - ACTIONS(4131), 9, + ACTIONS(4145), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -208673,36 +208907,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [130294] = 5, - ACTIONS(143), 1, + [130505] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4137), 1, - anon_sym_LT, - ACTIONS(4139), 1, + ACTIONS(4153), 1, + anon_sym_QMARK, + ACTIONS(4155), 1, anon_sym_DASH, - STATE(2517), 1, + STATE(2520), 1, sym_comment, - ACTIONS(3201), 10, + ACTIONS(4151), 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, - [130319] = 5, - ACTIONS(143), 1, + [130530] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4139), 1, - anon_sym_DASH, - ACTIONS(4141), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(2518), 1, + ACTIONS(4159), 1, + anon_sym_DASH, + STATE(2521), 1, sym_comment, - ACTIONS(3201), 10, + ACTIONS(3210), 10, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -208713,35 +208947,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [130344] = 4, - ACTIONS(143), 1, + [130555] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4145), 1, + ACTIONS(4159), 1, anon_sym_DASH, - STATE(2519), 1, + ACTIONS(4161), 1, + anon_sym_LT, + STATE(2522), 1, sym_comment, - ACTIONS(4143), 11, + ACTIONS(3210), 10, 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_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [130367] = 5, - ACTIONS(143), 1, + [130580] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_QMARK, - ACTIONS(4151), 1, + ACTIONS(4165), 1, anon_sym_DASH, - STATE(2520), 1, + STATE(2523), 1, sym_comment, - ACTIONS(4147), 10, + ACTIONS(4163), 10, anon_sym_EQ, sym_identifier, anon_sym_COLON, @@ -208752,1075 +208985,1217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [130392] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2903), 1, - anon_sym_LPAREN, - ACTIONS(3039), 1, - anon_sym_not, - ACTIONS(4153), 1, - anon_sym_DOLLAR, - ACTIONS(4155), 1, - anon_sym_DASH, - STATE(111), 1, - sym__var, - STATE(2521), 1, - sym_comment, - ACTIONS(3045), 2, - anon_sym_true, - anon_sym_false, - STATE(159), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [130424] = 9, - ACTIONS(143), 1, + [130602] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2767), 1, + ACTIONS(2755), 1, anon_sym_LPAREN, - ACTIONS(4157), 1, - anon_sym_DOLLAR, - ACTIONS(4159), 1, - anon_sym_DASH, - ACTIONS(4161), 1, - anon_sym_not, - STATE(266), 1, - sym__var, - STATE(2522), 1, + STATE(2524), 1, sym_comment, - ACTIONS(4163), 2, - anon_sym_true, - anon_sym_false, - STATE(394), 4, - sym_expr_unary, + ACTIONS(1011), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(410), 2, sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [130456] = 9, - ACTIONS(143), 1, + sym_val_number, + ACTIONS(4167), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [130628] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4165), 1, - anon_sym_LPAREN, - ACTIONS(4167), 1, - anon_sym_DOLLAR, ACTIONS(4169), 1, anon_sym_DASH, - ACTIONS(4171), 1, - anon_sym_not, - STATE(1733), 1, - sym__var, - STATE(2523), 1, - sym_comment, - ACTIONS(4173), 2, - anon_sym_true, - anon_sym_false, - STATE(2084), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [130488] = 11, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4175), 1, - anon_sym_DOLLAR, - ACTIONS(4177), 1, - anon_sym_LBRACE, - STATE(1613), 1, - sym__var, - STATE(2524), 1, - sym_comment, - STATE(2712), 1, - sym__flag, - STATE(3039), 1, - sym_long_flag, - STATE(931), 2, - sym__blosure, - sym_val_variable, - STATE(1916), 2, - sym_block, - sym_val_closure, - [130524] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_DASH, STATE(2525), 1, sym_comment, - ACTIONS(4179), 10, + ACTIONS(3236), 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, - [130546] = 4, - ACTIONS(143), 1, + [130650] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4185), 1, + ACTIONS(4171), 1, anon_sym_DASH, STATE(2526), 1, sym_comment, - ACTIONS(4183), 10, + ACTIONS(3234), 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, - [130568] = 12, - ACTIONS(143), 1, + [130672] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4189), 1, + ACTIONS(4175), 1, anon_sym_RBRACE, - STATE(63), 1, + STATE(36), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, STATE(2527), 1, sym_comment, - STATE(2629), 1, + STATE(2617), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [130606] = 4, - ACTIONS(143), 1, + [130710] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4191), 1, - anon_sym_DASH, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4177), 1, + anon_sym_DOLLAR, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__var, STATE(2528), 1, sym_comment, - ACTIONS(3273), 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, - [130628] = 12, - ACTIONS(143), 1, + STATE(2532), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(779), 2, + sym__blosure, + sym_val_variable, + STATE(1818), 2, + sym_block, + sym_val_closure, + [130746] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4193), 1, + ACTIONS(4181), 1, anon_sym_RBRACE, STATE(33), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, STATE(2529), 1, sym_comment, - STATE(2603), 1, + STATE(2656), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [130666] = 9, - ACTIONS(143), 1, + [130784] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2554), 1, - anon_sym_not, - ACTIONS(3138), 1, + ACTIONS(2221), 1, anon_sym_LPAREN, - ACTIONS(4195), 1, + ACTIONS(4183), 1, anon_sym_DOLLAR, - ACTIONS(4197), 1, + ACTIONS(4185), 1, anon_sym_DASH, - STATE(1953), 1, + ACTIONS(4187), 1, + anon_sym_not, + STATE(742), 1, sym__var, STATE(2530), 1, sym_comment, - ACTIONS(2562), 2, + ACTIONS(4189), 2, anon_sym_true, anon_sym_false, - STATE(2474), 4, + STATE(936), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [130698] = 6, - ACTIONS(143), 1, + [130816] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4199), 1, + ACTIONS(4191), 1, anon_sym_LPAREN, STATE(2531), 1, sym_comment, - ACTIONS(2249), 2, + ACTIONS(3103), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(1849), 2, + STATE(1473), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2867), 6, + ACTIONS(4193), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [130724] = 11, - ACTIONS(143), 1, + [130842] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(4201), 1, + ACTIONS(4177), 1, anon_sym_DOLLAR, - ACTIONS(4203), 1, + ACTIONS(4179), 1, anon_sym_LBRACE, - STATE(1580), 1, + STATE(1571), 1, sym__var, STATE(2532), 1, sym_comment, - STATE(2591), 1, + STATE(2552), 1, sym__flag, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(808), 2, + STATE(792), 2, sym__blosure, sym_val_variable, - STATE(1836), 2, + STATE(1818), 2, sym_block, sym_val_closure, - [130760] = 12, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(183), 1, - anon_sym_PIPE, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4205), 1, - anon_sym_RBRACE, - STATE(58), 1, - sym_parameter_pipes, - STATE(758), 1, - sym__str_double_quotes, - STATE(2533), 1, - sym_comment, - STATE(2621), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [130798] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4209), 1, - anon_sym_DASH, - STATE(2534), 1, - sym_comment, - ACTIONS(4207), 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, - [130820] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4213), 1, - anon_sym_DASH, - STATE(2535), 1, - sym_comment, - ACTIONS(4211), 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, - [130842] = 4, - ACTIONS(143), 1, + [130878] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4217), 1, - anon_sym_DASH, - STATE(2536), 1, - sym_comment, - ACTIONS(4215), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(2562), 1, + anon_sym_not, + ACTIONS(3144), 1, + anon_sym_LPAREN, + ACTIONS(4195), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [130864] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4059), 1, - anon_sym_EQ, - ACTIONS(4221), 1, - anon_sym_COMMA, - ACTIONS(4223), 1, + ACTIONS(4197), 1, anon_sym_DASH, - STATE(2537), 1, + STATE(1964), 1, + sym__var, + STATE(2533), 1, sym_comment, - STATE(2646), 1, - sym_param_value, - ACTIONS(4219), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [130892] = 6, - ACTIONS(143), 1, + ACTIONS(2570), 2, + anon_sym_true, + anon_sym_false, + STATE(2428), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [130910] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(4199), 1, anon_sym_LPAREN, - STATE(2538), 1, + STATE(2534), 1, sym_comment, - ACTIONS(2209), 2, + ACTIONS(2255), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(937), 2, + STATE(1910), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2211), 6, + ACTIONS(2991), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [130918] = 7, - ACTIONS(143), 1, + [130936] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4061), 1, - anon_sym_COLON, - ACTIONS(4223), 1, + ACTIONS(2813), 1, + anon_sym_LPAREN, + ACTIONS(3057), 1, + anon_sym_not, + ACTIONS(4201), 1, + anon_sym_DOLLAR, + ACTIONS(4203), 1, anon_sym_DASH, - ACTIONS(4225), 1, - anon_sym_COMMA, - STATE(2539), 1, + STATE(110), 1, + sym__var, + STATE(2535), 1, sym_comment, - STATE(2644), 1, - sym_param_type, - ACTIONS(4219), 7, + ACTIONS(3063), 2, + anon_sym_true, + anon_sym_false, + STATE(176), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [130968] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4205), 1, + anon_sym_DASH, + STATE(2536), 1, + sym_comment, + ACTIONS(3272), 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, - [130946] = 7, - ACTIONS(143), 1, + [130990] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4059), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_COMMA, - ACTIONS(4231), 1, + ACTIONS(4209), 1, anon_sym_DASH, - STATE(2540), 1, + STATE(2537), 1, sym_comment, - STATE(2659), 1, - sym_param_value, - ACTIONS(4227), 7, + ACTIONS(4207), 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, - [130974] = 7, - ACTIONS(143), 1, + [131012] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4061), 1, - anon_sym_COLON, - ACTIONS(4229), 1, - anon_sym_COMMA, - ACTIONS(4231), 1, + ACTIONS(4159), 1, anon_sym_DASH, - STATE(2541), 1, + STATE(2538), 1, sym_comment, - STATE(2659), 1, - sym_param_type, - ACTIONS(4227), 7, + ACTIONS(3210), 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, - [131002] = 4, - ACTIONS(143), 1, + [131034] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4139), 1, + ACTIONS(4213), 1, anon_sym_DASH, - STATE(2542), 1, + STATE(2539), 1, sym_comment, - ACTIONS(3201), 10, + ACTIONS(4211), 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, - [131024] = 6, - ACTIONS(143), 1, + [131056] = 12, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(183), 1, + anon_sym_PIPE, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4215), 1, + anon_sym_RBRACE, + STATE(39), 1, + sym_parameter_pipes, + STATE(759), 1, + sym__str_double_quotes, + STATE(2540), 1, + sym_comment, + STATE(2652), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [131094] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3074), 1, + ACTIONS(2779), 1, anon_sym_LPAREN, - STATE(2543), 1, + STATE(2541), 1, sym_comment, - ACTIONS(2357), 2, + ACTIONS(785), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(1969), 2, + STATE(226), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2359), 6, + ACTIONS(4217), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [131050] = 9, - ACTIONS(143), 1, + [131120] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4069), 1, - anon_sym_DOLLAR, - ACTIONS(4233), 1, + ACTIONS(4199), 1, anon_sym_LPAREN, - ACTIONS(4235), 1, + ACTIONS(4219), 1, + anon_sym_DOLLAR, + ACTIONS(4221), 1, anon_sym_DASH, - ACTIONS(4237), 1, + ACTIONS(4223), 1, anon_sym_not, - STATE(1930), 1, + STATE(1634), 1, sym__var, - STATE(2544), 1, + STATE(2542), 1, sym_comment, - ACTIONS(4239), 2, + ACTIONS(4225), 2, anon_sym_true, anon_sym_false, - STATE(2340), 4, + STATE(1845), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131082] = 9, - ACTIONS(143), 1, + [131152] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2747), 1, - anon_sym_LPAREN, - ACTIONS(4241), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4227), 1, anon_sym_DOLLAR, - ACTIONS(4243), 1, - anon_sym_DASH, - ACTIONS(4245), 1, - anon_sym_not, - STATE(298), 1, + ACTIONS(4229), 1, + anon_sym_LBRACE, + STATE(1643), 1, sym__var, - STATE(2545), 1, + STATE(2543), 1, sym_comment, - ACTIONS(4247), 2, - anon_sym_true, - anon_sym_false, - STATE(450), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(2556), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(874), 2, + sym__blosure, sym_val_variable, - [131114] = 12, - ACTIONS(143), 1, + STATE(1925), 2, + sym_block, + sym_val_closure, + [131188] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4249), 1, + ACTIONS(4231), 1, anon_sym_RBRACE, - STATE(79), 1, + STATE(34), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2546), 1, + STATE(2544), 1, sym_comment, - STATE(2615), 1, + STATE(2638), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131152] = 11, - ACTIONS(143), 1, + [131226] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4201), 1, - anon_sym_DOLLAR, - ACTIONS(4203), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym__var, - STATE(2547), 1, + ACTIONS(4235), 1, + anon_sym_DASH, + STATE(2545), 1, sym_comment, - STATE(2573), 1, - sym__flag, - STATE(3039), 1, - sym_long_flag, - STATE(806), 2, - sym__blosure, - sym_val_variable, - STATE(1836), 2, - sym_block, - sym_val_closure, - [131188] = 12, - ACTIONS(143), 1, + ACTIONS(4233), 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, + [131248] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4251), 1, + ACTIONS(4237), 1, anon_sym_RBRACE, - STATE(35), 1, + STATE(42), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2548), 1, + STATE(2546), 1, sym_comment, - STATE(2660), 1, + STATE(2661), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131226] = 12, - ACTIONS(143), 1, + [131286] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4253), 1, + ACTIONS(4239), 1, anon_sym_RBRACE, STATE(30), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2549), 1, + STATE(2547), 1, sym_comment, - STATE(2652), 1, + STATE(2612), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131264] = 9, - ACTIONS(143), 1, + [131324] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4199), 1, - anon_sym_LPAREN, - ACTIONS(4255), 1, + ACTIONS(4085), 1, anon_sym_DOLLAR, - ACTIONS(4257), 1, + ACTIONS(4241), 1, + anon_sym_LPAREN, + ACTIONS(4243), 1, anon_sym_DASH, - ACTIONS(4259), 1, + ACTIONS(4245), 1, anon_sym_not, - STATE(1638), 1, + STATE(1931), 1, sym__var, - STATE(2550), 1, + STATE(2548), 1, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4247), 2, anon_sym_true, anon_sym_false, - STATE(1905), 4, + STATE(2292), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131296] = 9, - ACTIONS(143), 1, + [131356] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3081), 1, + ACTIONS(4241), 1, anon_sym_LPAREN, - ACTIONS(4263), 1, + STATE(2549), 1, + sym_comment, + ACTIONS(85), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2296), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(87), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [131382] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(4249), 1, anon_sym_DOLLAR, - ACTIONS(4265), 1, + ACTIONS(4251), 1, anon_sym_DASH, - ACTIONS(4267), 1, + ACTIONS(4253), 1, anon_sym_not, - STATE(1667), 1, + STATE(1742), 1, sym__var, - STATE(2551), 1, + STATE(2550), 1, sym_comment, - ACTIONS(4269), 2, + ACTIONS(4255), 2, anon_sym_true, anon_sym_false, - STATE(1982), 4, + STATE(1962), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131328] = 6, - ACTIONS(143), 1, + [131414] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2903), 1, + ACTIONS(2813), 1, anon_sym_LPAREN, - STATE(2552), 1, + STATE(2551), 1, sym_comment, - ACTIONS(762), 2, + ACTIONS(764), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(201), 2, + STATE(152), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(4271), 6, + ACTIONS(4257), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [131354] = 11, - ACTIONS(143), 1, + [131440] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(4175), 1, - anon_sym_DOLLAR, ACTIONS(4177), 1, + anon_sym_DOLLAR, + ACTIONS(4179), 1, anon_sym_LBRACE, - STATE(1613), 1, + STATE(1571), 1, sym__var, - STATE(2524), 1, - sym__flag, - STATE(2553), 1, + STATE(2552), 1, sym_comment, - STATE(3039), 1, + STATE(2567), 1, + sym__flag, + STATE(2994), 1, sym_long_flag, - STATE(855), 2, + STATE(798), 2, sym__blosure, sym_val_variable, - STATE(1916), 2, + STATE(1818), 2, sym_block, sym_val_closure, - [131390] = 9, - ACTIONS(143), 1, + [131476] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2207), 1, + ACTIONS(4259), 1, anon_sym_LPAREN, - ACTIONS(4273), 1, + STATE(2553), 1, + sym_comment, + ACTIONS(2417), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2053), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2973), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [131502] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3005), 1, + anon_sym_LPAREN, + ACTIONS(4261), 1, anon_sym_DOLLAR, - ACTIONS(4275), 1, + ACTIONS(4263), 1, anon_sym_DASH, - ACTIONS(4277), 1, + ACTIONS(4265), 1, anon_sym_not, - STATE(737), 1, + STATE(264), 1, sym__var, STATE(2554), 1, sym_comment, - ACTIONS(4279), 2, + ACTIONS(4267), 2, anon_sym_true, anon_sym_false, - STATE(946), 4, + STATE(354), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131422] = 6, - ACTIONS(143), 1, + [131534] = 12, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(183), 1, + anon_sym_PIPE, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4269), 1, + anon_sym_RBRACE, + STATE(46), 1, + sym_parameter_pipes, + STATE(759), 1, + sym__str_double_quotes, + STATE(2555), 1, + sym_comment, + STATE(2646), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [131572] = 11, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(4229), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym__var, + STATE(2556), 1, + sym_comment, + STATE(2562), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(852), 2, + sym__blosure, + sym_val_variable, + STATE(1925), 2, + sym_block, + sym_val_closure, + [131608] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4273), 1, + anon_sym_DASH, + STATE(2557), 1, + sym_comment, + ACTIONS(4271), 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, + [131630] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(4277), 1, + anon_sym_COMMA, + ACTIONS(4279), 1, + anon_sym_DASH, + STATE(2558), 1, + sym_comment, + STATE(2626), 1, + sym_param_value, + ACTIONS(4275), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [131658] = 7, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4279), 1, + anon_sym_DASH, ACTIONS(4281), 1, + anon_sym_COMMA, + STATE(2559), 1, + sym_comment, + STATE(2619), 1, + sym_param_type, + ACTIONS(4275), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [131686] = 12, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(183), 1, + anon_sym_PIPE, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4283), 1, + anon_sym_RBRACE, + STATE(28), 1, + sym_parameter_pipes, + STATE(759), 1, + sym__str_double_quotes, + STATE(2560), 1, + sym_comment, + STATE(2632), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [131724] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3041), 1, + anon_sym_not, + ACTIONS(3065), 1, anon_sym_LPAREN, - STATE(2555), 1, + ACTIONS(4285), 1, + anon_sym_DOLLAR, + ACTIONS(4287), 1, + anon_sym_DASH, + STATE(1558), 1, + sym__var, + STATE(2561), 1, + sym_comment, + ACTIONS(3047), 2, + anon_sym_true, + anon_sym_false, + STATE(1682), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [131756] = 11, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(4229), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym__var, + STATE(2562), 1, + sym_comment, + STATE(2566), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(876), 2, + sym__blosure, + sym_val_variable, + STATE(1925), 2, + sym_block, + sym_val_closure, + [131792] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3144), 1, + anon_sym_LPAREN, + STATE(2563), 1, sym_comment, - ACTIONS(237), 2, + ACTIONS(2572), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2262), 2, + STATE(2445), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(239), 6, + ACTIONS(2574), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [131448] = 12, - ACTIONS(143), 1, + [131818] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(183), 1, - anon_sym_PIPE, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4283), 1, - anon_sym_RBRACE, - STATE(45), 1, - sym_parameter_pipes, - STATE(758), 1, - sym__str_double_quotes, - STATE(2556), 1, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(4291), 1, + anon_sym_COMMA, + ACTIONS(4293), 1, + anon_sym_DASH, + STATE(2564), 1, sym_comment, - STATE(2637), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [131486] = 4, - ACTIONS(143), 1, + STATE(2607), 1, + sym_param_value, + ACTIONS(4289), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [131846] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4285), 1, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4291), 1, + anon_sym_COMMA, + ACTIONS(4293), 1, anon_sym_DASH, - STATE(2557), 1, + STATE(2565), 1, sym_comment, - ACTIONS(3271), 10, - anon_sym_EQ, + STATE(2607), 1, + sym_param_type, + ACTIONS(4289), 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, - [131508] = 6, - ACTIONS(143), 1, + [131874] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4287), 1, - anon_sym_LPAREN, - STATE(2558), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(4229), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym__var, + STATE(2566), 1, sym_comment, - ACTIONS(3089), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1448), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(4289), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [131534] = 9, - ACTIONS(143), 1, + STATE(2710), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(877), 2, + sym__blosure, + sym_val_variable, + STATE(1925), 2, + sym_block, + sym_val_closure, + [131910] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2347), 1, - anon_sym_not, - ACTIONS(3074), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4177), 1, anon_sym_DOLLAR, - ACTIONS(4293), 1, - anon_sym_DASH, - STATE(1681), 1, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(1571), 1, sym__var, - STATE(2559), 1, + STATE(2567), 1, sym_comment, - ACTIONS(2355), 2, - anon_sym_true, - anon_sym_false, - STATE(1959), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, + STATE(2772), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + STATE(790), 2, + sym__blosure, sym_val_variable, - [131566] = 12, - ACTIONS(143), 1, + STATE(1818), 2, + sym_block, + sym_val_closure, + [131946] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, ACTIONS(4295), 1, anon_sym_RBRACE, - STATE(78), 1, + STATE(66), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2560), 1, + STATE(2568), 1, sym_comment, - STATE(2633), 1, + STATE(2650), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131604] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4297), 1, - anon_sym_DASH, - STATE(2561), 1, - sym_comment, - ACTIONS(3237), 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, - [131626] = 12, - ACTIONS(143), 1, + [131984] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4299), 1, + ACTIONS(4297), 1, anon_sym_RBRACE, - STATE(56), 1, + STATE(74), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2562), 1, + STATE(2569), 1, sym_comment, - STATE(2631), 1, + STATE(2615), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131664] = 11, - ACTIONS(143), 1, + [132022] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4175), 1, + ACTIONS(4079), 1, anon_sym_DOLLAR, - ACTIONS(4177), 1, - anon_sym_LBRACE, - STATE(1613), 1, + ACTIONS(4299), 1, + anon_sym_LPAREN, + ACTIONS(4301), 1, + anon_sym_DASH, + ACTIONS(4303), 1, + anon_sym_not, + STATE(1790), 1, sym__var, - STATE(2553), 1, - sym__flag, - STATE(2563), 1, + STATE(2570), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(945), 2, - sym__blosure, + ACTIONS(4305), 2, + anon_sym_true, + anon_sym_false, + STATE(2153), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, sym_val_variable, - STATE(1916), 2, - sym_block, - sym_val_closure, - [131700] = 4, - ACTIONS(143), 1, + [132054] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4303), 1, - anon_sym_DASH, - STATE(2564), 1, + ACTIONS(2221), 1, + anon_sym_LPAREN, + STATE(2571), 1, sym_comment, - ACTIONS(4301), 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, - [131722] = 9, - ACTIONS(143), 1, + ACTIONS(2223), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(815), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(2225), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [132080] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2827), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - ACTIONS(3031), 1, + ACTIONS(2909), 1, anon_sym_not, - ACTIONS(4305), 1, - anon_sym_DOLLAR, ACTIONS(4307), 1, + anon_sym_DOLLAR, + ACTIONS(4309), 1, anon_sym_DASH, - STATE(125), 1, + STATE(734), 1, sym__var, - STATE(2565), 1, + STATE(2572), 1, sym_comment, - ACTIONS(3037), 2, + ACTIONS(2915), 2, anon_sym_true, anon_sym_false, - STATE(230), 4, + STATE(908), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131754] = 12, - ACTIONS(143), 1, + [132112] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4309), 1, + ACTIONS(4311), 1, anon_sym_RBRACE, - STATE(28), 1, + STATE(80), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2566), 1, + STATE(2573), 1, sym_comment, - STATE(2648), 1, + STATE(2614), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [131792] = 9, - ACTIONS(143), 1, + [132150] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3047), 1, + ACTIONS(2449), 1, anon_sym_not, - ACTIONS(3055), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - ACTIONS(4311), 1, - anon_sym_DOLLAR, ACTIONS(4313), 1, + anon_sym_DOLLAR, + ACTIONS(4315), 1, anon_sym_DASH, - STATE(1531), 1, + STATE(1738), 1, sym__var, - STATE(2567), 1, + STATE(2574), 1, sym_comment, - ACTIONS(3053), 2, + ACTIONS(2457), 2, anon_sym_true, anon_sym_false, - STATE(1728), 4, + STATE(2050), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [131824] = 4, - ACTIONS(143), 1, + [132182] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4299), 1, + anon_sym_LPAREN, + STATE(2575), 1, + sym_comment, + ACTIONS(237), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2200), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(239), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [132208] = 4, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4317), 1, anon_sym_DASH, - STATE(2568), 1, + STATE(2576), 1, sym_comment, - ACTIONS(4315), 10, + ACTIONS(3270), 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, - [131846] = 4, - ACTIONS(143), 1, + [132230] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3080), 1, + anon_sym_LPAREN, + STATE(2577), 1, + sym_comment, + ACTIONS(3082), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(2121), 2, + sym_expr_parenthesized, + sym_val_number, + ACTIONS(3084), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [132256] = 4, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4321), 1, anon_sym_DASH, - STATE(2569), 1, + STATE(2578), 1, sym_comment, ACTIONS(4319), 10, anon_sym_EQ, @@ -209833,57 +210208,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [131868] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3138), 1, - anon_sym_LPAREN, - STATE(2570), 1, - sym_comment, - ACTIONS(2564), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(2424), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(2566), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [131894] = 6, - ACTIONS(143), 1, + [132278] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2747), 1, - anon_sym_LPAREN, - STATE(2571), 1, + ACTIONS(4323), 1, + anon_sym_DASH, + STATE(2579), 1, sym_comment, - ACTIONS(999), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(443), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(4323), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [131920] = 6, - ACTIONS(143), 1, + ACTIONS(3263), 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, + [132300] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2767), 1, + ACTIONS(2195), 1, anon_sym_LPAREN, - STATE(2572), 1, + STATE(2580), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(3095), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(357), 2, + STATE(1405), 2, sym_expr_parenthesized, sym_val_number, ACTIONS(4325), 6, @@ -209893,509 +210246,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [131946] = 11, - ACTIONS(143), 1, + [132326] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4201), 1, + ACTIONS(2779), 1, + anon_sym_LPAREN, + ACTIONS(3049), 1, + anon_sym_not, + ACTIONS(4327), 1, anon_sym_DOLLAR, - ACTIONS(4203), 1, - anon_sym_LBRACE, - STATE(1580), 1, + ACTIONS(4329), 1, + anon_sym_DASH, + STATE(128), 1, sym__var, - STATE(2532), 1, - sym__flag, - STATE(2573), 1, - sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(768), 2, - sym__blosure, - sym_val_variable, - STATE(1836), 2, - sym_block, - sym_val_closure, - [131982] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4165), 1, - anon_sym_LPAREN, - STATE(2574), 1, + STATE(2581), 1, sym_comment, - ACTIONS(2391), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1932), 2, + ACTIONS(3055), 2, + anon_sym_true, + anon_sym_false, + STATE(217), 4, + sym_expr_unary, sym_expr_parenthesized, - sym_val_number, - ACTIONS(2885), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [132008] = 12, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(183), 1, - anon_sym_PIPE, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4327), 1, - anon_sym_RBRACE, - STATE(37), 1, - sym_parameter_pipes, - STATE(758), 1, - sym__str_double_quotes, - STATE(2575), 1, - sym_comment, - STATE(2616), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [132046] = 12, - ACTIONS(143), 1, + sym_val_bool, + sym_val_variable, + [132358] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4329), 1, + ACTIONS(4331), 1, anon_sym_RBRACE, - STATE(74), 1, + STATE(77), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2576), 1, + STATE(2582), 1, sym_comment, - STATE(2622), 1, + STATE(2649), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132084] = 9, - ACTIONS(143), 1, + [132396] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4075), 1, - anon_sym_DOLLAR, - ACTIONS(4281), 1, + ACTIONS(3065), 1, anon_sym_LPAREN, - ACTIONS(4331), 1, - anon_sym_DASH, - ACTIONS(4333), 1, - anon_sym_not, - STATE(1830), 1, - sym__var, - STATE(2577), 1, + STATE(2583), 1, sym_comment, - ACTIONS(4335), 2, - anon_sym_true, - anon_sym_false, - STATE(2204), 4, - sym_expr_unary, + ACTIONS(3067), 2, + aux_sym_val_number_token1, + aux_sym_val_number_token2, + STATE(1697), 2, sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [132116] = 12, - ACTIONS(143), 1, + sym_val_number, + ACTIONS(3069), 6, + aux_sym_val_number_token3, + aux_sym_val_number_token4, + aux_sym_val_number_token5, + anon_sym_inf, + anon_sym_DASHinf, + anon_sym_NaN, + [132422] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4337), 1, + ACTIONS(4333), 1, anon_sym_RBRACE, - STATE(80), 1, + STATE(79), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2578), 1, + STATE(2584), 1, sym_comment, - STATE(2632), 1, + STATE(2608), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132154] = 9, - ACTIONS(143), 1, + [132460] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, + ACTIONS(2755), 1, anon_sym_LPAREN, - ACTIONS(2949), 1, - anon_sym_not, - ACTIONS(4339), 1, + ACTIONS(4335), 1, anon_sym_DOLLAR, - ACTIONS(4341), 1, + ACTIONS(4337), 1, anon_sym_DASH, - STATE(735), 1, + ACTIONS(4339), 1, + anon_sym_not, + STATE(290), 1, sym__var, - STATE(2579), 1, + STATE(2585), 1, sym_comment, - ACTIONS(2957), 2, + ACTIONS(4341), 2, anon_sym_true, anon_sym_false, - STATE(915), 4, + STATE(403), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [132186] = 6, - ACTIONS(143), 1, + [132492] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3081), 1, + ACTIONS(3093), 1, anon_sym_LPAREN, - STATE(2580), 1, + STATE(2586), 1, sym_comment, - ACTIONS(3083), 2, + ACTIONS(2459), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2102), 2, + STATE(2124), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(3085), 6, + ACTIONS(2461), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [132212] = 7, - ACTIONS(143), 1, + [132518] = 12, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4059), 1, - anon_sym_EQ, - ACTIONS(4345), 1, - anon_sym_COMMA, - ACTIONS(4347), 1, - anon_sym_DASH, - STATE(2581), 1, - sym_comment, - STATE(2640), 1, - sym_param_value, - ACTIONS(4343), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(183), 1, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [132240] = 7, - ACTIONS(143), 1, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4343), 1, + anon_sym_RBRACE, + STATE(56), 1, + sym_parameter_pipes, + STATE(759), 1, + sym__str_double_quotes, + STATE(2587), 1, + sym_comment, + STATE(2618), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [132556] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4061), 1, - anon_sym_COLON, - ACTIONS(4345), 1, - anon_sym_COMMA, ACTIONS(4347), 1, anon_sym_DASH, - STATE(2582), 1, + STATE(2588), 1, sym_comment, - STATE(2640), 1, - sym_param_type, - ACTIONS(4343), 7, + ACTIONS(4345), 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, - [132268] = 11, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4175), 1, - anon_sym_DOLLAR, - ACTIONS(4177), 1, - anon_sym_LBRACE, - STATE(1613), 1, - sym__var, - STATE(2563), 1, - sym__flag, - STATE(2583), 1, - sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(837), 2, - sym__blosure, - sym_val_variable, - STATE(1916), 2, - sym_block, - sym_val_closure, - [132304] = 12, - ACTIONS(143), 1, + [132578] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, ACTIONS(4349), 1, anon_sym_RBRACE, - STATE(60), 1, + STATE(64), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2584), 1, + STATE(2589), 1, sym_comment, - STATE(2634), 1, + STATE(2606), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132342] = 12, - ACTIONS(143), 1, + [132616] = 12, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(183), 1, anon_sym_PIPE, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, ACTIONS(4351), 1, anon_sym_RBRACE, - STATE(67), 1, + STATE(63), 1, sym_parameter_pipes, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2585), 1, + STATE(2590), 1, sym_comment, - STATE(2623), 1, + STATE(2629), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132380] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3055), 1, - anon_sym_LPAREN, - STATE(2586), 1, - sym_comment, - ACTIONS(3057), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1726), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(3059), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [132406] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2170), 1, - anon_sym_LPAREN, - STATE(2587), 1, - sym_comment, - ACTIONS(3068), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(1422), 2, - sym_expr_parenthesized, - sym_val_number, - ACTIONS(4353), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [132432] = 6, - ACTIONS(143), 1, + [132654] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2827), 1, + ACTIONS(4259), 1, anon_sym_LPAREN, - STATE(2588), 1, + ACTIONS(4353), 1, + anon_sym_DOLLAR, + ACTIONS(4355), 1, + anon_sym_DASH, + ACTIONS(4357), 1, + anon_sym_not, + STATE(1653), 1, + sym__var, + STATE(2591), 1, sym_comment, - ACTIONS(787), 2, - aux_sym_val_number_token1, - aux_sym_val_number_token2, - STATE(255), 2, + ACTIONS(4359), 2, + anon_sym_true, + anon_sym_false, + STATE(2022), 4, + sym_expr_unary, sym_expr_parenthesized, - sym_val_number, - ACTIONS(4355), 6, - aux_sym_val_number_token3, - aux_sym_val_number_token4, - aux_sym_val_number_token5, - anon_sym_inf, - anon_sym_DASHinf, - anon_sym_NaN, - [132458] = 6, - ACTIONS(143), 1, + sym_val_bool, + sym_val_variable, + [132686] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4233), 1, + ACTIONS(3005), 1, anon_sym_LPAREN, - STATE(2589), 1, + STATE(2592), 1, sym_comment, - ACTIONS(85), 2, + ACTIONS(987), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(2337), 2, + STATE(328), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(87), 6, + ACTIONS(4361), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [132484] = 4, - ACTIONS(143), 1, + [132712] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4357), 1, + ACTIONS(4365), 1, anon_sym_DASH, - STATE(2590), 1, + STATE(2593), 1, sym_comment, - ACTIONS(3235), 10, + ACTIONS(4363), 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, - [132506] = 11, - ACTIONS(143), 1, + [132734] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4201), 1, - anon_sym_DOLLAR, - ACTIONS(4203), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym__var, - STATE(2591), 1, + ACTIONS(4069), 1, + anon_sym_EQ, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4371), 1, + anon_sym_DASH, + STATE(2594), 1, sym_comment, - STATE(2723), 1, - sym__flag, - STATE(3039), 1, - sym_long_flag, - STATE(778), 2, - sym__blosure, - sym_val_variable, - STATE(1836), 2, - sym_block, - sym_val_closure, - [132542] = 4, - ACTIONS(143), 1, + STATE(2611), 1, + sym_param_value, + ACTIONS(4367), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [132762] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4359), 1, + ACTIONS(4071), 1, + anon_sym_COLON, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4371), 1, anon_sym_DASH, - STATE(2592), 1, + STATE(2595), 1, sym_comment, - ACTIONS(3231), 10, - anon_sym_EQ, + STATE(2611), 1, + sym_param_type, + ACTIONS(4367), 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, - [132564] = 6, - ACTIONS(143), 1, + [132790] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2217), 1, + ACTIONS(2215), 1, anon_sym_LPAREN, - STATE(2593), 1, + STATE(2596), 1, sym_comment, - ACTIONS(2219), 2, + ACTIONS(2217), 2, aux_sym_val_number_token1, aux_sym_val_number_token2, - STATE(829), 2, + STATE(857), 2, sym_expr_parenthesized, sym_val_number, - ACTIONS(2221), 6, + ACTIONS(2219), 6, aux_sym_val_number_token3, aux_sym_val_number_token4, aux_sym_val_number_token5, anon_sym_inf, anon_sym_DASHinf, anon_sym_NaN, - [132590] = 12, - ACTIONS(143), 1, + [132816] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(183), 1, - anon_sym_PIPE, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4361), 1, - anon_sym_RBRACE, - STATE(40), 1, - sym_parameter_pipes, - STATE(758), 1, - sym__str_double_quotes, - STATE(2594), 1, + STATE(2597), 1, sym_comment, - STATE(2642), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, + ACTIONS(3210), 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, - [132628] = 4, - ACTIONS(143), 1, + [132835] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4365), 1, + ACTIONS(1679), 1, anon_sym_DASH, - STATE(2595), 1, + STATE(2598), 1, sym_comment, - ACTIONS(4363), 9, + ACTIONS(1681), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -210405,30 +210636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [132649] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2596), 1, - sym_comment, - ACTIONS(3201), 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, - [132668] = 4, - ACTIONS(143), 1, + [132856] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4369), 1, + ACTIONS(1693), 1, anon_sym_DASH, - STATE(2597), 1, + STATE(2599), 1, sym_comment, - ACTIONS(4367), 9, + ACTIONS(1695), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -210438,14 +210653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [132689] = 4, - ACTIONS(143), 1, + [132877] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1705), 1, + ACTIONS(4375), 1, anon_sym_DASH, - STATE(2598), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1707), 9, + ACTIONS(4373), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -210455,14 +210670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [132710] = 4, - ACTIONS(143), 1, + [132898] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1687), 1, + ACTIONS(4379), 1, anon_sym_DASH, - STATE(2599), 1, + STATE(2601), 1, sym_comment, - ACTIONS(1689), 9, + ACTIONS(4377), 9, anon_sym_EQ, sym_identifier, anon_sym_COMMA, @@ -210472,12 +210687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [132731] = 3, - ACTIONS(143), 1, + [132919] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2600), 1, + STATE(2602), 1, sym_comment, - ACTIONS(1689), 10, + ACTIONS(1681), 10, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -210488,12 +210703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [132750] = 3, - ACTIONS(143), 1, + [132938] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2601), 1, + STATE(2603), 1, sym_comment, - ACTIONS(1707), 10, + ACTIONS(1695), 10, anon_sym_EQ, sym_cmd_identifier, anon_sym_LBRACK, @@ -210504,1253 +210719,1238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [132769] = 8, + [132957] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(4373), 1, + ACTIONS(2319), 1, anon_sym_LF, - STATE(2602), 1, + STATE(2604), 1, sym_comment, - STATE(2641), 1, + STATE(2622), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2317), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [132985] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(3349), 1, + anon_sym_LF, + STATE(2605), 1, + sym_comment, + STATE(2659), 1, + sym__flag, + STATE(2721), 1, sym_long_flag, - ACTIONS(4371), 4, + ACTIONS(3347), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [132797] = 10, - ACTIONS(143), 1, + [133013] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4375), 1, + ACTIONS(4381), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2603), 1, + STATE(2606), 1, sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [133045] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4385), 1, + anon_sym_COMMA, + ACTIONS(4387), 1, + anon_sym_DASH, + STATE(2607), 1, + sym_comment, + ACTIONS(4383), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [133067] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4389), 1, + anon_sym_RBRACE, + STATE(759), 1, + sym__str_double_quotes, + STATE(2608), 1, + sym_comment, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132829] = 8, + [133099] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2271), 1, + anon_sym_LF, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(4373), 1, - anon_sym_LF, - STATE(2604), 1, + STATE(2609), 1, sym_comment, - STATE(2605), 1, + STATE(2653), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(4371), 4, + ACTIONS(2269), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [132857] = 8, + [133127] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(4379), 1, + ACTIONS(2271), 1, anon_sym_LF, - ACTIONS(4381), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - STATE(1810), 1, - sym_long_flag, - STATE(2605), 1, + ACTIONS(2295), 1, + sym_short_flag, + STATE(2610), 1, sym_comment, - STATE(2935), 1, + STATE(2658), 1, sym__flag, - ACTIONS(4377), 4, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2269), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [132885] = 11, - ACTIONS(143), 1, + [133155] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4195), 1, + ACTIONS(4393), 1, + anon_sym_COMMA, + ACTIONS(4395), 1, + anon_sym_DASH, + STATE(2611), 1, + sym_comment, + ACTIONS(4391), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DOLLAR, - ACTIONS(4383), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [133177] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, sym_identifier, - STATE(1953), 1, - sym__var, - STATE(2606), 1, + ACTIONS(4397), 1, + anon_sym_RBRACE, + STATE(759), 1, + sym__str_double_quotes, + STATE(2612), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(2962), 1, - sym__flag, - STATE(3039), 1, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [133209] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2271), 1, + anon_sym_LF, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + STATE(1841), 1, sym_long_flag, - STATE(3061), 1, - sym__variable_name, - [132919] = 10, - ACTIONS(143), 1, + STATE(2613), 1, + sym_comment, + STATE(2975), 1, + sym__flag, + ACTIONS(2269), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [133237] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4385), 1, - sym_cmd_identifier, - ACTIONS(4387), 1, - anon_sym_RBRACK, - ACTIONS(4389), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - STATE(2600), 1, - sym_val_string, - STATE(2607), 1, - sym_comment, - STATE(2654), 1, - aux_sym_command_list_repeat1, - STATE(2812), 1, - sym__command_name, - STATE(2813), 1, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4401), 1, + anon_sym_RBRACE, + STATE(759), 1, sym__str_double_quotes, - ACTIONS(4391), 2, + STATE(2614), 1, + sym_comment, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132951] = 10, - ACTIONS(143), 1, + [133269] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4393), 1, + ACTIONS(4403), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2608), 1, + STATE(2615), 1, sym_comment, - STATE(2658), 1, + STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [132983] = 8, + [133301] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2331), 1, + ACTIONS(3349), 1, anon_sym_LF, - STATE(2609), 1, + STATE(2616), 1, sym_comment, - STATE(2635), 1, + STATE(2657), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(2329), 4, + ACTIONS(3347), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133011] = 8, - ACTIONS(3), 1, + [133329] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(4373), 1, - anon_sym_LF, - ACTIONS(4381), 1, - anon_sym_DASH_DASH, - STATE(1810), 1, - sym_long_flag, - STATE(2610), 1, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4405), 1, + anon_sym_RBRACE, + STATE(759), 1, + sym__str_double_quotes, + STATE(2617), 1, sym_comment, - STATE(2923), 1, - sym__flag, - ACTIONS(4371), 4, - anon_sym_SEMI, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [133361] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, + sym_identifier, + ACTIONS(4407), 1, + anon_sym_RBRACE, + STATE(759), 1, + sym__str_double_quotes, + STATE(2618), 1, + sym_comment, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2964), 1, + sym_record_entry, + STATE(3555), 1, + sym_val_string, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [133393] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4411), 1, + anon_sym_COMMA, + ACTIONS(4413), 1, + anon_sym_DASH, + STATE(2619), 1, + sym_comment, + ACTIONS(4409), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [133039] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [133415] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(3375), 1, + ACTIONS(2315), 1, anon_sym_LF, - STATE(2604), 1, + STATE(2605), 1, sym__flag, - STATE(2611), 1, + STATE(2620), 1, sym_comment, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(3373), 4, + ACTIONS(2313), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133067] = 8, + [133443] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(3375), 1, + ACTIONS(2299), 1, anon_sym_LF, STATE(2610), 1, sym__flag, - STATE(2612), 1, + STATE(2621), 1, sym_comment, - STATE(2741), 1, - sym_long_flag, - ACTIONS(3373), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [133095] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(3375), 1, - anon_sym_LF, - ACTIONS(4381), 1, - anon_sym_DASH_DASH, - STATE(1810), 1, + STATE(2721), 1, sym_long_flag, - STATE(2613), 1, - sym_comment, - STATE(2844), 1, - sym__flag, - ACTIONS(3373), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133123] = 8, + [133471] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2287), 1, + ACTIONS(2315), 1, anon_sym_LF, - ACTIONS(4381), 1, + ACTIONS(4399), 1, anon_sym_DASH_DASH, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(2614), 1, + STATE(2622), 1, sym_comment, - STATE(2879), 1, + STATE(2893), 1, sym__flag, - ACTIONS(2285), 4, + ACTIONS(2313), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [133151] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4395), 1, - anon_sym_RBRACE, - STATE(758), 1, - sym__str_double_quotes, - STATE(2615), 1, - sym_comment, - STATE(2643), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133183] = 10, - ACTIONS(143), 1, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [133499] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4397), 1, + ACTIONS(4415), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2616), 1, + STATE(2623), 1, sym_comment, - STATE(2643), 1, + STATE(2644), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133215] = 8, + [133531] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2319), 1, anon_sym_LF, - STATE(2617), 1, + STATE(2624), 1, sym_comment, - STATE(2657), 1, + STATE(2648), 1, sym__flag, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(2293), 4, + ACTIONS(2317), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133243] = 8, - ACTIONS(3), 1, + [133559] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - ACTIONS(2321), 1, - anon_sym_LF, - STATE(2612), 1, - sym__flag, - STATE(2618), 1, + ACTIONS(4417), 1, + sym_cmd_identifier, + ACTIONS(4419), 1, + anon_sym_RBRACK, + ACTIONS(4421), 1, + anon_sym_DQUOTE, + STATE(2603), 1, + sym_val_string, + STATE(2625), 1, sym_comment, - STATE(2741), 1, - sym_long_flag, - ACTIONS(2319), 4, - anon_sym_SEMI, + STATE(2662), 1, + aux_sym_command_list_repeat1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2814), 1, + sym__command_name, + ACTIONS(4423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [133591] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4413), 1, + anon_sym_DASH, + ACTIONS(4425), 1, + anon_sym_COMMA, + STATE(2626), 1, + sym_comment, + ACTIONS(4409), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [133271] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [133613] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2321), 1, + ACTIONS(2299), 1, anon_sym_LF, STATE(2613), 1, sym__flag, - STATE(2619), 1, + STATE(2627), 1, sym_comment, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(2319), 4, + ACTIONS(2297), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133299] = 8, + [133641] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2321), 1, + ACTIONS(3349), 1, anon_sym_LF, - ACTIONS(4381), 1, + ACTIONS(4399), 1, anon_sym_DASH_DASH, - STATE(1810), 1, + STATE(1841), 1, sym_long_flag, - STATE(2620), 1, + STATE(2628), 1, sym_comment, - STATE(2882), 1, + STATE(2854), 1, sym__flag, - ACTIONS(2319), 4, + ACTIONS(3347), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133327] = 10, - ACTIONS(143), 1, + [133669] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4399), 1, + ACTIONS(4427), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2621), 1, + STATE(2629), 1, sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133359] = 10, - ACTIONS(143), 1, + [133701] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2319), 1, + anon_sym_LF, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + STATE(1841), 1, + sym_long_flag, + STATE(2630), 1, + sym_comment, + STATE(2949), 1, + sym__flag, + ACTIONS(2317), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [133729] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + ACTIONS(4431), 1, + anon_sym_LF, + STATE(1841), 1, + sym_long_flag, + STATE(2631), 1, + sym_comment, + STATE(2887), 1, + sym__flag, + ACTIONS(4429), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [133757] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4401), 1, + ACTIONS(4433), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2622), 1, + STATE(2632), 1, sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133391] = 10, - ACTIONS(143), 1, + [133789] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4403), 1, + ACTIONS(4435), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2623), 1, + STATE(2633), 1, sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133423] = 8, + [133821] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2317), 1, + ACTIONS(2337), 1, anon_sym_LF, - STATE(2619), 1, - sym__flag, - STATE(2624), 1, + STATE(2634), 1, sym_comment, - STATE(2741), 1, + STATE(2639), 1, + sym__flag, + STATE(2721), 1, sym_long_flag, - ACTIONS(2315), 4, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133451] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4405), 1, - anon_sym_RBRACE, - STATE(758), 1, - sym__str_double_quotes, - STATE(2625), 1, - sym_comment, - STATE(2636), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133483] = 8, + [133849] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2295), 1, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + ACTIONS(4439), 1, anon_sym_LF, - STATE(2614), 1, - sym__flag, - STATE(2626), 1, - sym_comment, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2293), 4, + STATE(2635), 1, + sym_comment, + STATE(2884), 1, + sym__flag, + ACTIONS(4437), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133511] = 8, + [133877] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2317), 1, + ACTIONS(4443), 1, anon_sym_LF, - STATE(2620), 1, - sym__flag, - STATE(2627), 1, + STATE(2636), 1, sym_comment, - STATE(2741), 1, + STATE(2647), 1, + sym__flag, + STATE(2721), 1, sym_long_flag, - ACTIONS(2315), 4, + ACTIONS(4441), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133539] = 8, + [133905] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2323), 1, anon_sym_LF, - ACTIONS(4381), 1, - anon_sym_DASH_DASH, - STATE(1810), 1, - sym_long_flag, - STATE(2628), 1, - sym_comment, - STATE(2943), 1, + STATE(2604), 1, sym__flag, - ACTIONS(2293), 4, + STATE(2637), 1, + sym_comment, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133567] = 10, - ACTIONS(143), 1, + [133933] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4407), 1, + ACTIONS(4445), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2629), 1, + STATE(2638), 1, sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133599] = 10, - ACTIONS(143), 1, + [133965] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4385), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2323), 1, + anon_sym_LF, + STATE(2630), 1, + sym__flag, + STATE(2639), 1, + sym_comment, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2321), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [133993] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4417), 1, sym_cmd_identifier, - ACTIONS(4389), 1, + ACTIONS(4421), 1, anon_sym_DQUOTE, - ACTIONS(4409), 1, + ACTIONS(4447), 1, anon_sym_RBRACK, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2607), 1, - aux_sym_command_list_repeat1, - STATE(2630), 1, + STATE(2640), 1, sym_comment, - STATE(2812), 1, - sym__command_name, - STATE(2813), 1, + STATE(2654), 1, + aux_sym_command_list_repeat1, + STATE(2777), 1, sym__str_double_quotes, - ACTIONS(4391), 2, + STATE(2814), 1, + sym__command_name, + ACTIONS(4423), 2, sym__str_single_quotes, sym__str_back_ticks, - [133631] = 10, - ACTIONS(143), 1, + [134025] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4411), 1, + ACTIONS(4449), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2631), 1, - sym_comment, - STATE(2643), 1, + STATE(2633), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2641), 1, + sym_comment, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133663] = 10, - ACTIONS(143), 1, + [134057] = 11, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, sym_identifier, - ACTIONS(4413), 1, - anon_sym_RBRACE, - STATE(758), 1, - sym__str_double_quotes, - STATE(2632), 1, + STATE(1964), 1, + sym__var, + STATE(2642), 1, sym_comment, - STATE(2643), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133695] = 10, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(2947), 1, + sym__variable_name, + STATE(2948), 1, + sym__flag, + STATE(2994), 1, + sym_long_flag, + [134091] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4415), 1, + ACTIONS(4456), 1, anon_sym_RBRACE, - STATE(758), 1, + ACTIONS(4458), 1, + anon_sym_DQUOTE, + STATE(759), 1, sym__str_double_quotes, - STATE(2633), 1, - sym_comment, - STATE(2643), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(4461), 2, sym__str_single_quotes, sym__str_back_ticks, - [133727] = 10, - ACTIONS(143), 1, + STATE(2643), 2, + sym_comment, + aux_sym_val_record_repeat1, + [134121] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4417), 1, + ACTIONS(4464), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2634), 1, - sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2644), 1, + sym_comment, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133759] = 8, + [134153] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, + ACTIONS(2267), 1, + sym_short_flag, + ACTIONS(2323), 1, anon_sym_LF, - ACTIONS(2289), 1, + ACTIONS(4399), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - STATE(2628), 1, - sym__flag, - STATE(2635), 1, - sym_comment, - STATE(2741), 1, + STATE(1841), 1, sym_long_flag, - ACTIONS(2275), 4, + STATE(2645), 1, + sym_comment, + STATE(2962), 1, + sym__flag, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133787] = 10, - ACTIONS(143), 1, + [134181] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4419), 1, + ACTIONS(4466), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2636), 1, - sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [133819] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4421), 1, - anon_sym_RBRACE, - STATE(758), 1, - sym__str_double_quotes, - STATE(2637), 1, + STATE(2646), 1, sym_comment, - STATE(2643), 1, - aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133851] = 8, + [134213] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, - anon_sym_LF, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - STATE(2626), 1, + ACTIONS(4439), 1, + anon_sym_LF, + STATE(2631), 1, sym__flag, - STATE(2638), 1, + STATE(2647), 1, sym_comment, - STATE(2741), 1, - sym_long_flag, - ACTIONS(2275), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [133879] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2317), 1, - anon_sym_LF, - ACTIONS(4381), 1, - anon_sym_DASH_DASH, - STATE(1810), 1, + STATE(2721), 1, sym_long_flag, - STATE(2639), 1, - sym_comment, - STATE(2853), 1, - sym__flag, - ACTIONS(2315), 4, + ACTIONS(4437), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133907] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4425), 1, - anon_sym_COMMA, - ACTIONS(4427), 1, - anon_sym_DASH, - STATE(2640), 1, - sym_comment, - ACTIONS(4423), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [133929] = 8, + [134241] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(4379), 1, + ACTIONS(2315), 1, anon_sym_LF, - STATE(2641), 1, - sym_comment, - STATE(2647), 1, + STATE(2628), 1, sym__flag, - STATE(2741), 1, + STATE(2648), 1, + sym_comment, + STATE(2721), 1, sym_long_flag, - ACTIONS(4377), 4, + ACTIONS(2313), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [133957] = 10, - ACTIONS(143), 1, + [134269] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4429), 1, + ACTIONS(4468), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2642), 1, - sym_comment, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2863), 1, + STATE(2649), 1, + sym_comment, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [133989] = 9, - ACTIONS(143), 1, + [134301] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4431), 1, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4434), 1, + ACTIONS(4470), 1, anon_sym_RBRACE, - ACTIONS(4436), 1, - anon_sym_DQUOTE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2863), 1, + STATE(2643), 1, + aux_sym_val_record_repeat1, + STATE(2650), 1, + sym_comment, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(4439), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2643), 2, - sym_comment, - aux_sym_val_record_repeat1, - [134019] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4444), 1, - anon_sym_COMMA, - ACTIONS(4446), 1, - anon_sym_DASH, - STATE(2644), 1, - sym_comment, - ACTIONS(4442), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [134041] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_LF, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, - sym_short_flag, - STATE(2645), 1, - sym_comment, - STATE(2655), 1, - sym__flag, - STATE(2741), 1, - sym_long_flag, - ACTIONS(2285), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [134069] = 5, - ACTIONS(143), 1, + [134333] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4446), 1, - anon_sym_DASH, - ACTIONS(4448), 1, - anon_sym_COMMA, - STATE(2646), 1, - sym_comment, - ACTIONS(4442), 7, - sym_identifier, + ACTIONS(4417), 1, + sym_cmd_identifier, + ACTIONS(4421), 1, + anon_sym_DQUOTE, + ACTIONS(4472), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [134091] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(4381), 1, - anon_sym_DASH_DASH, - ACTIONS(4452), 1, - anon_sym_LF, - STATE(1810), 1, - sym_long_flag, - STATE(2647), 1, + STATE(2603), 1, + sym_val_string, + STATE(2625), 1, + aux_sym_command_list_repeat1, + STATE(2651), 1, sym_comment, - STATE(2937), 1, - sym__flag, - ACTIONS(4450), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [134119] = 10, - ACTIONS(143), 1, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2814), 1, + sym__command_name, + ACTIONS(4423), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134365] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4454), 1, + ACTIONS(4474), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2648), 1, + STATE(2652), 1, sym_comment, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [134151] = 10, - ACTIONS(143), 1, + [134397] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4385), 1, + ACTIONS(2293), 1, + anon_sym_DASH_DASH, + ACTIONS(2295), 1, + sym_short_flag, + ACTIONS(2337), 1, + anon_sym_LF, + STATE(2645), 1, + sym__flag, + STATE(2653), 1, + sym_comment, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2335), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [134425] = 10, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4417), 1, sym_cmd_identifier, - ACTIONS(4389), 1, + ACTIONS(4421), 1, anon_sym_DQUOTE, - ACTIONS(4456), 1, + ACTIONS(4476), 1, anon_sym_RBRACK, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2649), 1, + STATE(2654), 1, sym_comment, - STATE(2653), 1, + STATE(2662), 1, aux_sym_command_list_repeat1, - STATE(2812), 1, - sym__command_name, - STATE(2813), 1, + STATE(2777), 1, sym__str_double_quotes, - ACTIONS(4391), 2, + STATE(2814), 1, + sym__command_name, + ACTIONS(4423), 2, sym__str_single_quotes, sym__str_back_ticks, - [134183] = 11, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(1953), 1, - sym__var, - STATE(2650), 1, - sym_comment, - STATE(2867), 1, - sym__flag, - STATE(2868), 1, - sym__variable_name, - STATE(2953), 1, - sym_val_variable, - STATE(3039), 1, - sym_long_flag, - [134217] = 8, + [134457] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2261), 1, - sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(2233), 1, anon_sym_LF, - ACTIONS(4381), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - STATE(1810), 1, - sym_long_flag, - STATE(2651), 1, - sym_comment, - STATE(2865), 1, + ACTIONS(2295), 1, + sym_short_flag, + STATE(2627), 1, sym__flag, - ACTIONS(2311), 4, + STATE(2655), 1, + sym_comment, + STATE(2721), 1, + sym_long_flag, + ACTIONS(2231), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [134245] = 10, - ACTIONS(143), 1, + [134485] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4458), 1, + ACTIONS(4478), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2652), 1, + STATE(2656), 1, sym_comment, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, - sym_val_string, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [134277] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4385), 1, - sym_cmd_identifier, - ACTIONS(4389), 1, - anon_sym_DQUOTE, - ACTIONS(4460), 1, - anon_sym_RBRACK, - STATE(2600), 1, - sym_val_string, - STATE(2653), 1, - sym_comment, - STATE(2654), 1, - aux_sym_command_list_repeat1, - STATE(2812), 1, - sym__command_name, - STATE(2813), 1, - sym__str_double_quotes, - ACTIONS(4391), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [134309] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4462), 1, - sym_cmd_identifier, - ACTIONS(4465), 1, - anon_sym_RBRACK, - ACTIONS(4467), 1, - anon_sym_DQUOTE, - STATE(2600), 1, + STATE(3555), 1, sym_val_string, - STATE(2812), 1, - sym__command_name, - STATE(2813), 1, - sym__str_double_quotes, - ACTIONS(4470), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2654), 2, - sym_comment, - aux_sym_command_list_repeat1, - [134339] = 8, + [134517] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, + ACTIONS(2293), 1, anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2295), 1, sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(4443), 1, anon_sym_LF, - STATE(2639), 1, + STATE(2635), 1, sym__flag, - STATE(2655), 1, + STATE(2657), 1, sym_comment, - STATE(2741), 1, + STATE(2721), 1, sym_long_flag, - ACTIONS(2311), 4, + ACTIONS(4441), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [134367] = 8, + [134545] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - ACTIONS(2313), 1, + ACTIONS(2337), 1, anon_sym_LF, - STATE(2627), 1, - sym__flag, - STATE(2656), 1, - sym_comment, - STATE(2741), 1, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + STATE(1841), 1, sym_long_flag, - ACTIONS(2311), 4, + STATE(2658), 1, + sym_comment, + STATE(2966), 1, + sym__flag, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [134395] = 8, + [134573] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_LF, - ACTIONS(2289), 1, - anon_sym_DASH_DASH, - ACTIONS(2291), 1, + ACTIONS(2267), 1, sym_short_flag, - STATE(2651), 1, - sym__flag, - STATE(2657), 1, - sym_comment, - STATE(2741), 1, + ACTIONS(4399), 1, + anon_sym_DASH_DASH, + ACTIONS(4443), 1, + anon_sym_LF, + STATE(1841), 1, sym_long_flag, - ACTIONS(2285), 4, + STATE(2659), 1, + sym_comment, + STATE(2868), 1, + sym__flag, + ACTIONS(4441), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [134423] = 10, - ACTIONS(143), 1, + [134601] = 11, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(1964), 1, + sym__var, + STATE(2660), 1, + sym_comment, + STATE(2846), 1, + sym__flag, + STATE(2857), 1, + sym__variable_name, + STATE(2892), 1, + sym_val_variable, + STATE(2994), 1, + sym_long_flag, + [134635] = 10, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, + ACTIONS(4173), 1, sym_identifier, - ACTIONS(4473), 1, + ACTIONS(4480), 1, anon_sym_RBRACE, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, STATE(2643), 1, aux_sym_val_record_repeat1, - STATE(2658), 1, + STATE(2661), 1, sym_comment, - STATE(2863), 1, + STATE(2964), 1, sym_record_entry, - STATE(3537), 1, + STATE(3555), 1, sym_val_string, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [134455] = 5, - ACTIONS(143), 1, + [134667] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4477), 1, - anon_sym_COMMA, - ACTIONS(4479), 1, - anon_sym_DASH, - STATE(2659), 1, - sym_comment, - ACTIONS(4475), 7, - sym_identifier, + ACTIONS(4482), 1, + sym_cmd_identifier, + ACTIONS(4485), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [134477] = 10, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4487), 1, anon_sym_DQUOTE, - ACTIONS(4187), 1, - sym_identifier, - ACTIONS(4481), 1, - anon_sym_RBRACE, - STATE(758), 1, - sym__str_double_quotes, - STATE(2643), 1, - aux_sym_val_record_repeat1, - STATE(2660), 1, - sym_comment, - STATE(2863), 1, - sym_record_entry, - STATE(3537), 1, + STATE(2603), 1, sym_val_string, - ACTIONS(2612), 2, + STATE(2777), 1, + sym__str_double_quotes, + STATE(2814), 1, + sym__command_name, + ACTIONS(4490), 2, sym__str_single_quotes, sym__str_back_ticks, - [134509] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4427), 1, - anon_sym_DASH, - STATE(2661), 1, + STATE(2662), 2, sym_comment, - ACTIONS(4423), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [134528] = 4, - ACTIONS(143), 1, + aux_sym_command_list_repeat1, + [134697] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4485), 1, + ACTIONS(4387), 1, anon_sym_DASH, - STATE(2662), 1, + STATE(2663), 1, sym_comment, - ACTIONS(4483), 7, + ACTIONS(4383), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -211758,52 +211958,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134547] = 8, + [134716] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2663), 1, + STATE(2664), 1, sym_comment, - STATE(2702), 1, + STATE(2699), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2329), 2, + ACTIONS(4441), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2331), 2, + ACTIONS(4443), 2, ts_builtin_sym_end, anon_sym_LF, - [134574] = 8, + [134743] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2664), 1, + STATE(2665), 1, sym_comment, - STATE(2668), 1, + STATE(2682), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2319), 2, + ACTIONS(2231), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2321), 2, + ACTIONS(2233), 2, ts_builtin_sym_end, anon_sym_LF, - [134601] = 4, - ACTIONS(143), 1, + [134770] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4493), 1, + sym_identifier, + ACTIONS(4495), 1, + anon_sym_GT, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + STATE(2499), 1, + sym__str_double_quotes, + STATE(2666), 1, + sym_comment, + STATE(2704), 1, + aux_sym_collection_type_repeat1, + STATE(2733), 1, + sym_val_string, + ACTIONS(4499), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134799] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4489), 1, + ACTIONS(4503), 1, anon_sym_DASH, - STATE(2665), 1, + STATE(2667), 1, sym_comment, - ACTIONS(4487), 7, + ACTIONS(4501), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -211811,143 +212031,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134620] = 8, - ACTIONS(3), 1, + [134818] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(4279), 1, + anon_sym_DASH, + STATE(2668), 1, + sym_comment, + ACTIONS(4275), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, - STATE(2666), 1, + [134837] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4293), 1, + anon_sym_DASH, + STATE(2669), 1, sym_comment, - STATE(3107), 1, - sym__flag, - ACTIONS(3373), 2, - anon_sym_SEMI, + ACTIONS(4289), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(3375), 2, - ts_builtin_sym_end, - anon_sym_LF, - [134647] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [134856] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(4505), 1, anon_sym_DASH_DASH, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, - STATE(2667), 1, + STATE(2670), 1, sym_comment, - STATE(3117), 1, + STATE(3301), 1, sym__flag, - ACTIONS(2285), 2, + ACTIONS(2269), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2287), 2, + ACTIONS(2271), 2, ts_builtin_sym_end, anon_sym_LF, - [134674] = 8, + [134883] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2668), 1, + STATE(2671), 1, sym_comment, - STATE(2674), 1, + STATE(2679), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(3373), 2, + ACTIONS(2269), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3375), 2, + ACTIONS(2271), 2, ts_builtin_sym_end, anon_sym_LF, - [134701] = 8, + [134910] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4493), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + ACTIONS(4507), 1, + anon_sym_GT, + STATE(2499), 1, + sym__str_double_quotes, + STATE(2672), 1, + sym_comment, + STATE(2673), 1, + aux_sym_collection_type_repeat1, + STATE(2733), 1, + sym_val_string, + ACTIONS(4499), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134939] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4493), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + ACTIONS(4509), 1, + anon_sym_GT, + STATE(2499), 1, + sym__str_double_quotes, + STATE(2673), 1, + sym_comment, + STATE(2704), 1, + aux_sym_collection_type_repeat1, + STATE(2733), 1, + sym_val_string, + ACTIONS(4499), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [134968] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2669), 1, + STATE(2674), 1, sym_comment, - STATE(2679), 1, + STATE(2683), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2285), 2, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2287), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - [134728] = 8, + [134995] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2670), 1, + STATE(2675), 1, sym_comment, - STATE(2681), 1, + STATE(2676), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2285), 2, + ACTIONS(2269), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2287), 2, + ACTIONS(2271), 2, ts_builtin_sym_end, anon_sym_LF, - [134755] = 8, + [135022] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2671), 1, + STATE(2676), 1, sym_comment, - STATE(2697), 1, + STATE(2680), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(3373), 2, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3375), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - [134782] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4223), 1, - anon_sym_DASH, - STATE(2672), 1, - sym_comment, - ACTIONS(4219), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [134801] = 4, - ACTIONS(143), 1, + [135049] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4231), 1, + ACTIONS(4513), 1, anon_sym_DASH, - STATE(2673), 1, + STATE(2677), 1, sym_comment, - ACTIONS(4227), 7, + ACTIONS(4511), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -211955,72 +212211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134820] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, - anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, - STATE(2674), 1, - sym_comment, - STATE(3105), 1, - sym__flag, - ACTIONS(4371), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4373), 2, - ts_builtin_sym_end, - anon_sym_LF, - [134847] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4493), 1, - sym_identifier, - ACTIONS(4495), 1, - anon_sym_GT, - ACTIONS(4497), 1, - anon_sym_DQUOTE, - STATE(2494), 1, - sym__str_double_quotes, - STATE(2675), 1, - sym_comment, - STATE(2694), 1, - aux_sym_collection_type_repeat1, - STATE(2760), 1, - sym_val_string, - ACTIONS(4499), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [134876] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - STATE(2676), 1, - sym_comment, - STATE(2680), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(4371), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4373), 2, - ts_builtin_sym_end, - anon_sym_LF, - [134903] = 4, - ACTIONS(143), 1, + [135068] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4503), 1, + ACTIONS(4513), 1, anon_sym_DASH, - STATE(2677), 1, + STATE(2678), 1, sym_comment, - ACTIONS(4501), 7, + ACTIONS(4511), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -212028,185 +212226,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [134922] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, - anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, - STATE(2678), 1, - sym_comment, - STATE(3104), 1, - sym__flag, - ACTIONS(4377), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4379), 2, - ts_builtin_sym_end, - anon_sym_LF, - [134949] = 8, + [135087] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2429), 1, sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(4505), 1, anon_sym_DASH_DASH, - STATE(1865), 1, + STATE(1889), 1, sym_long_flag, STATE(2679), 1, sym_comment, - STATE(3116), 1, + STATE(3231), 1, sym__flag, - ACTIONS(2311), 2, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2313), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - [134976] = 8, + [135114] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2429), 1, sym_short_flag, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, + sym_long_flag, STATE(2680), 1, sym_comment, - STATE(2689), 1, + STATE(3185), 1, sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(4377), 2, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4379), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - [135003] = 8, - ACTIONS(3), 1, + [135141] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, + ACTIONS(4517), 1, + anon_sym_DASH, STATE(2681), 1, sym_comment, - STATE(2684), 1, - sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2311), 2, - anon_sym_SEMI, + ACTIONS(4515), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2313), 2, - ts_builtin_sym_end, - anon_sym_LF, - [135030] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135160] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, + ACTIONS(2433), 1, + sym_short_flag, + STATE(2670), 1, + sym__flag, STATE(2682), 1, sym_comment, - STATE(3123), 1, - sym__flag, - ACTIONS(2293), 2, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2297), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2295), 2, + ACTIONS(2299), 2, ts_builtin_sym_end, anon_sym_LF, - [135057] = 8, + [135187] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, STATE(2683), 1, sym_comment, - STATE(2704), 1, + STATE(2696), 1, sym__flag, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2311), 2, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2313), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - [135084] = 8, + [135214] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, + ACTIONS(2433), 1, + sym_short_flag, STATE(2684), 1, sym_comment, - STATE(3110), 1, + STATE(2702), 1, sym__flag, - ACTIONS(2315), 2, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2321), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2317), 2, + ACTIONS(2323), 2, ts_builtin_sym_end, anon_sym_LF, - [135111] = 8, - ACTIONS(3), 1, + [135241] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, - sym_short_flag, - STATE(2667), 1, - sym__flag, + ACTIONS(4395), 1, + anon_sym_DASH, STATE(2685), 1, sym_comment, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2293), 2, - anon_sym_SEMI, + ACTIONS(4391), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2295), 2, - ts_builtin_sym_end, - anon_sym_LF, - [135138] = 8, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135260] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2669), 1, + STATE(2671), 1, sym__flag, STATE(2686), 1, sym_comment, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2293), 2, + ACTIONS(2297), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2295), 2, + ACTIONS(2299), 2, ts_builtin_sym_end, anon_sym_LF, - [135165] = 4, - ACTIONS(143), 1, + [135287] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4347), 1, + ACTIONS(4413), 1, anon_sym_DASH, STATE(2687), 1, sym_comment, - ACTIONS(4343), 7, + ACTIONS(4409), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -212214,63 +212385,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [135184] = 4, - ACTIONS(143), 1, + [135306] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4479), 1, - anon_sym_DASH, + ACTIONS(4493), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_DQUOTE, + ACTIONS(4519), 1, + anon_sym_GT, + STATE(2499), 1, + sym__str_double_quotes, + STATE(2666), 1, + aux_sym_collection_type_repeat1, STATE(2688), 1, sym_comment, - ACTIONS(4475), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [135203] = 8, + STATE(2733), 1, + sym_val_string, + ACTIONS(4499), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [135335] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, + ACTIONS(2433), 1, + sym_short_flag, STATE(2689), 1, sym_comment, - STATE(3099), 1, + STATE(2700), 1, sym__flag, - ACTIONS(4450), 2, + STATE(2830), 1, + sym_long_flag, + ACTIONS(3347), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4452), 2, + ACTIONS(3349), 2, ts_builtin_sym_end, anon_sym_LF, - [135230] = 4, - ACTIONS(143), 1, + [135362] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4446), 1, - anon_sym_DASH, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, + STATE(2664), 1, + sym__flag, STATE(2690), 1, sym_comment, - ACTIONS(4442), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(2830), 1, + sym_long_flag, + ACTIONS(3347), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [135249] = 4, - ACTIONS(143), 1, + ACTIONS(3349), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135389] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4446), 1, + ACTIONS(4371), 1, anon_sym_DASH, STATE(2691), 1, sym_comment, - ACTIONS(4442), 7, + ACTIONS(4367), 7, sym_identifier, anon_sym_RBRACK, anon_sym_RPAREN, @@ -212278,10833 +212458,11075 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [135268] = 4, - ACTIONS(143), 1, + [135408] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4485), 1, - anon_sym_DASH, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, STATE(2692), 1, sym_comment, - ACTIONS(4483), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(2705), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(4437), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [135287] = 4, - ACTIONS(143), 1, + ACTIONS(4439), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135435] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4507), 1, - anon_sym_DASH, + ACTIONS(2431), 1, + anon_sym_DASH_DASH, + ACTIONS(2433), 1, + sym_short_flag, STATE(2693), 1, sym_comment, - ACTIONS(4505), 7, - sym_identifier, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(2707), 1, + sym__flag, + STATE(2830), 1, + sym_long_flag, + ACTIONS(2313), 2, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [135306] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4509), 1, - sym_identifier, - ACTIONS(4512), 1, - anon_sym_GT, - ACTIONS(4514), 1, - anon_sym_DQUOTE, - STATE(2494), 1, - sym__str_double_quotes, - STATE(2760), 1, - sym_val_string, - ACTIONS(4517), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2694), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [135333] = 8, + ACTIONS(2315), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135462] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2407), 1, - sym_short_flag, - ACTIONS(4491), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - STATE(1865), 1, - sym_long_flag, - STATE(2695), 1, - sym_comment, - STATE(3108), 1, + ACTIONS(2433), 1, + sym_short_flag, + STATE(2692), 1, sym__flag, - ACTIONS(2319), 2, + STATE(2694), 1, + sym_comment, + STATE(2830), 1, + sym_long_flag, + ACTIONS(4441), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2321), 2, + ACTIONS(4443), 2, ts_builtin_sym_end, anon_sym_LF, - [135360] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4493), 1, - sym_identifier, - ACTIONS(4497), 1, - anon_sym_DQUOTE, - ACTIONS(4520), 1, - anon_sym_GT, - STATE(2494), 1, - sym__str_double_quotes, - STATE(2696), 1, - sym_comment, - STATE(2705), 1, - aux_sym_collection_type_repeat1, - STATE(2760), 1, - sym_val_string, - ACTIONS(4499), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [135389] = 8, + [135489] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2678), 1, + STATE(2689), 1, sym__flag, - STATE(2697), 1, + STATE(2695), 1, sym_comment, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(4371), 2, + ACTIONS(2313), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4373), 2, + ACTIONS(2315), 2, ts_builtin_sym_end, anon_sym_LF, - [135416] = 5, + [135516] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1303), 1, - anon_sym_LF, - ACTIONS(4522), 1, - sym__long_flag_identifier, - STATE(2698), 1, + ACTIONS(2429), 1, + sym_short_flag, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, + sym_long_flag, + STATE(2696), 1, sym_comment, - ACTIONS(1299), 6, + STATE(3145), 1, + sym__flag, + ACTIONS(2317), 2, anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2319), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135543] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4523), 1, + anon_sym_DASH, + STATE(2697), 1, + sym_comment, + ACTIONS(4521), 7, + sym_identifier, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - [135437] = 9, - ACTIONS(143), 1, + [135562] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4493), 1, - sym_identifier, - ACTIONS(4497), 1, - anon_sym_DQUOTE, - ACTIONS(4524), 1, - anon_sym_GT, - STATE(2494), 1, - sym__str_double_quotes, - STATE(2675), 1, - aux_sym_collection_type_repeat1, - STATE(2699), 1, + ACTIONS(2429), 1, + sym_short_flag, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, + sym_long_flag, + STATE(2698), 1, sym_comment, - STATE(2760), 1, - sym_val_string, - ACTIONS(4499), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [135466] = 8, + STATE(3134), 1, + sym__flag, + ACTIONS(2313), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2315), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135589] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(2700), 1, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, + sym_long_flag, + STATE(2699), 1, sym_comment, - STATE(2703), 1, + STATE(3085), 1, sym__flag, - STATE(2815), 1, - sym_long_flag, - ACTIONS(2315), 2, + ACTIONS(4437), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2317), 2, + ACTIONS(4439), 2, ts_builtin_sym_end, anon_sym_LF, - [135493] = 8, + [135616] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(2685), 1, - sym__flag, - STATE(2701), 1, - sym_comment, - STATE(2815), 1, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, sym_long_flag, - ACTIONS(2275), 2, + STATE(2700), 1, + sym_comment, + STATE(3105), 1, + sym__flag, + ACTIONS(4441), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2277), 2, + ACTIONS(4443), 2, ts_builtin_sym_end, anon_sym_LF, - [135520] = 8, + [135643] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4413), 1, + anon_sym_DASH, + STATE(2701), 1, + sym_comment, + ACTIONS(4409), 7, + sym_identifier, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [135662] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2682), 1, + STATE(2698), 1, sym__flag, STATE(2702), 1, sym_comment, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2275), 2, + ACTIONS(2317), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2277), 2, + ACTIONS(2319), 2, ts_builtin_sym_end, anon_sym_LF, - [135547] = 8, + [135689] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2431), 1, anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2433), 1, sym_short_flag, - STATE(2666), 1, + STATE(2693), 1, sym__flag, STATE(2703), 1, sym_comment, - STATE(2815), 1, + STATE(2830), 1, sym_long_flag, - ACTIONS(2319), 2, + ACTIONS(2317), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2321), 2, + ACTIONS(2319), 2, ts_builtin_sym_end, anon_sym_LF, - [135574] = 8, + [135716] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4525), 1, + sym_identifier, + ACTIONS(4528), 1, + anon_sym_GT, + ACTIONS(4530), 1, + anon_sym_DQUOTE, + STATE(2499), 1, + sym__str_double_quotes, + STATE(2733), 1, + sym_val_string, + ACTIONS(4533), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2704), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [135743] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2377), 1, - anon_sym_DASH_DASH, - ACTIONS(2403), 1, + ACTIONS(2429), 1, sym_short_flag, - STATE(2695), 1, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, + sym_long_flag, + STATE(2705), 1, + sym_comment, + STATE(3082), 1, sym__flag, - STATE(2704), 1, + ACTIONS(4429), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4431), 2, + ts_builtin_sym_end, + anon_sym_LF, + [135770] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1311), 1, + anon_sym_LF, + ACTIONS(4536), 1, + sym__long_flag_identifier, + STATE(2706), 1, sym_comment, - STATE(2815), 1, + ACTIONS(1307), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + [135791] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2429), 1, + sym_short_flag, + ACTIONS(4505), 1, + anon_sym_DASH_DASH, + STATE(1889), 1, sym_long_flag, - ACTIONS(2315), 2, + STATE(2707), 1, + sym_comment, + STATE(3298), 1, + sym__flag, + ACTIONS(3347), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2317), 2, + ACTIONS(3349), 2, ts_builtin_sym_end, anon_sym_LF, - [135601] = 9, - ACTIONS(143), 1, + [135818] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4493), 1, - sym_identifier, ACTIONS(4497), 1, anon_sym_DQUOTE, - ACTIONS(4526), 1, - anon_sym_GT, - STATE(2494), 1, + ACTIONS(4538), 1, + sym_cmd_identifier, + STATE(2499), 1, sym__str_double_quotes, - STATE(2694), 1, - aux_sym_collection_type_repeat1, - STATE(2705), 1, - sym_comment, - STATE(2760), 1, + STATE(2599), 1, sym_val_string, + STATE(2601), 1, + sym__command_name, + STATE(2708), 1, + sym_comment, ACTIONS(4499), 2, sym__str_single_quotes, sym__str_back_ticks, - [135630] = 8, - ACTIONS(143), 1, + [135844] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2706), 1, + STATE(2709), 1, sym_comment, - STATE(3555), 1, + STATE(3441), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [135656] = 8, - ACTIONS(143), 1, + [135870] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4227), 1, + anon_sym_DOLLAR, + ACTIONS(4229), 1, + anon_sym_LBRACE, + STATE(1643), 1, + sym__var, + STATE(2710), 1, + sym_comment, + STATE(865), 2, + sym__blosure, + sym_val_variable, + STATE(1925), 2, + sym_block, + sym_val_closure, + [135894] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4540), 1, sym_cmd_identifier, - STATE(758), 1, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(526), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(536), 1, sym_val_string, - STATE(2707), 1, - sym_comment, - STATE(3416), 1, + STATE(649), 1, sym__command_name, - ACTIONS(2612), 2, + STATE(2711), 1, + sym_comment, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [135682] = 8, - ACTIONS(143), 1, + [135920] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, sym__str_double_quotes, - STATE(569), 1, - sym__command_name, - STATE(2708), 1, + STATE(2603), 1, + sym_val_string, + STATE(2712), 1, sym_comment, - ACTIONS(4532), 2, + STATE(3579), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [135708] = 9, - ACTIONS(143), 1, + [135946] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(730), 1, - sym__assignment_pattern, - STATE(2709), 1, + STATE(701), 1, + sym__assignment_pattern_parenthesized, + STATE(2713), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3089), 1, - sym__assignment_pattern_last, - STATE(3397), 1, + STATE(3347), 1, + sym__assignment_pattern_parenthesized_last, + STATE(3393), 1, sym__variable_name, - [135736] = 9, - ACTIONS(143), 1, + [135974] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(706), 1, + STATE(723), 1, sym__assignment_pattern, - STATE(2710), 1, + STATE(2714), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3091), 1, + STATE(3206), 1, sym__assignment_pattern_last, - STATE(3397), 1, - sym__variable_name, - [135764] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(708), 1, - sym__assignment_pattern, - STATE(2711), 1, - sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3362), 1, + STATE(3360), 1, sym__variable_name, - STATE(3390), 1, - sym__assignment_pattern_last, - [135792] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4175), 1, - anon_sym_DOLLAR, - ACTIONS(4177), 1, - anon_sym_LBRACE, - STATE(1613), 1, - sym__var, - STATE(2712), 1, - sym_comment, - STATE(846), 2, - sym__blosure, - sym_val_variable, - STATE(1916), 2, - sym_block, - sym_val_closure, - [135816] = 9, - ACTIONS(143), 1, + [136002] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(705), 1, + STATE(719), 1, sym__assignment_pattern, - STATE(2713), 1, + STATE(2715), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3094), 1, + STATE(3210), 1, sym__assignment_pattern_last, - STATE(3397), 1, + STATE(3360), 1, sym__variable_name, - [135844] = 8, - ACTIONS(143), 1, + [136030] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, - sym_cmd_identifier, - STATE(758), 1, + ACTIONS(4550), 1, + aux_sym_unquoted_token1, + STATE(505), 1, sym__str_double_quotes, - STATE(2600), 1, - sym_val_string, - STATE(2714), 1, + STATE(2716), 1, sym_comment, - STATE(3220), 1, - sym__command_name, - ACTIONS(2612), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - [135870] = 7, - ACTIONS(3), 1, + STATE(310), 2, + sym_val_string, + sym_unquoted, + [136054] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4538), 1, - aux_sym_unquoted_token1, - STATE(570), 1, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, sym__str_double_quotes, - STATE(2715), 1, + STATE(2603), 1, + sym_val_string, + STATE(2717), 1, sym_comment, - ACTIONS(4536), 2, + STATE(3163), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(332), 2, - sym_val_string, - sym_unquoted, - [135894] = 8, - ACTIONS(143), 1, + [136080] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, + ACTIONS(4552), 1, + anon_sym_alias, + ACTIONS(4554), 1, + anon_sym_const, + ACTIONS(4556), 1, + anon_sym_def, + ACTIONS(4558), 1, + anon_sym_def_DASHenv, + ACTIONS(4560), 1, + anon_sym_extern, + ACTIONS(4562), 1, + anon_sym_module, + ACTIONS(4564), 1, + anon_sym_use, + STATE(2718), 1, + sym_comment, + [136108] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, sym__str_double_quotes, - STATE(527), 1, - sym__command_name, - STATE(2716), 1, + STATE(2603), 1, + sym_val_string, + STATE(2719), 1, sym_comment, - ACTIONS(4532), 2, + STATE(3607), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [135920] = 7, - ACTIONS(3), 1, + [136134] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4530), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4540), 1, - aux_sym_unquoted_token1, - STATE(524), 1, + ACTIONS(4566), 1, + sym_cmd_identifier, + STATE(317), 1, + sym__command_name, + STATE(505), 1, sym__str_double_quotes, - STATE(2717), 1, + STATE(516), 1, + sym_val_string, + STATE(2720), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(321), 2, - sym_val_string, - sym_unquoted, - [135944] = 9, - ACTIONS(143), 1, + [136160] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(722), 1, - sym__assignment_pattern_parenthesized, - STATE(2718), 1, + ACTIONS(1449), 1, + anon_sym_LF, + STATE(2721), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3372), 1, - sym__assignment_pattern_parenthesized_last, - STATE(3377), 1, - sym__variable_name, - [135972] = 9, - ACTIONS(143), 1, + ACTIONS(1447), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + [136178] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4542), 1, + ACTIONS(4568), 1, anon_sym_alias, - ACTIONS(4544), 1, + ACTIONS(4570), 1, anon_sym_const, - ACTIONS(4546), 1, + ACTIONS(4572), 1, anon_sym_def, - ACTIONS(4548), 1, + ACTIONS(4574), 1, anon_sym_def_DASHenv, - ACTIONS(4550), 1, + ACTIONS(4576), 1, anon_sym_extern, - ACTIONS(4552), 1, + ACTIONS(4578), 1, anon_sym_module, - ACTIONS(4554), 1, + ACTIONS(4580), 1, anon_sym_use, - STATE(2719), 1, + STATE(2722), 1, + sym_comment, + [136206] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4582), 1, + sym__long_flag_identifier, + STATE(2723), 1, sym_comment, - [136000] = 8, - ACTIONS(143), 1, + ACTIONS(1311), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1307), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + [136226] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2720), 1, + STATE(2724), 1, sym_comment, - STATE(3471), 1, + STATE(3493), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136026] = 8, - ACTIONS(143), 1, + [136252] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2721), 1, + STATE(2725), 1, sym_comment, - STATE(3452), 1, + STATE(3531), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136052] = 9, - ACTIONS(143), 1, + [136278] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(702), 1, - sym__assignment_pattern_parenthesized, - STATE(2722), 1, + STATE(724), 1, + sym__assignment_pattern, + STATE(2726), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3377), 1, + STATE(3362), 1, + sym__assignment_pattern_last, + STATE(3363), 1, sym__variable_name, - STATE(3378), 1, - sym__assignment_pattern_parenthesized_last, - [136080] = 7, - ACTIONS(143), 1, + [136306] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4201), 1, - anon_sym_DOLLAR, - ACTIONS(4203), 1, - anon_sym_LBRACE, - STATE(1580), 1, - sym__var, - STATE(2723), 1, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, + sym__str_double_quotes, + STATE(2603), 1, + sym_val_string, + STATE(2727), 1, sym_comment, - STATE(795), 2, - sym__blosure, - sym_val_variable, - STATE(1836), 2, - sym_block, - sym_val_closure, - [136104] = 9, - ACTIONS(143), 1, + STATE(3160), 1, + sym__command_name, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [136332] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(701), 1, - sym__assignment_pattern_parenthesized, - STATE(2724), 1, + STATE(730), 1, + sym__assignment_pattern, + STATE(2728), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3375), 1, - sym__assignment_pattern_parenthesized_last, - STATE(3377), 1, + STATE(3322), 1, + sym__assignment_pattern_last, + STATE(3360), 1, sym__variable_name, - [136132] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4546), 1, - anon_sym_def, - ACTIONS(4548), 1, - anon_sym_def_DASHenv, - ACTIONS(4550), 1, - anon_sym_extern, - ACTIONS(4552), 1, - anon_sym_module, - ACTIONS(4554), 1, - anon_sym_use, - ACTIONS(4556), 1, - anon_sym_alias, - ACTIONS(4558), 1, - anon_sym_const, - STATE(2725), 1, - sym_comment, - [136160] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, - anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, - sym__str_double_quotes, - STATE(545), 1, - sym__command_name, - STATE(2726), 1, - sym_comment, - ACTIONS(4532), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136186] = 8, - ACTIONS(143), 1, + [136360] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, - sym_cmd_identifier, - STATE(758), 1, - sym__str_double_quotes, - STATE(2595), 1, - sym__command_name, - STATE(2600), 1, - sym_val_string, - STATE(2727), 1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(724), 1, + sym__assignment_pattern, + STATE(2729), 1, sym_comment, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136212] = 7, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3201), 1, + sym__assignment_pattern_last, + STATE(3360), 1, + sym__variable_name, + [136388] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4530), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4540), 1, + ACTIONS(4550), 1, aux_sym_unquoted_token1, - STATE(524), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(2728), 1, + STATE(2730), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(315), 2, + STATE(323), 2, sym_val_string, sym_unquoted, - [136236] = 8, - ACTIONS(143), 1, + [136412] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, - sym_cmd_identifier, - STATE(758), 1, - sym__str_double_quotes, - STATE(2600), 1, - sym_val_string, - STATE(2729), 1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(723), 1, + sym__assignment_pattern, + STATE(2731), 1, sym_comment, - STATE(3497), 1, - sym__command_name, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136262] = 9, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3363), 1, + sym__variable_name, + STATE(3366), 1, + sym__assignment_pattern_last, + [136440] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(708), 1, + STATE(719), 1, sym__assignment_pattern, - STATE(2730), 1, + STATE(2732), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3121), 1, - sym__assignment_pattern_last, - STATE(3397), 1, + STATE(3363), 1, sym__variable_name, - [136290] = 8, - ACTIONS(143), 1, + STATE(3367), 1, + sym__assignment_pattern_last, + [136468] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, - sym_cmd_identifier, - STATE(758), 1, - sym__str_double_quotes, - STATE(2600), 1, - sym_val_string, - STATE(2731), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(2733), 1, sym_comment, - STATE(3430), 1, - sym__command_name, - ACTIONS(2612), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136316] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4584), 5, + sym_identifier, + anon_sym_GT, anon_sym_DQUOTE, - ACTIONS(4385), 1, - sym_cmd_identifier, - STATE(758), 1, - sym__str_double_quotes, - STATE(2600), 1, - sym_val_string, - STATE(2732), 1, - sym_comment, - STATE(3215), 1, - sym__command_name, - ACTIONS(2612), 2, sym__str_single_quotes, sym__str_back_ticks, - [136342] = 8, - ACTIONS(143), 1, + [136488] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2733), 1, + STATE(2734), 1, sym_comment, - STATE(3589), 1, + STATE(3156), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136368] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4560), 1, - sym__long_flag_identifier, - STATE(2734), 1, - sym_comment, - ACTIONS(1303), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1299), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - sym_short_flag, - [136388] = 8, - ACTIONS(143), 1, + [136514] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4566), 1, sym_cmd_identifier, - STATE(348), 1, - sym__command_name, - STATE(570), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(516), 1, sym_val_string, + STATE(564), 1, + sym__command_name, STATE(2735), 1, sym_comment, - ACTIONS(4536), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - [136414] = 8, - ACTIONS(143), 1, + [136540] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4540), 1, sym_cmd_identifier, - STATE(758), 1, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(526), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(536), 1, sym_val_string, + STATE(692), 1, + sym__command_name, STATE(2736), 1, sym_comment, - STATE(3532), 1, - sym__command_name, - ACTIONS(2612), 2, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136440] = 8, - ACTIONS(143), 1, + [136566] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4540), 1, sym_cmd_identifier, - STATE(758), 1, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(526), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(536), 1, sym_val_string, + STATE(698), 1, + sym__command_name, STATE(2737), 1, sym_comment, - STATE(3504), 1, - sym__command_name, - ACTIONS(2612), 2, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136466] = 7, - ACTIONS(3), 1, + [136592] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4538), 1, - aux_sym_unquoted_token1, - STATE(570), 1, + ACTIONS(4566), 1, + sym_cmd_identifier, + STATE(505), 1, sym__str_double_quotes, + STATE(516), 1, + sym_val_string, + STATE(563), 1, + sym__command_name, STATE(2738), 1, sym_comment, - ACTIONS(4536), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(365), 2, - sym_val_string, - sym_unquoted, - [136490] = 9, - ACTIONS(143), 1, + [136618] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(728), 1, - sym__assignment_pattern_parenthesized, + ACTIONS(4592), 1, + anon_sym_COLON, + ACTIONS(4594), 1, + anon_sym_COMMA, STATE(2739), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3374), 1, - sym__assignment_pattern_parenthesized_last, - STATE(3377), 1, - sym__variable_name, - [136518] = 9, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4546), 1, - anon_sym_def, - ACTIONS(4548), 1, - anon_sym_def_DASHenv, - ACTIONS(4550), 1, - anon_sym_extern, - ACTIONS(4552), 1, - anon_sym_module, - ACTIONS(4554), 1, - anon_sym_use, - ACTIONS(4564), 1, - anon_sym_alias, - ACTIONS(4566), 1, - anon_sym_const, - STATE(2740), 1, - sym_comment, - [136546] = 4, - ACTIONS(3), 1, + ACTIONS(4590), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [136638] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1392), 1, - anon_sym_LF, - STATE(2741), 1, + ACTIONS(4596), 1, + anon_sym_DOT, + STATE(1825), 1, + sym_path, + STATE(2740), 2, sym_comment, - ACTIONS(1390), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - [136564] = 8, - ACTIONS(143), 1, + aux_sym_cell_path_repeat1, + ACTIONS(731), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + [136658] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(570), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(2603), 1, sym_val_string, - STATE(629), 1, - sym__command_name, - STATE(2742), 1, + STATE(2741), 1, sym_comment, - ACTIONS(4536), 2, + STATE(3158), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136590] = 8, - ACTIONS(143), 1, + [136684] = 9, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4572), 1, + anon_sym_def, + ACTIONS(4574), 1, + anon_sym_def_DASHenv, + ACTIONS(4576), 1, + anon_sym_extern, + ACTIONS(4578), 1, + anon_sym_module, + ACTIONS(4580), 1, + anon_sym_use, + ACTIONS(4599), 1, + anon_sym_alias, + ACTIONS(4601), 1, + anon_sym_const, + STATE(2742), 1, + sym_comment, + [136712] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2743), 1, sym_comment, - STATE(3219), 1, + STATE(3544), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136616] = 8, - ACTIONS(143), 1, + [136738] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4528), 1, + ACTIONS(4540), 1, sym_cmd_identifier, - ACTIONS(4530), 1, + ACTIONS(4542), 1, anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, + STATE(526), 1, sym__str_double_quotes, - STATE(571), 1, + STATE(536), 1, + sym_val_string, + STATE(650), 1, sym__command_name, STATE(2744), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136642] = 8, - ACTIONS(143), 1, + [136764] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, + ACTIONS(4542), 1, anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, + ACTIONS(4603), 1, + aux_sym_unquoted_token1, + STATE(526), 1, sym__str_double_quotes, - STATE(573), 1, - sym__command_name, STATE(2745), 1, sym_comment, - ACTIONS(4532), 2, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136668] = 8, - ACTIONS(143), 1, + STATE(366), 2, + sym_val_string, + sym_unquoted, + [136788] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - STATE(516), 1, - sym_val_string, - STATE(524), 1, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, sym__str_double_quotes, - STATE(563), 1, - sym__command_name, + STATE(2603), 1, + sym_val_string, STATE(2746), 1, sym_comment, - ACTIONS(4532), 2, + STATE(3152), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136694] = 8, - ACTIONS(143), 1, + [136814] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2747), 1, sym_comment, - STATE(3404), 1, + STATE(3464), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136720] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_LF, - STATE(2748), 1, - sym_comment, - ACTIONS(1402), 6, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - sym_short_flag, - [136738] = 8, - ACTIONS(143), 1, + [136840] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4540), 1, sym_cmd_identifier, - STATE(758), 1, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(526), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(536), 1, sym_val_string, - STATE(2749), 1, - sym_comment, - STATE(3141), 1, + STATE(693), 1, sym__command_name, - ACTIONS(2612), 2, + STATE(2748), 1, + sym_comment, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136764] = 8, - ACTIONS(143), 1, + [136866] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, - anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4540), 1, sym_cmd_identifier, - STATE(570), 1, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(388), 1, + sym__command_name, + STATE(526), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(536), 1, sym_val_string, - STATE(640), 1, - sym__command_name, - STATE(2750), 1, + STATE(2749), 1, sym_comment, - ACTIONS(4536), 2, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [136790] = 6, - ACTIONS(143), 1, + [136892] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4568), 1, + ACTIONS(4605), 1, anon_sym_DOT, - STATE(1784), 1, + STATE(1825), 1, sym_path, - STATE(2751), 1, - sym_comment, - STATE(2756), 1, + STATE(2740), 1, aux_sym_cell_path_repeat1, - ACTIONS(734), 4, + STATE(2750), 1, + sym_comment, + ACTIONS(742), 4, anon_sym_EQ, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - [136812] = 8, - ACTIONS(143), 1, + [136914] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(570), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(2603), 1, sym_val_string, - STATE(619), 1, - sym__command_name, - STATE(2752), 1, + STATE(2751), 1, sym_comment, - ACTIONS(4536), 2, + STATE(3474), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136838] = 8, - ACTIONS(143), 1, + [136940] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(570), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(579), 1, - sym_val_string, - STATE(626), 1, + STATE(2601), 1, sym__command_name, - STATE(2753), 1, + STATE(2603), 1, + sym_val_string, + STATE(2752), 1, sym_comment, - ACTIONS(4536), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136864] = 8, - ACTIONS(143), 1, + [136966] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4497), 1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(730), 1, + sym__assignment_pattern, + STATE(2753), 1, + sym_comment, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3363), 1, + sym__variable_name, + STATE(3407), 1, + sym__assignment_pattern_last, + [136994] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4570), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(2494), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2595), 1, - sym__command_name, - STATE(2599), 1, + STATE(2603), 1, sym_val_string, STATE(2754), 1, sym_comment, - ACTIONS(4499), 2, + STATE(3235), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136890] = 8, - ACTIONS(143), 1, + [137020] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1461), 1, + anon_sym_LF, + STATE(2755), 1, + sym_comment, + ACTIONS(1459), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + sym_short_flag, + [137038] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, - STATE(2755), 1, + STATE(2756), 1, sym_comment, - STATE(3230), 1, + STATE(3234), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136916] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4572), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_path, - STATE(2756), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(701), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [136936] = 8, - ACTIONS(143), 1, + [137064] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4528), 1, - sym_cmd_identifier, - ACTIONS(4530), 1, - anon_sym_DQUOTE, - STATE(323), 1, - sym__command_name, - STATE(516), 1, - sym_val_string, - STATE(524), 1, - sym__str_double_quotes, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(709), 1, + sym__assignment_pattern_parenthesized, STATE(2757), 1, sym_comment, - ACTIONS(4532), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [136962] = 8, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3382), 1, + sym__assignment_pattern_parenthesized_last, + STATE(3393), 1, + sym__variable_name, + [137092] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2758), 1, sym_comment, - STATE(3559), 1, + STATE(3475), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [136988] = 8, - ACTIONS(143), 1, + [137118] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2759), 1, sym_comment, - STATE(3148), 1, + STATE(3453), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [137014] = 5, - ACTIONS(143), 1, + [137144] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4577), 1, - anon_sym_COLON, - ACTIONS(4579), 1, - anon_sym_COMMA, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, + sym__str_double_quotes, + STATE(2603), 1, + sym_val_string, STATE(2760), 1, sym_comment, - ACTIONS(4575), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, + STATE(3236), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [137034] = 9, - ACTIONS(143), 1, + [137170] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4581), 1, - anon_sym_alias, - ACTIONS(4583), 1, - anon_sym_const, - ACTIONS(4585), 1, - anon_sym_def, - ACTIONS(4587), 1, - anon_sym_def_DASHenv, - ACTIONS(4589), 1, - anon_sym_extern, - ACTIONS(4591), 1, - anon_sym_module, - ACTIONS(4593), 1, - anon_sym_use, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + ACTIONS(4603), 1, + aux_sym_unquoted_token1, + STATE(526), 1, + sym__str_double_quotes, STATE(2761), 1, sym_comment, - [137062] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4568), 1, - anon_sym_DOT, - STATE(1784), 1, - sym_path, - STATE(2751), 1, - aux_sym_cell_path_repeat1, - STATE(2762), 1, - sym_comment, - ACTIONS(730), 4, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - [137084] = 9, - ACTIONS(143), 1, + ACTIONS(4544), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(341), 2, + sym_val_string, + sym_unquoted, + [137194] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4546), 1, + ACTIONS(4572), 1, anon_sym_def, - ACTIONS(4548), 1, + ACTIONS(4574), 1, anon_sym_def_DASHenv, - ACTIONS(4550), 1, + ACTIONS(4576), 1, anon_sym_extern, - ACTIONS(4552), 1, + ACTIONS(4578), 1, anon_sym_module, - ACTIONS(4554), 1, + ACTIONS(4580), 1, anon_sym_use, - ACTIONS(4595), 1, + ACTIONS(4607), 1, anon_sym_alias, - ACTIONS(4597), 1, + ACTIONS(4609), 1, anon_sym_const, + STATE(2762), 1, + sym_comment, + [137222] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(4417), 1, + sym_cmd_identifier, + STATE(759), 1, + sym__str_double_quotes, + STATE(2603), 1, + sym_val_string, STATE(2763), 1, sym_comment, - [137112] = 8, - ACTIONS(143), 1, + STATE(3536), 1, + sym__command_name, + ACTIONS(2620), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137248] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2764), 1, sym_comment, - STATE(3510), 1, + STATE(3449), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [137138] = 5, - ACTIONS(143), 1, + [137274] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4601), 1, - anon_sym_COLON, - ACTIONS(4603), 1, - anon_sym_COMMA, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(711), 1, + sym__assignment_pattern_parenthesized, STATE(2765), 1, sym_comment, - ACTIONS(4599), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [137158] = 9, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3390), 1, + sym__assignment_pattern_parenthesized_last, + STATE(3393), 1, + sym__variable_name, + [137302] = 9, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(705), 1, - sym__assignment_pattern, + STATE(714), 1, + sym__assignment_pattern_parenthesized, STATE(2766), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3358), 1, - sym__assignment_pattern_last, - STATE(3362), 1, + STATE(3393), 1, sym__variable_name, - [137186] = 8, - ACTIONS(143), 1, + STATE(3395), 1, + sym__assignment_pattern_parenthesized_last, + [137330] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(570), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(2603), 1, sym_val_string, - STATE(661), 1, - sym__command_name, STATE(2767), 1, sym_comment, - ACTIONS(4536), 2, + STATE(3506), 1, + sym__command_name, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [137212] = 9, - ACTIONS(143), 1, + [137356] = 9, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(706), 1, - sym__assignment_pattern, + ACTIONS(4572), 1, + anon_sym_def, + ACTIONS(4574), 1, + anon_sym_def_DASHenv, + ACTIONS(4576), 1, + anon_sym_extern, + ACTIONS(4578), 1, + anon_sym_module, + ACTIONS(4580), 1, + anon_sym_use, + ACTIONS(4611), 1, + anon_sym_alias, + ACTIONS(4613), 1, + anon_sym_const, STATE(2768), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3362), 1, - sym__variable_name, - STATE(3363), 1, - sym__assignment_pattern_last, - [137240] = 8, - ACTIONS(143), 1, + [137384] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(2618), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4417), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(759), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(2603), 1, sym_val_string, STATE(2769), 1, sym_comment, - STATE(3433), 1, + STATE(3492), 1, sym__command_name, - ACTIONS(2612), 2, + ACTIONS(2620), 2, sym__str_single_quotes, sym__str_back_ticks, - [137266] = 8, - ACTIONS(143), 1, + [137410] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4605), 1, + anon_sym_DOT, + STATE(1825), 1, + sym_path, + STATE(2750), 1, + aux_sym_cell_path_repeat1, + STATE(2770), 1, + sym_comment, + ACTIONS(754), 4, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + [137432] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4566), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(516), 1, sym_val_string, - STATE(2770), 1, - sym_comment, - STATE(3468), 1, + STATE(598), 1, sym__command_name, - ACTIONS(2612), 2, + STATE(2771), 1, + sym_comment, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - [137292] = 8, - ACTIONS(143), 1, + [137458] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4177), 1, + anon_sym_DOLLAR, + ACTIONS(4179), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__var, + STATE(2772), 1, + sym_comment, + STATE(772), 2, + sym__blosure, + sym_val_variable, + STATE(1818), 2, + sym_block, + sym_val_closure, + [137482] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4566), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(516), 1, sym_val_string, - STATE(2771), 1, + STATE(554), 1, + sym__command_name, + STATE(2773), 1, sym_comment, - STATE(3137), 1, + ACTIONS(4548), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [137508] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4540), 1, + sym_cmd_identifier, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + STATE(526), 1, + sym__str_double_quotes, + STATE(536), 1, + sym_val_string, + STATE(657), 1, sym__command_name, - ACTIONS(2612), 2, + STATE(2774), 1, + sym_comment, + ACTIONS(4544), 2, sym__str_single_quotes, sym__str_back_ticks, - [137318] = 8, - ACTIONS(143), 1, + [137534] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2610), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4385), 1, + ACTIONS(4566), 1, sym_cmd_identifier, - STATE(758), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(2600), 1, + STATE(516), 1, sym_val_string, - STATE(2772), 1, - sym_comment, - STATE(3135), 1, + STATE(617), 1, sym__command_name, - ACTIONS(2612), 2, + STATE(2775), 1, + sym_comment, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - [137344] = 8, - ACTIONS(143), 1, + [137560] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4562), 1, + ACTIONS(4566), 1, sym_cmd_identifier, - STATE(570), 1, + STATE(505), 1, sym__str_double_quotes, - STATE(579), 1, + STATE(516), 1, sym_val_string, - STATE(660), 1, + STATE(613), 1, sym__command_name, - STATE(2773), 1, + STATE(2776), 1, sym_comment, - ACTIONS(4536), 2, + ACTIONS(4548), 2, sym__str_single_quotes, sym__str_back_ticks, - [137370] = 9, - ACTIONS(143), 1, + [137586] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(730), 1, - sym__assignment_pattern, - STATE(2774), 1, + STATE(2777), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3362), 1, - sym__variable_name, - STATE(3365), 1, - sym__assignment_pattern_last, - [137398] = 7, + ACTIONS(915), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [137601] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4609), 1, + ACTIONS(4619), 1, anon_sym_DQUOTE2, - STATE(2775), 1, + STATE(2778), 1, sym_comment, - STATE(2806), 1, + STATE(2815), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137421] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(4613), 1, - anon_sym_LF, - STATE(1444), 1, - aux_sym_pipe_element_repeat1, - STATE(2776), 1, - sym_comment, - ACTIONS(4611), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [137442] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(1299), 1, - sym_identifier, - ACTIONS(4616), 1, - sym__long_flag_identifier, - STATE(2777), 1, - sym_comment, - ACTIONS(1303), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [137461] = 7, + [137624] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4618), 1, + ACTIONS(4621), 1, anon_sym_DQUOTE2, - STATE(2778), 1, + STATE(2779), 1, sym_comment, - STATE(2780), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137484] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2779), 1, - sym_comment, - ACTIONS(770), 6, - sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [137499] = 6, + [137647] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4620), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4626), 1, + ACTIONS(4623), 1, anon_sym_DQUOTE2, - STATE(3251), 1, + STATE(2780), 1, + sym_comment, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4623), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - STATE(2780), 2, - sym_comment, - aux_sym__inter_double_quotes_repeat1, - [137520] = 7, + [137670] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4628), 1, + ACTIONS(4625), 1, anon_sym_DQUOTE2, - STATE(2780), 1, + STATE(2779), 1, aux_sym__inter_double_quotes_repeat1, STATE(2781), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137543] = 6, - ACTIONS(3), 1, + [137693] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3726), 1, - anon_sym_LF, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(719), 1, + sym__assignment_pattern, STATE(2782), 1, sym_comment, - ACTIONS(3724), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [137564] = 3, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3378), 1, + sym__variable_name, + [137718] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4627), 1, + anon_sym_DQUOTE2, STATE(2783), 1, sym_comment, - ACTIONS(766), 6, - sym_cmd_identifier, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [137579] = 5, + STATE(2827), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [137741] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4632), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, anon_sym_LF, - ACTIONS(4634), 1, - anon_sym_catch, + STATE(481), 1, + aux_sym__block_body_repeat1, + STATE(541), 1, + sym__terminator, STATE(2784), 1, sym_comment, - ACTIONS(4630), 4, - anon_sym_SEMI, + ACTIONS(4629), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [137598] = 4, - ACTIONS(143), 1, + [137764] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4638), 1, - anon_sym_COMMA, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(723), 1, + sym__assignment_pattern, STATE(2785), 1, sym_comment, - ACTIONS(4636), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [137615] = 7, - ACTIONS(3), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3378), 1, + sym__variable_name, + [137789] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_LF, - STATE(490), 1, - aux_sym__block_body_repeat1, - STATE(553), 1, - sym__terminator, STATE(2786), 1, sym_comment, - ACTIONS(4640), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [137638] = 7, + ACTIONS(781), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [137804] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4642), 1, + ACTIONS(4631), 1, anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, STATE(2787), 1, sym_comment, - STATE(3251), 1, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137661] = 7, - ACTIONS(3), 1, + [137827] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_LF, - STATE(553), 1, - sym__terminator, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(724), 1, + sym__assignment_pattern, STATE(2788), 1, sym_comment, - STATE(2803), 1, - aux_sym__block_body_repeat1, - ACTIONS(4640), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [137684] = 7, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3378), 1, + sym__variable_name, + [137852] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2789), 1, + sym_comment, + ACTIONS(777), 6, + sym_cmd_identifier, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [137867] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(1307), 1, + sym_identifier, + ACTIONS(4633), 1, + sym__long_flag_identifier, + STATE(2790), 1, + sym_comment, + ACTIONS(1311), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + [137886] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4644), 1, + ACTIONS(4635), 1, anon_sym_DQUOTE2, - STATE(2789), 1, + STATE(2791), 1, sym_comment, - STATE(2832), 1, + STATE(2793), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137707] = 5, + [137909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4648), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3792), 1, anon_sym_LF, - ACTIONS(4650), 1, - anon_sym_else, - STATE(2790), 1, + STATE(1484), 1, + aux_sym_pipe_element_repeat1, + STATE(2792), 1, sym_comment, - ACTIONS(4646), 4, + ACTIONS(3790), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [137726] = 7, + [137930] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4652), 1, + ACTIONS(4637), 1, anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2791), 1, + STATE(2793), 1, sym_comment, - STATE(3251), 1, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137749] = 7, - ACTIONS(3), 1, + [137953] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4654), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2792), 1, + ACTIONS(4641), 1, + anon_sym_COMMA, + STATE(2794), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [137772] = 7, + ACTIONS(4639), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [137970] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4656), 1, - anon_sym_DQUOTE2, - STATE(2778), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2793), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(4645), 1, + anon_sym_LF, + STATE(1482), 1, + aux_sym_pipe_element_repeat1, + STATE(2795), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [137795] = 7, + ACTIONS(4643), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [137991] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4658), 1, + ACTIONS(4648), 1, anon_sym_DQUOTE2, - STATE(2794), 1, + STATE(2796), 1, sym_comment, - STATE(2805), 1, + STATE(2802), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137818] = 7, + [138014] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2795), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + STATE(541), 1, + sym__terminator, + STATE(2797), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [137841] = 7, + STATE(2804), 1, + aux_sym__block_body_repeat1, + ACTIONS(4629), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [138037] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4662), 1, + ACTIONS(4650), 1, anon_sym_DQUOTE2, STATE(2780), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2796), 1, + STATE(2798), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137864] = 7, + [138060] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4664), 1, + ACTIONS(4652), 1, anon_sym_DQUOTE2, - STATE(2797), 1, + STATE(2799), 1, sym_comment, - STATE(2833), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [137887] = 8, - ACTIONS(143), 1, + [138083] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(4666), 1, + ACTIONS(4654), 1, sym_identifier, - STATE(2798), 1, + STATE(2800), 1, sym_comment, - STATE(2799), 1, + STATE(2809), 1, aux_sym_overlay_use_repeat1, - STATE(3039), 1, - sym_long_flag, - STATE(3341), 1, - sym__flag, - [137912] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(1247), 1, - sym_identifier, - ACTIONS(4668), 1, - anon_sym_DASH_DASH, - ACTIONS(4671), 1, - sym_short_flag, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3341), 1, + STATE(3344), 1, sym__flag, - STATE(2799), 2, - sym_comment, - aux_sym_overlay_use_repeat1, - [137935] = 7, + [138108] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4674), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2800), 1, - sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [137958] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4676), 1, - sym_identifier, - STATE(2799), 1, - aux_sym_overlay_use_repeat1, + ACTIONS(4658), 1, + anon_sym_LF, + ACTIONS(4660), 1, + anon_sym_else, STATE(2801), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3341), 1, - sym__flag, - [137983] = 7, + ACTIONS(4656), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [138127] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4678), 1, + ACTIONS(4662), 1, anon_sym_DQUOTE2, STATE(2802), 1, sym_comment, - STATE(2816), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138006] = 7, + [138150] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, + ACTIONS(1745), 1, anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(1747), 1, anon_sym_LF, - STATE(490), 1, - aux_sym__block_body_repeat1, - STATE(553), 1, + STATE(541), 1, sym__terminator, + STATE(2784), 1, + aux_sym__block_body_repeat1, STATE(2803), 1, sym_comment, - ACTIONS(4680), 2, + ACTIONS(4664), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [138029] = 7, + [138173] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4682), 1, - anon_sym_DQUOTE2, - STATE(2787), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + STATE(481), 1, + aux_sym__block_body_repeat1, + STATE(541), 1, + sym__terminator, STATE(2804), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [138052] = 7, + ACTIONS(4666), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [138196] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4684), 1, + ACTIONS(4668), 1, anon_sym_DQUOTE2, - STATE(2780), 1, + STATE(2787), 1, aux_sym__inter_double_quotes_repeat1, STATE(2805), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138075] = 7, - ACTIONS(3), 1, + [138219] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4686), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(701), 1, + sym__assignment_pattern_parenthesized, STATE(2806), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [138098] = 4, - ACTIONS(143), 1, + STATE(2892), 1, + sym_val_variable, + STATE(3006), 1, + sym__var, + STATE(3391), 1, + sym__variable_name, + [138244] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4690), 1, - anon_sym_COMMA, + ACTIONS(1311), 1, + anon_sym_LF, + ACTIONS(4670), 1, + sym__long_flag_identifier, STATE(2807), 1, sym_comment, - ACTIONS(4688), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [138115] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4692), 1, - sym_identifier, - STATE(2798), 1, - aux_sym_overlay_use_repeat1, - STATE(2808), 1, - sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3341), 1, - sym__flag, - [138140] = 7, + ACTIONS(1307), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [138263] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4672), 1, anon_sym_LPAREN, - ACTIONS(4694), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2809), 1, - sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4675), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138163] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4696), 1, - anon_sym_DQUOTE2, - STATE(2795), 1, + STATE(2808), 2, + sym_comment, aux_sym__inter_double_quotes_repeat1, - STATE(2810), 1, + [138284] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(1251), 1, + sym_identifier, + ACTIONS(4680), 1, + anon_sym_DASH_DASH, + ACTIONS(4683), 1, + sym_short_flag, + STATE(2994), 1, + sym_long_flag, + STATE(3344), 1, + sym__flag, + STATE(2809), 2, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [138186] = 7, + aux_sym_overlay_use_repeat1, + [138307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(4688), 1, anon_sym_LF, - STATE(553), 1, - sym__terminator, - STATE(2786), 1, - aux_sym__block_body_repeat1, - STATE(2811), 1, + ACTIONS(4690), 1, + anon_sym_catch, + STATE(2810), 1, sym_comment, - ACTIONS(4698), 2, + ACTIONS(4686), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [138209] = 4, - ACTIONS(143), 1, + [138326] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4694), 1, + anon_sym_COMMA, + STATE(2811), 1, + sym_comment, + ACTIONS(4692), 5, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [138343] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4702), 1, + ACTIONS(4698), 1, anon_sym_COMMA, STATE(2812), 1, sym_comment, - ACTIONS(4700), 5, - sym_cmd_identifier, - anon_sym_RBRACK, + ACTIONS(4696), 5, + sym_identifier, + anon_sym_RBRACE, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [138226] = 3, - ACTIONS(143), 1, + [138360] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4700), 1, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, STATE(2813), 1, sym_comment, - ACTIONS(889), 6, - sym_cmd_identifier, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138383] = 4, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4704), 1, anon_sym_COMMA, + STATE(2814), 1, + sym_comment, + ACTIONS(4702), 5, + sym_cmd_identifier, anon_sym_RBRACK, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [138241] = 8, - ACTIONS(143), 1, + [138400] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(708), 1, - sym__assignment_pattern, - STATE(2814), 1, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4706), 1, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(2815), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3322), 1, - sym__variable_name, - [138266] = 4, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138423] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2815), 1, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4708), 1, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(2816), 1, sym_comment, - ACTIONS(1392), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1390), 4, - anon_sym_SEMI, - anon_sym_PIPE, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138446] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, anon_sym_DASH_DASH, + ACTIONS(3707), 1, sym_short_flag, - [138283] = 7, + ACTIONS(4710), 1, + sym_identifier, + STATE(2809), 1, + aux_sym_overlay_use_repeat1, + STATE(2817), 1, + sym_comment, + STATE(2994), 1, + sym_long_flag, + STATE(3344), 1, + sym__flag, + [138471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4704), 1, + ACTIONS(4712), 1, anon_sym_DQUOTE2, - STATE(2780), 1, + STATE(2813), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2816), 1, + STATE(2818), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138306] = 7, + [138494] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4706), 1, + ACTIONS(4714), 1, anon_sym_DQUOTE2, - STATE(2809), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2817), 1, + STATE(2819), 1, sym_comment, - STATE(3251), 1, + STATE(2821), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138329] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4710), 1, - anon_sym_COMMA, - STATE(2818), 1, - sym_comment, - ACTIONS(4708), 5, - sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [138346] = 8, - ACTIONS(143), 1, + [138517] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(4712), 1, - anon_sym_LBRACE, - STATE(667), 1, - sym_val_record, - STATE(2819), 1, + ACTIONS(4716), 1, + sym_identifier, + STATE(2800), 1, + aux_sym_overlay_use_repeat1, + STATE(2820), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3443), 1, + STATE(3344), 1, sym__flag, - [138371] = 7, + [138542] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4714), 1, + ACTIONS(4718), 1, anon_sym_DQUOTE2, - STATE(2820), 1, - sym_comment, - STATE(2826), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(2821), 1, + sym_comment, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138394] = 7, + [138565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4716), 1, + ACTIONS(4720), 1, anon_sym_DQUOTE2, - STATE(2792), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2821), 1, + STATE(2822), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138417] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2822), 1, - sym_comment, - ACTIONS(1404), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1402), 4, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_DASH_DASH, - sym_short_flag, - [138434] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1303), 1, - anon_sym_LF, - ACTIONS(4718), 1, - sym__long_flag_identifier, - STATE(2823), 1, - sym_comment, - ACTIONS(1299), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138453] = 8, - ACTIONS(143), 1, + [138588] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3687), 1, + ACTIONS(3675), 1, anon_sym_DASH_DASH, - ACTIONS(3719), 1, + ACTIONS(3707), 1, sym_short_flag, - ACTIONS(4720), 1, + ACTIONS(4722), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(575), 1, sym_val_record, - STATE(2824), 1, + STATE(2823), 1, sym_comment, - STATE(3039), 1, + STATE(2994), 1, sym_long_flag, - STATE(3445), 1, + STATE(3426), 1, sym__flag, - [138478] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(722), 1, - sym__assignment_pattern_parenthesized, - STATE(2825), 1, - sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3345), 1, - sym__variable_name, - [138503] = 7, + [138613] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4722), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2826), 1, - sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [138526] = 8, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(705), 1, - sym__assignment_pattern, - STATE(2827), 1, + STATE(2824), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3322), 1, - sym__variable_name, - [138551] = 7, + ACTIONS(1461), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1459), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + [138630] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, ACTIONS(4724), 1, anon_sym_DQUOTE2, - STATE(2828), 1, - sym_comment, - STATE(2834), 1, + STATE(2799), 1, aux_sym__inter_double_quotes_repeat1, - STATE(3251), 1, + STATE(2825), 1, + sym_comment, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138574] = 7, + [138653] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, ACTIONS(4726), 1, anon_sym_DQUOTE2, - STATE(2791), 1, + STATE(2822), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2829), 1, + STATE(2826), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138597] = 7, + [138676] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, ACTIONS(4728), 1, anon_sym_DQUOTE2, - STATE(2800), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2830), 1, + STATE(2827), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138620] = 7, + [138699] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, ACTIONS(4730), 1, anon_sym_DQUOTE2, - STATE(2796), 1, + STATE(2816), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2831), 1, + STATE(2828), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138643] = 7, + [138722] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, ACTIONS(4732), 1, anon_sym_DQUOTE2, - STATE(2780), 1, + STATE(2808), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2832), 1, + STATE(2829), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138666] = 7, + [138745] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_LPAREN, - ACTIONS(4734), 1, - anon_sym_DQUOTE2, - STATE(2780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(2833), 1, + STATE(2830), 1, sym_comment, - STATE(3251), 1, - sym_expr_interpolated, - ACTIONS(4607), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [138689] = 7, + ACTIONS(1449), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1447), 4, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_DASH_DASH, + sym_short_flag, + [138762] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4736), 1, + ACTIONS(4734), 1, anon_sym_DQUOTE2, - STATE(2780), 1, + STATE(2829), 1, aux_sym__inter_double_quotes_repeat1, - STATE(2834), 1, + STATE(2831), 1, sym_comment, - STATE(3251), 1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138712] = 8, - ACTIONS(143), 1, + [138785] = 8, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(706), 1, - sym__assignment_pattern, - STATE(2835), 1, + STATE(709), 1, + sym__assignment_pattern_parenthesized, + STATE(2832), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3322), 1, + STATE(3391), 1, sym__variable_name, - [138737] = 8, - ACTIONS(143), 1, + [138810] = 8, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(728), 1, + STATE(711), 1, sym__assignment_pattern_parenthesized, - STATE(2836), 1, + STATE(2833), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3345), 1, + STATE(3391), 1, sym__variable_name, - [138762] = 8, - ACTIONS(143), 1, + [138835] = 8, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, - STATE(701), 1, + STATE(714), 1, sym__assignment_pattern_parenthesized, - STATE(2837), 1, + STATE(2834), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3345), 1, + STATE(3391), 1, sym__variable_name, - [138787] = 8, - ACTIONS(143), 1, + [138860] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(702), 1, - sym__assignment_pattern_parenthesized, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4736), 1, + anon_sym_DQUOTE2, + STATE(2835), 1, + sym_comment, + STATE(2836), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138883] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4738), 1, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(2836), 1, + sym_comment, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138906] = 8, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4740), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_val_record, + STATE(2837), 1, + sym_comment, + STATE(2994), 1, + sym_long_flag, + STATE(3451), 1, + sym__flag, + [138931] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4742), 1, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, STATE(2838), 1, sym_comment, - STATE(2953), 1, - sym_val_variable, - STATE(3038), 1, - sym__var, - STATE(3345), 1, - sym__variable_name, - [138812] = 8, - ACTIONS(143), 1, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [138954] = 8, + ACTIONS(145), 1, anon_sym_POUND, ACTIONS(4195), 1, anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(4451), 1, sym_identifier, STATE(730), 1, sym__assignment_pattern, STATE(2839), 1, sym_comment, - STATE(2953), 1, + STATE(2892), 1, sym_val_variable, - STATE(3038), 1, + STATE(3006), 1, sym__var, - STATE(3322), 1, + STATE(3378), 1, sym__variable_name, - [138837] = 8, - ACTIONS(143), 1, + [138979] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3687), 1, - anon_sym_DASH_DASH, - ACTIONS(3719), 1, - sym_short_flag, - ACTIONS(4738), 1, - sym_identifier, - STATE(2801), 1, - aux_sym_overlay_use_repeat1, + ACTIONS(4615), 1, + anon_sym_LPAREN, + ACTIONS(4744), 1, + anon_sym_DQUOTE2, + STATE(2838), 1, + aux_sym__inter_double_quotes_repeat1, STATE(2840), 1, sym_comment, - STATE(3039), 1, - sym_long_flag, - STATE(3341), 1, - sym__flag, - [138862] = 7, + STATE(3266), 1, + sym_expr_interpolated, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [139002] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4740), 1, + ACTIONS(4746), 1, anon_sym_DQUOTE2, - STATE(2781), 1, - aux_sym__inter_double_quotes_repeat1, STATE(2841), 1, sym_comment, - STATE(3251), 1, + STATE(2843), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(3266), 1, sym_expr_interpolated, - ACTIONS(4607), 2, + ACTIONS(4617), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [138885] = 4, - ACTIONS(3), 1, + [139025] = 8, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(3675), 1, + anon_sym_DASH_DASH, + ACTIONS(3707), 1, + sym_short_flag, + ACTIONS(4748), 1, + sym_identifier, + STATE(2817), 1, + aux_sym_overlay_use_repeat1, STATE(2842), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138901] = 7, + STATE(2994), 1, + sym_long_flag, + STATE(3344), 1, + sym__flag, + [139050] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4615), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, ACTIONS(4750), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE2, + STATE(2808), 1, + aux_sym__inter_double_quotes_repeat1, STATE(2843), 1, sym_comment, - STATE(2851), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3266), 1, sym_expr_interpolated, - [138923] = 4, - ACTIONS(3), 1, + ACTIONS(4617), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [139073] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4373), 1, - anon_sym_LF, STATE(2844), 1, sym_comment, - ACTIONS(4371), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [138939] = 7, + ACTIONS(1461), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + [139087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4752), 1, - ts_builtin_sym_end, ACTIONS(4754), 1, - anon_sym_SEMI, - ACTIONS(4756), 1, anon_sym_LF, STATE(2845), 1, sym_comment, - STATE(3055), 1, - aux_sym__block_body_repeat1, - STATE(3328), 1, - sym__terminator, - [138961] = 3, - ACTIONS(143), 1, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139103] = 7, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(1964), 1, + sym__var, STATE(2846), 1, sym_comment, - ACTIONS(4758), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [138975] = 6, - ACTIONS(143), 1, + STATE(2855), 1, + sym__variable_name, + STATE(2892), 1, + sym_val_variable, + [139125] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4760), 1, - anon_sym_DQUOTE, - ACTIONS(4764), 1, - aux_sym_path_token1, - STATE(1520), 1, - sym__str_double_quotes, + ACTIONS(4758), 1, + anon_sym_LF, STATE(2847), 1, sym_comment, - ACTIONS(4762), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [138995] = 7, + ACTIONS(4756), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4766), 1, - anon_sym_SQUOTE, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2848), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139017] = 6, - ACTIONS(143), 1, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4772), 1, - aux_sym_path_token1, - STATE(1384), 1, - sym__str_double_quotes, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2849), 1, sym_comment, - ACTIONS(4770), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139037] = 3, - ACTIONS(143), 1, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139173] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2850), 1, sym_comment, - ACTIONS(4774), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139051] = 7, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4776), 1, - anon_sym_SQUOTE, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2851), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139073] = 7, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4778), 1, - anon_sym_SQUOTE, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2852), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139095] = 4, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2321), 1, + ACTIONS(4762), 1, anon_sym_LF, STATE(2853), 1, sym_comment, - ACTIONS(2319), 4, + ACTIONS(4760), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139111] = 5, + [139237] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4780), 1, - anon_sym_catch, + ACTIONS(4443), 1, + anon_sym_LF, STATE(2854), 1, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4441), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4632), 2, - ts_builtin_sym_end, - anon_sym_LF, - [139129] = 7, - ACTIONS(3), 1, + anon_sym_RBRACE, + [139253] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4540), 1, - aux_sym_unquoted_token1, - ACTIONS(4782), 1, - anon_sym_DOLLAR, - STATE(470), 1, - sym__var, - STATE(604), 1, - sym_val_variable, - STATE(605), 1, - sym_unquoted, + ACTIONS(4764), 1, + anon_sym_DASH_DASH, + ACTIONS(4766), 1, + anon_sym_in, + ACTIONS(4768), 1, + sym_short_flag, STATE(2855), 1, sym_comment, - [139151] = 7, + STATE(3490), 1, + sym_long_flag, + STATE(3611), 1, + sym__flag, + [139275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4540), 1, - aux_sym_unquoted_token1, - ACTIONS(4782), 1, - anon_sym_DOLLAR, - STATE(470), 1, - sym__var, - STATE(505), 1, - sym_unquoted, - STATE(514), 1, - sym_val_variable, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2856), 1, sym_comment, - [139173] = 3, - ACTIONS(143), 1, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139291] = 7, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(4764), 1, + anon_sym_DASH_DASH, + ACTIONS(4768), 1, + sym_short_flag, + ACTIONS(4770), 1, + anon_sym_in, STATE(2857), 1, sym_comment, - ACTIONS(4784), 5, + STATE(3490), 1, + sym_long_flag, + STATE(3609), 1, + sym__flag, + [139313] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2858), 1, + sym_comment, + ACTIONS(4772), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [139187] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4782), 1, - anon_sym_DOLLAR, - ACTIONS(4786), 1, - sym_identifier, - STATE(470), 1, - sym__var, - STATE(602), 1, - sym_val_variable, - STATE(606), 1, - sym__variable_name, - STATE(2858), 1, - sym_comment, - [139209] = 6, - ACTIONS(143), 1, + [139327] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4788), 1, - anon_sym_DQUOTE, - ACTIONS(4792), 1, - aux_sym_path_token1, - STATE(314), 1, - sym__str_double_quotes, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2859), 1, sym_comment, - ACTIONS(4790), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139229] = 7, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4794), 1, - anon_sym_SQUOTE, + ACTIONS(4762), 1, + anon_sym_LF, STATE(2860), 1, sym_comment, - STATE(2861), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139251] = 7, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4796), 1, - anon_sym_SQUOTE, + ACTIONS(4776), 1, + anon_sym_LF, + ACTIONS(4779), 1, + anon_sym_else, STATE(2861), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139273] = 6, - ACTIONS(143), 1, + ACTIONS(4774), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [139377] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(4800), 1, - aux_sym_path_token1, - STATE(1852), 1, - sym__str_double_quotes, + ACTIONS(4603), 1, + aux_sym_unquoted_token1, + ACTIONS(4781), 1, + anon_sym_DOLLAR, + STATE(500), 1, + sym__var, + STATE(687), 1, + sym_unquoted, + STATE(688), 1, + sym_val_variable, STATE(2862), 1, sym_comment, - ACTIONS(4798), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139293] = 3, - ACTIONS(143), 1, + [139399] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4603), 1, + aux_sym_unquoted_token1, + ACTIONS(4781), 1, + anon_sym_DOLLAR, + STATE(500), 1, + sym__var, + STATE(572), 1, + sym_unquoted, + STATE(573), 1, + sym_val_variable, STATE(2863), 1, sym_comment, - ACTIONS(4802), 5, - sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139307] = 7, - ACTIONS(3), 1, + [139421] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4804), 1, - anon_sym_SQUOTE, + ACTIONS(4781), 1, + anon_sym_DOLLAR, + ACTIONS(4783), 1, + sym_identifier, + STATE(500), 1, + sym__var, + STATE(648), 1, + sym_val_variable, + STATE(683), 1, + sym__variable_name, STATE(2864), 1, sym_comment, - STATE(2888), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139329] = 4, + [139443] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(3867), 1, anon_sym_LF, STATE(2865), 1, sym_comment, - ACTIONS(2315), 4, + ACTIONS(3865), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139345] = 7, + [139459] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4806), 1, - anon_sym_SQUOTE, + ACTIONS(4754), 1, + anon_sym_LF, STATE(2866), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139367] = 7, - ACTIONS(143), 1, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139475] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, - sym_identifier, - STATE(1953), 1, - sym__var, + ACTIONS(4754), 1, + anon_sym_LF, STATE(2867), 1, sym_comment, - STATE(2945), 1, - sym__variable_name, - STATE(2953), 1, - sym_val_variable, - [139389] = 7, - ACTIONS(143), 1, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139491] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DASH_DASH, - ACTIONS(4810), 1, - anon_sym_in, - ACTIONS(4812), 1, - sym_short_flag, + ACTIONS(4439), 1, + anon_sym_LF, STATE(2868), 1, sym_comment, - STATE(3487), 1, - sym__flag, - STATE(3520), 1, - sym_long_flag, - [139411] = 6, + ACTIONS(4437), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(4816), 1, + ACTIONS(4754), 1, anon_sym_LF, - STATE(1476), 1, - aux_sym_pipe_element_repeat1, STATE(2869), 1, sym_comment, - ACTIONS(4814), 2, + ACTIONS(4752), 4, anon_sym_SEMI, anon_sym_RPAREN, - [139431] = 7, + anon_sym_PIPE, + anon_sym_RBRACE, + [139523] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4752), 1, - ts_builtin_sym_end, - ACTIONS(4754), 1, - anon_sym_SEMI, - ACTIONS(4756), 1, + ACTIONS(4762), 1, anon_sym_LF, STATE(2870), 1, sym_comment, - STATE(3009), 1, - aux_sym__block_body_repeat1, - STATE(3328), 1, - sym__terminator, - [139453] = 3, - ACTIONS(143), 1, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139539] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2871), 1, sym_comment, - ACTIONS(4819), 5, + ACTIONS(4785), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [139467] = 7, + [139553] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(4821), 1, + ACTIONS(4791), 1, anon_sym_SQUOTE, STATE(2872), 1, sym_comment, - STATE(2877), 1, + STATE(2977), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, - [139489] = 7, + [139575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4823), 1, - anon_sym_SQUOTE, - STATE(2866), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(4754), 1, + anon_sym_LF, STATE(2873), 1, sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [139511] = 7, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(4754), 1, anon_sym_LF, - ACTIONS(4825), 1, - anon_sym_RPAREN, - STATE(490), 1, - aux_sym__block_body_repeat1, - STATE(553), 1, - sym__terminator, STATE(2874), 1, sym_comment, - [139533] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2875), 1, - sym_comment, - ACTIONS(4827), 5, - sym_cmd_identifier, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139547] = 7, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139607] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, + ACTIONS(4793), 1, + ts_builtin_sym_end, + ACTIONS(4795), 1, anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(4797), 1, anon_sym_LF, - ACTIONS(4829), 1, - anon_sym_RPAREN, - STATE(553), 1, - sym__terminator, - STATE(2876), 1, + STATE(2875), 1, sym_comment, - STATE(2915), 1, + STATE(2982), 1, aux_sym__block_body_repeat1, - [139569] = 7, + STATE(3338), 1, + sym__terminator, + [139629] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4831), 1, - anon_sym_SQUOTE, - STATE(2877), 1, + ACTIONS(4550), 1, + aux_sym_unquoted_token1, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + STATE(467), 1, + sym__var, + STATE(597), 1, + sym_unquoted, + STATE(599), 1, + sym_val_variable, + STATE(2876), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139591] = 6, - ACTIONS(143), 1, + [139651] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4833), 1, - anon_sym_DQUOTE, - ACTIONS(4837), 1, - aux_sym_path_token1, - STATE(1617), 1, - sym__str_double_quotes, - STATE(2878), 1, + ACTIONS(4550), 1, + aux_sym_unquoted_token1, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + STATE(467), 1, + sym__var, + STATE(522), 1, + sym_unquoted, + STATE(523), 1, + sym_val_variable, + STATE(2877), 1, sym_comment, - ACTIONS(4835), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139611] = 4, + [139673] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2313), 1, + ACTIONS(4754), 1, anon_sym_LF, - STATE(2879), 1, + STATE(2878), 1, sym_comment, - ACTIONS(2311), 4, + ACTIONS(4752), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139627] = 3, - ACTIONS(143), 1, + [139689] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4799), 1, + anon_sym_DOLLAR, + ACTIONS(4801), 1, + sym_identifier, + STATE(467), 1, + sym__var, + STATE(612), 1, + sym__variable_name, + STATE(618), 1, + sym_val_variable, + STATE(2879), 1, + sym_comment, + [139711] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(4643), 1, + anon_sym_SEMI, + ACTIONS(4645), 1, + anon_sym_LF, + ACTIONS(4803), 1, + ts_builtin_sym_end, + STATE(1482), 1, + aux_sym_pipe_element_repeat1, STATE(2880), 1, sym_comment, - ACTIONS(4839), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139641] = 4, + [139733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(4762), 1, anon_sym_LF, STATE(2881), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(4760), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139657] = 4, + [139749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3375), 1, + ACTIONS(4754), 1, anon_sym_LF, STATE(2882), 1, sym_comment, - ACTIONS(3373), 4, + ACTIONS(4752), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [139673] = 4, - ACTIONS(143), 1, + [139765] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4845), 1, - sym_identifier, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3790), 1, + anon_sym_SEMI, + ACTIONS(3792), 1, + anon_sym_LF, + ACTIONS(3833), 1, + ts_builtin_sym_end, + STATE(1484), 1, + aux_sym_pipe_element_repeat1, STATE(2883), 1, sym_comment, - ACTIONS(4847), 4, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139689] = 7, + [139787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4849), 1, - anon_sym_SQUOTE, - STATE(2852), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(4431), 1, + anon_sym_LF, STATE(2884), 1, sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [139711] = 3, - ACTIONS(143), 1, + ACTIONS(4429), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139803] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4805), 1, + anon_sym_SQUOTE, STATE(2885), 1, sym_comment, - ACTIONS(4851), 5, - sym_identifier, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139725] = 3, - ACTIONS(143), 1, + STATE(2909), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [139825] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4754), 1, + anon_sym_LF, STATE(2886), 1, sym_comment, - ACTIONS(4853), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139739] = 3, - ACTIONS(143), 1, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139841] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4809), 1, + anon_sym_LF, STATE(2887), 1, sym_comment, - ACTIONS(4855), 5, - sym_identifier, + ACTIONS(4807), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [139753] = 7, + [139857] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4857), 1, - anon_sym_SQUOTE, + ACTIONS(4754), 1, + anon_sym_LF, STATE(2888), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139775] = 6, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3889), 1, + ACTIONS(4813), 1, anon_sym_LF, - STATE(1472), 1, - aux_sym_pipe_element_repeat1, STATE(2889), 1, sym_comment, - ACTIONS(3887), 2, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, - [139795] = 6, - ACTIONS(143), 1, + anon_sym_PIPE, + anon_sym_RBRACE, + [139889] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4859), 1, - anon_sym_DQUOTE, - ACTIONS(4863), 1, - aux_sym_path_token1, - STATE(1596), 1, - sym__str_double_quotes, STATE(2890), 1, sym_comment, - ACTIONS(4861), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139815] = 6, - ACTIONS(143), 1, + ACTIONS(1993), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + sym_short_flag, + [139903] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(2578), 1, anon_sym_DQUOTE, - ACTIONS(4867), 1, + ACTIONS(4817), 1, aux_sym_path_token1, - STATE(1659), 1, + STATE(1753), 1, sym__str_double_quotes, STATE(2891), 1, sym_comment, - ACTIONS(4865), 2, + ACTIONS(4815), 2, sym__str_single_quotes, sym__str_back_ticks, - [139835] = 6, - ACTIONS(143), 1, + [139923] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4530), 1, - anon_sym_DQUOTE, - ACTIONS(4871), 1, - aux_sym_path_token1, - STATE(502), 1, - sym__str_double_quotes, STATE(2892), 1, sym_comment, - ACTIONS(4869), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [139855] = 3, - ACTIONS(143), 1, + ACTIONS(2001), 5, + anon_sym_EQ, + anon_sym_COLON, + anon_sym_DASH_DASH, + anon_sym_in, + sym_short_flag, + [139937] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(3349), 1, + anon_sym_LF, STATE(2893), 1, sym_comment, - ACTIONS(4873), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [139869] = 7, - ACTIONS(3), 1, + ACTIONS(3347), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [139953] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4875), 1, - anon_sym_SQUOTE, + ACTIONS(4819), 1, + anon_sym_DQUOTE, + ACTIONS(4823), 1, + aux_sym_path_token1, + STATE(1475), 1, + sym__str_double_quotes, STATE(2894), 1, sym_comment, - STATE(2897), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139891] = 6, - ACTIONS(143), 1, + ACTIONS(4821), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [139973] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4534), 1, + ACTIONS(4825), 1, anon_sym_DQUOTE, - ACTIONS(4879), 1, + ACTIONS(4829), 1, aux_sym_path_token1, - STATE(520), 1, + STATE(1592), 1, sym__str_double_quotes, STATE(2895), 1, sym_comment, - ACTIONS(4877), 2, + ACTIONS(4827), 2, sym__str_single_quotes, sym__str_back_ticks, - [139911] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(4883), 1, - anon_sym_LF, - STATE(1466), 1, - aux_sym_pipe_element_repeat1, - STATE(2896), 1, - sym_comment, - ACTIONS(4881), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [139931] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4886), 1, - anon_sym_SQUOTE, - STATE(2897), 1, - sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139953] = 6, - ACTIONS(143), 1, + [139993] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4888), 1, + ACTIONS(2863), 1, anon_sym_DQUOTE, - ACTIONS(4892), 1, + ACTIONS(4833), 1, aux_sym_path_token1, - STATE(1694), 1, + STATE(756), 1, sym__str_double_quotes, - STATE(2898), 1, + STATE(2896), 1, sym_comment, - ACTIONS(4890), 2, + ACTIONS(4831), 2, sym__str_single_quotes, sym__str_back_ticks, - [139973] = 7, + [140013] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4894), 1, - anon_sym_SQUOTE, - STATE(2899), 1, + ACTIONS(4754), 1, + anon_sym_LF, + STATE(2897), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [139995] = 3, - ACTIONS(143), 1, + ACTIONS(4752), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [140029] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2900), 1, + ACTIONS(4762), 1, + anon_sym_LF, + STATE(2898), 1, sym_comment, - ACTIONS(4896), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [140009] = 4, + ACTIONS(4760), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [140045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(4762), 1, anon_sym_LF, - STATE(2901), 1, + STATE(2899), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(4760), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140025] = 7, + [140061] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4898), 1, - anon_sym_SQUOTE, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + ACTIONS(4835), 1, + anon_sym_RPAREN, + STATE(481), 1, + aux_sym__block_body_repeat1, + STATE(541), 1, + sym__terminator, + STATE(2900), 1, + sym_comment, + [140083] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4837), 1, + anon_sym_DQUOTE, + ACTIONS(4841), 1, + aux_sym_path_token1, + STATE(1822), 1, + sym__str_double_quotes, + STATE(2901), 1, + sym_comment, + ACTIONS(4839), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140103] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4843), 1, + anon_sym_DQUOTE, + ACTIONS(4847), 1, + aux_sym_path_token1, + STATE(1536), 1, + sym__str_double_quotes, STATE(2902), 1, sym_comment, - STATE(2904), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [140047] = 4, - ACTIONS(3), 1, + ACTIONS(4845), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140123] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(2897), 1, + anon_sym_DQUOTE, + ACTIONS(4851), 1, + aux_sym_path_token1, + STATE(1570), 1, + sym__str_double_quotes, STATE(2903), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140063] = 7, - ACTIONS(3), 1, + ACTIONS(4849), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140143] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4900), 1, - anon_sym_SQUOTE, + ACTIONS(4853), 1, + anon_sym_DQUOTE, + ACTIONS(4857), 1, + aux_sym_path_token1, + STATE(1580), 1, + sym__str_double_quotes, STATE(2904), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [140085] = 7, - ACTIONS(3), 1, + ACTIONS(4855), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140163] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(4902), 1, - anon_sym_SQUOTE, - STATE(2899), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(2945), 1, + anon_sym_DQUOTE, + ACTIONS(4861), 1, + aux_sym_path_token1, + STATE(1834), 1, + sym__str_double_quotes, STATE(2905), 1, sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [140107] = 6, - ACTIONS(143), 1, + ACTIONS(4859), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140183] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2887), 1, + ACTIONS(4863), 1, anon_sym_DQUOTE, - ACTIONS(4906), 1, + ACTIONS(4867), 1, aux_sym_path_token1, - STATE(1834), 1, + STATE(1591), 1, sym__str_double_quotes, STATE(2906), 1, sym_comment, - ACTIONS(4904), 2, + ACTIONS(4865), 2, sym__str_single_quotes, sym__str_back_ticks, - [140127] = 3, - ACTIONS(143), 1, + [140203] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2907), 1, sym_comment, - ACTIONS(4908), 5, + ACTIONS(4869), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [140141] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, - STATE(2908), 1, - sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140157] = 6, - ACTIONS(143), 1, + [140217] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2849), 1, + ACTIONS(2835), 1, anon_sym_DQUOTE, - ACTIONS(4912), 1, + ACTIONS(4873), 1, aux_sym_path_token1, - STATE(141), 1, + STATE(131), 1, sym__str_double_quotes, - STATE(2909), 1, + STATE(2908), 1, sym_comment, - ACTIONS(4910), 2, + ACTIONS(4871), 2, sym__str_single_quotes, sym__str_back_ticks, - [140177] = 3, - ACTIONS(143), 1, + [140237] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4875), 1, + anon_sym_SQUOTE, + STATE(2909), 1, + sym_comment, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [140259] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2910), 1, sym_comment, - ACTIONS(4914), 5, + ACTIONS(4877), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [140191] = 3, - ACTIONS(143), 1, + [140273] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4881), 1, + anon_sym_LF, STATE(2911), 1, sym_comment, - ACTIONS(4916), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [140205] = 6, - ACTIONS(143), 1, + ACTIONS(4879), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [140289] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4918), 1, + ACTIONS(2465), 1, anon_sym_DQUOTE, - ACTIONS(4922), 1, + ACTIONS(4817), 1, aux_sym_path_token1, - STATE(293), 1, + STATE(1753), 1, sym__str_double_quotes, STATE(2912), 1, sym_comment, - ACTIONS(4920), 2, + ACTIONS(4815), 2, sym__str_single_quotes, sym__str_back_ticks, - [140225] = 4, - ACTIONS(3), 1, + [140309] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, + ACTIONS(2993), 1, + anon_sym_DQUOTE, + ACTIONS(4885), 1, + aux_sym_path_token1, + STATE(1735), 1, + sym__str_double_quotes, STATE(2913), 1, sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140241] = 3, - ACTIONS(143), 1, + ACTIONS(4883), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [140329] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2914), 1, sym_comment, - ACTIONS(4924), 5, + ACTIONS(4887), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [140255] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_LF, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(490), 1, - aux_sym__block_body_repeat1, - STATE(553), 1, - sym__terminator, - STATE(2915), 1, - sym_comment, - [140277] = 6, - ACTIONS(143), 1, + [140343] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4928), 1, + ACTIONS(4889), 1, anon_sym_DQUOTE, - ACTIONS(4932), 1, + ACTIONS(4893), 1, aux_sym_path_token1, - STATE(1622), 1, + STATE(1641), 1, sym__str_double_quotes, - STATE(2916), 1, + STATE(2915), 1, sym_comment, - ACTIONS(4930), 2, + ACTIONS(4891), 2, sym__str_single_quotes, sym__str_back_ticks, - [140297] = 3, - ACTIONS(143), 1, + [140363] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2917), 1, + STATE(2916), 1, sym_comment, - ACTIONS(4934), 5, + ACTIONS(4895), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [140311] = 6, - ACTIONS(143), 1, + [140377] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2869), 1, + ACTIONS(4897), 1, anon_sym_DQUOTE, - ACTIONS(4938), 1, + ACTIONS(4901), 1, aux_sym_path_token1, - STATE(1696), 1, + STATE(293), 1, sym__str_double_quotes, - STATE(2918), 1, + STATE(2917), 1, sym_comment, - ACTIONS(4936), 2, + ACTIONS(4899), 2, sym__str_single_quotes, sym__str_back_ticks, - [140331] = 7, + [140397] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, + ACTIONS(4903), 1, + sym__long_flag_identifier, + STATE(2918), 1, + sym_comment, + ACTIONS(1307), 2, anon_sym_SEMI, - ACTIONS(1815), 1, + anon_sym_PIPE, + ACTIONS(1311), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(553), 1, - sym__terminator, - STATE(2874), 1, - aux_sym__block_body_repeat1, - STATE(2919), 1, - sym_comment, - [140353] = 4, + [140415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(4754), 1, anon_sym_LF, - STATE(2920), 1, + STATE(2919), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(4752), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140369] = 3, - ACTIONS(143), 1, + [140431] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2921), 1, + STATE(2920), 1, sym_comment, - ACTIONS(4940), 5, + ACTIONS(4905), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [140383] = 6, - ACTIONS(143), 1, + [140445] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4942), 1, + ACTIONS(2801), 1, anon_sym_DQUOTE, - ACTIONS(4946), 1, + ACTIONS(4909), 1, aux_sym_path_token1, - STATE(1718), 1, + STATE(143), 1, sym__str_double_quotes, - STATE(2922), 1, + STATE(2921), 1, sym_comment, - ACTIONS(4944), 2, + ACTIONS(4907), 2, sym__str_single_quotes, sym__str_back_ticks, - [140403] = 4, + [140465] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2922), 1, + sym_comment, + ACTIONS(4911), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [140479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4379), 1, + ACTIONS(4915), 1, anon_sym_LF, STATE(2923), 1, sym_comment, - ACTIONS(4377), 4, + ACTIONS(4913), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140419] = 6, - ACTIONS(143), 1, + [140495] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2925), 1, + ACTIONS(2975), 1, anon_sym_DQUOTE, - ACTIONS(4950), 1, + ACTIONS(4919), 1, aux_sym_path_token1, - STATE(123), 1, + STATE(1797), 1, sym__str_double_quotes, STATE(2924), 1, sym_comment, - ACTIONS(4948), 2, + ACTIONS(4917), 2, sym__str_single_quotes, sym__str_back_ticks, - [140439] = 3, - ACTIONS(143), 1, + [140515] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4921), 1, + anon_sym_SQUOTE, STATE(2925), 1, sym_comment, - ACTIONS(4952), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [140453] = 7, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [140537] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(4954), 1, + ACTIONS(4923), 1, anon_sym_SQUOTE, + STATE(2925), 1, + aux_sym__inter_single_quotes_repeat1, STATE(2926), 1, sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, - [140475] = 4, - ACTIONS(3), 1, + [140559] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, STATE(2927), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(4925), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [140573] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1745), 1, anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + ACTIONS(4927), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140491] = 6, - ACTIONS(143), 1, + STATE(541), 1, + sym__terminator, + STATE(2928), 1, + sym_comment, + STATE(3016), 1, + aux_sym__block_body_repeat1, + [140595] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4956), 1, + ACTIONS(4929), 1, anon_sym_DQUOTE, - ACTIONS(4960), 1, + ACTIONS(4933), 1, aux_sym_path_token1, - STATE(1590), 1, + STATE(1685), 1, sym__str_double_quotes, - STATE(2928), 1, + STATE(2929), 1, sym_comment, - ACTIONS(4958), 2, + ACTIONS(4931), 2, sym__str_single_quotes, sym__str_back_ticks, - [140511] = 4, + [140615] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, - STATE(2929), 1, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4935), 1, + anon_sym_SQUOTE, + STATE(2930), 1, sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140527] = 4, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [140637] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4937), 1, + anon_sym_SQUOTE, STATE(2930), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(2931), 1, sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140543] = 4, + STATE(3408), 1, + sym_expr_interpolated, + [140659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(4939), 1, + ts_builtin_sym_end, + ACTIONS(4941), 1, + anon_sym_SEMI, + ACTIONS(4944), 1, anon_sym_LF, - STATE(2931), 1, + STATE(3338), 1, + sym__terminator, + STATE(2932), 2, sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140559] = 6, - ACTIONS(143), 1, + aux_sym__block_body_repeat1, + [140679] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2815), 1, + STATE(2933), 1, + sym_comment, + ACTIONS(4947), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [140693] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4546), 1, anon_sym_DQUOTE, - ACTIONS(4964), 1, + ACTIONS(4951), 1, aux_sym_path_token1, - STATE(1793), 1, + STATE(498), 1, sym__str_double_quotes, - STATE(2932), 1, + STATE(2934), 1, sym_comment, - ACTIONS(4962), 2, + ACTIONS(4949), 2, sym__str_single_quotes, sym__str_back_ticks, - [140579] = 7, + [140713] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(4966), 1, + ACTIONS(4953), 1, anon_sym_SQUOTE, - STATE(2926), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(2933), 1, + STATE(2935), 1, sym_comment, - STATE(3380), 1, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, sym_expr_interpolated, - [140601] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_DQUOTE, - ACTIONS(4972), 1, - aux_sym_path_token1, - STATE(1570), 1, - sym__str_double_quotes, - STATE(2934), 1, - sym_comment, - ACTIONS(4970), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [140621] = 4, + [140735] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4452), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4955), 1, + anon_sym_SQUOTE, STATE(2935), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(2936), 1, sym_comment, - ACTIONS(4450), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140637] = 6, - ACTIONS(143), 1, + STATE(3408), 1, + sym_expr_interpolated, + [140757] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3011), 1, - anon_sym_DQUOTE, - ACTIONS(4976), 1, - aux_sym_path_token1, - STATE(1575), 1, - sym__str_double_quotes, - STATE(2936), 1, + STATE(2937), 1, sym_comment, - ACTIONS(4974), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [140657] = 4, + ACTIONS(4957), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [140771] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4980), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(4961), 1, anon_sym_LF, - STATE(2937), 1, + STATE(1491), 1, + aux_sym_pipe_element_repeat1, + STATE(2938), 1, sym_comment, - ACTIONS(4978), 4, + ACTIONS(4959), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140673] = 6, - ACTIONS(143), 1, + [140791] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4982), 1, + ACTIONS(4964), 1, anon_sym_DQUOTE, - ACTIONS(4986), 1, + ACTIONS(4968), 1, aux_sym_path_token1, - STATE(1545), 1, + STATE(1636), 1, sym__str_double_quotes, - STATE(2938), 1, + STATE(2939), 1, sym_comment, - ACTIONS(4984), 2, + ACTIONS(4966), 2, sym__str_single_quotes, sym__str_back_ticks, - [140693] = 4, + [140811] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, - anon_sym_LF, - STATE(2939), 1, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4970), 1, + anon_sym_SQUOTE, + STATE(2940), 1, sym_comment, - ACTIONS(4841), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140709] = 6, - ACTIONS(143), 1, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [140833] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4988), 1, - anon_sym_DQUOTE, - ACTIONS(4992), 1, - aux_sym_path_token1, - STATE(1824), 1, - sym__str_double_quotes, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(4972), 1, + anon_sym_SQUOTE, STATE(2940), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(2941), 1, sym_comment, - ACTIONS(4990), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [140729] = 4, + STATE(3408), 1, + sym_expr_interpolated, + [140855] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2942), 1, + sym_comment, + ACTIONS(4974), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [140869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3917), 1, anon_sym_LF, - STATE(2941), 1, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, + STATE(2943), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(3915), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140745] = 6, - ACTIONS(143), 1, + [140889] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2961), 1, - anon_sym_DQUOTE, - ACTIONS(4996), 1, - aux_sym_path_token1, - STATE(764), 1, - sym__str_double_quotes, - STATE(2942), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + STATE(537), 1, + sym__terminator, + STATE(2944), 1, sym_comment, - ACTIONS(4994), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [140765] = 4, + ACTIONS(1989), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [140909] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(4978), 1, anon_sym_LF, - STATE(2943), 1, + STATE(1488), 1, + aux_sym_pipe_element_repeat1, + STATE(2945), 1, sym_comment, - ACTIONS(2285), 4, + ACTIONS(4976), 2, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140781] = 3, - ACTIONS(143), 1, + [140929] = 3, + ACTIONS(145), 1, anon_sym_POUND, - STATE(2944), 1, + STATE(2946), 1, sym_comment, - ACTIONS(4998), 5, + ACTIONS(4981), 5, sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [140795] = 7, - ACTIONS(143), 1, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [140943] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4808), 1, + ACTIONS(4764), 1, anon_sym_DASH_DASH, - ACTIONS(4812), 1, + ACTIONS(4768), 1, sym_short_flag, - ACTIONS(5000), 1, + ACTIONS(4983), 1, anon_sym_in, - STATE(2945), 1, + STATE(2947), 1, sym_comment, - STATE(3446), 1, - sym__flag, - STATE(3520), 1, + STATE(3490), 1, sym_long_flag, - [140817] = 4, - ACTIONS(3), 1, + STATE(3517), 1, + sym__flag, + [140965] = 7, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_LF, - STATE(2946), 1, + ACTIONS(4195), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + sym_identifier, + STATE(1964), 1, + sym__var, + STATE(2892), 1, + sym_val_variable, + STATE(2948), 1, sym_comment, - ACTIONS(5002), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [140833] = 4, + STATE(3018), 1, + sym__variable_name, + [140987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(2315), 1, anon_sym_LF, - STATE(2947), 1, + STATE(2949), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(2313), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140849] = 6, - ACTIONS(143), 1, + [141003] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5006), 1, + STATE(2950), 1, + sym_comment, + ACTIONS(4985), 5, + sym_identifier, + anon_sym_GT, anon_sym_DQUOTE, - ACTIONS(5010), 1, - aux_sym_path_token1, - STATE(1447), 1, - sym__str_double_quotes, - STATE(2948), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [141017] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2951), 1, sym_comment, - ACTIONS(5008), 2, + ACTIONS(4987), 5, + sym_identifier, + anon_sym_RBRACE, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [140869] = 4, + [141031] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4991), 1, anon_sym_LF, - STATE(2949), 1, + STATE(2952), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4989), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140885] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4538), 1, - aux_sym_unquoted_token1, - ACTIONS(5012), 1, - anon_sym_DOLLAR, - STATE(492), 1, - sym__var, - STATE(528), 1, - sym_unquoted, - STATE(529), 1, - sym_val_variable, - STATE(2950), 1, - sym_comment, - [140907] = 4, + [141047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4995), 1, anon_sym_LF, - STATE(2951), 1, + STATE(2953), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4993), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [140923] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_else, - STATE(2952), 1, - sym_comment, - ACTIONS(4646), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4648), 2, - ts_builtin_sym_end, - anon_sym_LF, - [140941] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2953), 1, - sym_comment, - ACTIONS(1939), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - sym_short_flag, - [140955] = 6, - ACTIONS(143), 1, + [141063] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2570), 1, + ACTIONS(245), 1, anon_sym_DQUOTE, - ACTIONS(4867), 1, + ACTIONS(4999), 1, aux_sym_path_token1, - STATE(1659), 1, + STATE(1842), 1, sym__str_double_quotes, STATE(2954), 1, sym_comment, - ACTIONS(4865), 2, + ACTIONS(4997), 2, sym__str_single_quotes, sym__str_back_ticks, - [140975] = 4, - ACTIONS(3), 1, + [141083] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_LF, STATE(2955), 1, sym_comment, - ACTIONS(5002), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(5001), 5, + sym_identifier, anon_sym_RBRACE, - [140991] = 4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [141097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5005), 1, anon_sym_LF, STATE(2956), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(5003), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141007] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2957), 1, - sym_comment, - ACTIONS(1943), 5, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_DASH_DASH, - anon_sym_in, - sym_short_flag, - [141021] = 4, + [141113] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5009), 1, anon_sym_LF, - STATE(2958), 1, + STATE(2957), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(5007), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141037] = 4, + [141129] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(2959), 1, + STATE(2958), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141053] = 4, + [141145] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5011), 1, + anon_sym_SQUOTE, + STATE(2959), 1, + sym_comment, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [141167] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5013), 1, + anon_sym_SQUOTE, + STATE(2959), 1, + aux_sym__inter_single_quotes_repeat1, STATE(2960), 1, sym_comment, - ACTIONS(5002), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141069] = 4, + STATE(3408), 1, + sym_expr_interpolated, + [141189] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2961), 1, + sym_comment, + ACTIONS(5015), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [141203] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(2319), 1, anon_sym_LF, - STATE(2961), 1, + STATE(2962), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(2317), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141085] = 7, - ACTIONS(143), 1, + [141219] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_DOLLAR, - ACTIONS(4383), 1, + ACTIONS(5017), 1, sym_identifier, - STATE(1953), 1, - sym__var, - STATE(2953), 1, - sym_val_variable, - STATE(2962), 1, + STATE(2963), 1, sym_comment, - STATE(3025), 1, - sym__variable_name, - [141107] = 4, + ACTIONS(5019), 4, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [141235] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2964), 1, + sym_comment, + ACTIONS(5021), 5, + sym_identifier, + anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [141249] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4843), 1, + ACTIONS(5023), 1, + anon_sym_catch, + STATE(2965), 1, + sym_comment, + ACTIONS(4686), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4688), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(2963), 1, + [141267] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2323), 1, + anon_sym_LF, + STATE(2966), 1, sym_comment, - ACTIONS(4841), 4, + ACTIONS(2321), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141123] = 4, + [141283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(2964), 1, + STATE(2967), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141139] = 6, - ACTIONS(143), 1, + [141299] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2363), 1, + ACTIONS(5025), 1, anon_sym_DQUOTE, - ACTIONS(5018), 1, + ACTIONS(5029), 1, aux_sym_path_token1, - STATE(1795), 1, + STATE(1384), 1, sym__str_double_quotes, - STATE(2965), 1, + STATE(2968), 1, sym_comment, - ACTIONS(5016), 2, + ACTIONS(5027), 2, sym__str_single_quotes, sym__str_back_ticks, - [141159] = 4, + [141319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(2966), 1, + STATE(2969), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141175] = 4, + [141335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(2967), 1, + STATE(2970), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141191] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5020), 1, - anon_sym_SQUOTE, - STATE(2968), 1, - sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [141213] = 4, + [141351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(2969), 1, + STATE(2971), 1, sym_comment, - ACTIONS(5022), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141229] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(2970), 1, - sym_comment, - ACTIONS(5026), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [141243] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4568), 1, - anon_sym_DOT, - STATE(810), 1, - sym_cell_path, - STATE(2762), 1, - sym_path, - STATE(2971), 1, - sym_comment, - ACTIONS(726), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141263] = 6, - ACTIONS(143), 1, + [141367] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4568), 1, - anon_sym_DOT, - STATE(767), 1, - sym_cell_path, - STATE(2762), 1, - sym_path, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5031), 1, + anon_sym_SQUOTE, STATE(2972), 1, sym_comment, - ACTIONS(738), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [141283] = 3, - ACTIONS(143), 1, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [141389] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5033), 1, + anon_sym_SQUOTE, + STATE(2972), 1, + aux_sym__inter_single_quotes_repeat1, STATE(2973), 1, sym_comment, - ACTIONS(5028), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [141297] = 3, - ACTIONS(143), 1, + STATE(3408), 1, + sym_expr_interpolated, + [141411] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2974), 1, sym_comment, - ACTIONS(5030), 5, + ACTIONS(5035), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [141311] = 4, + [141425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(2337), 1, anon_sym_LF, STATE(2975), 1, sym_comment, - ACTIONS(4742), 4, + ACTIONS(2335), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141327] = 4, + [141441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(2976), 1, sym_comment, - ACTIONS(4742), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141343] = 4, + [141457] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5041), 1, + anon_sym_SQUOTE, STATE(2977), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141359] = 4, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [141479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(4758), 1, anon_sym_LF, STATE(2978), 1, sym_comment, - ACTIONS(4742), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141375] = 7, - ACTIONS(3), 1, + [141495] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5032), 1, - anon_sym_SQUOTE, + ACTIONS(5043), 1, + anon_sym_DQUOTE, + ACTIONS(5047), 1, + aux_sym_path_token1, + STATE(313), 1, + sym__str_double_quotes, STATE(2979), 1, sym_comment, - STATE(2988), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [141397] = 4, + ACTIONS(5045), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141515] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(4754), 1, anon_sym_LF, STATE(2980), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, - STATE(2981), 1, - sym_comment, - ACTIONS(4742), 4, + ACTIONS(4752), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141429] = 7, + [141531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(5034), 1, + ACTIONS(5049), 1, anon_sym_SQUOTE, - STATE(2968), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(2982), 1, + STATE(2981), 1, sym_comment, - STATE(3380), 1, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, sym_expr_interpolated, - [141451] = 4, + [141553] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, + ACTIONS(4795), 1, + anon_sym_SEMI, + ACTIONS(4797), 1, anon_sym_LF, + ACTIONS(5051), 1, + ts_builtin_sym_end, + STATE(2932), 1, + aux_sym__block_body_repeat1, + STATE(2982), 1, + sym_comment, + STATE(3338), 1, + sym__terminator, + [141575] = 3, + ACTIONS(145), 1, + anon_sym_POUND, STATE(2983), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141467] = 4, + ACTIONS(5053), 5, + sym_cmd_identifier, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [141589] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5055), 1, + anon_sym_SQUOTE, + STATE(2981), 1, + aux_sym__inter_single_quotes_repeat1, STATE(2984), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141483] = 4, - ACTIONS(3), 1, + STATE(3408), 1, + sym_expr_interpolated, + [141611] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, STATE(2985), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141499] = 4, - ACTIONS(3), 1, + ACTIONS(5057), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [141625] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(5059), 1, + anon_sym_DQUOTE, + ACTIONS(5063), 1, + aux_sym_path_token1, + STATE(1544), 1, + sym__str_double_quotes, STATE(2986), 1, sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141515] = 3, - ACTIONS(143), 1, + ACTIONS(5061), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141645] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4795), 1, + anon_sym_SEMI, + ACTIONS(4797), 1, + anon_sym_LF, + ACTIONS(5051), 1, + ts_builtin_sym_end, STATE(2987), 1, sym_comment, - ACTIONS(5036), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [141529] = 7, + STATE(3003), 1, + aux_sym__block_body_repeat1, + STATE(3338), 1, + sym__terminator, + [141667] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4542), 1, + anon_sym_DQUOTE, + ACTIONS(5067), 1, + aux_sym_path_token1, + STATE(519), 1, + sym__str_double_quotes, + STATE(2988), 1, + sym_comment, + ACTIONS(5065), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141687] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(5038), 1, + ACTIONS(5069), 1, anon_sym_SQUOTE, - STATE(2988), 1, + STATE(2989), 1, sym_comment, STATE(3060), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, - [141551] = 4, + [141709] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4744), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5071), 1, + anon_sym_SQUOTE, STATE(2989), 1, - sym_comment, - ACTIONS(4742), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141567] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_DQUOTE, - ACTIONS(5044), 1, - aux_sym_path_token1, - STATE(1391), 1, - sym__str_double_quotes, + aux_sym__inter_single_quotes_repeat1, STATE(2990), 1, sym_comment, - ACTIONS(5042), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [141587] = 7, - ACTIONS(3), 1, + STATE(3408), 1, + sym_expr_interpolated, + [141731] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3724), 1, - anon_sym_SEMI, - ACTIONS(3726), 1, - anon_sym_LF, - ACTIONS(3821), 1, - ts_builtin_sym_end, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, STATE(2991), 1, sym_comment, - [141609] = 7, - ACTIONS(3), 1, + ACTIONS(5073), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [141745] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(4611), 1, - anon_sym_SEMI, - ACTIONS(4613), 1, - anon_sym_LF, - ACTIONS(5046), 1, - ts_builtin_sym_end, - STATE(1444), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(4605), 1, + anon_sym_DOT, + STATE(793), 1, + sym_cell_path, + STATE(2770), 1, + sym_path, STATE(2992), 1, sym_comment, - [141631] = 7, - ACTIONS(3), 1, + ACTIONS(746), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141765] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4754), 1, - anon_sym_SEMI, - ACTIONS(4756), 1, - anon_sym_LF, - ACTIONS(5048), 1, - ts_builtin_sym_end, - STATE(2845), 1, - aux_sym__block_body_repeat1, + ACTIONS(4605), 1, + anon_sym_DOT, + STATE(799), 1, + sym_cell_path, + STATE(2770), 1, + sym_path, STATE(2993), 1, sym_comment, - STATE(3328), 1, - sym__terminator, - [141653] = 3, - ACTIONS(143), 1, + ACTIONS(738), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [141785] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2994), 1, sym_comment, - ACTIONS(5050), 5, + ACTIONS(1449), 5, sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [141667] = 3, - ACTIONS(143), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym_short_flag, + [141799] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(2995), 1, sym_comment, - ACTIONS(5052), 5, + ACTIONS(5075), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [141813] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(2996), 1, + sym_comment, + ACTIONS(5077), 5, sym_identifier, anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [141681] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5054), 1, - anon_sym_SQUOTE, - STATE(2848), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(2996), 1, - sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [141703] = 4, + [141827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(2997), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141719] = 4, + [141843] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(2998), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141735] = 4, + [141859] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(2999), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141751] = 4, + [141875] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5079), 1, + anon_sym_SQUOTE, STATE(3000), 1, sym_comment, - ACTIONS(5056), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141767] = 4, - ACTIONS(3), 1, + STATE(3009), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [141897] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LF, STATE(3001), 1, sym_comment, - ACTIONS(5056), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141783] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOLLAR, - ACTIONS(5060), 1, + ACTIONS(5081), 5, sym_identifier, - STATE(492), 1, - sym__var, - STATE(632), 1, - sym__variable_name, - STATE(671), 1, - sym_val_variable, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [141911] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5083), 1, + anon_sym_DQUOTE, + ACTIONS(5087), 1, + aux_sym_path_token1, + STATE(1767), 1, + sym__str_double_quotes, STATE(3002), 1, sym_comment, - [141805] = 4, + ACTIONS(5085), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [141931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(4795), 1, + anon_sym_SEMI, + ACTIONS(4797), 1, anon_sym_LF, + ACTIONS(5089), 1, + ts_builtin_sym_end, + STATE(2932), 1, + aux_sym__block_body_repeat1, STATE(3003), 1, sym_comment, - ACTIONS(5062), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141821] = 7, + STATE(3338), 1, + sym__terminator, + [141953] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4538), 1, - aux_sym_unquoted_token1, - ACTIONS(5012), 1, - anon_sym_DOLLAR, - STATE(492), 1, - sym__var, - STATE(644), 1, - sym_unquoted, - STATE(649), 1, - sym_val_variable, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5091), 1, + anon_sym_SQUOTE, STATE(3004), 1, sym_comment, - [141843] = 4, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [141975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4758), 1, anon_sym_LF, STATE(3005), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141859] = 4, - ACTIONS(3), 1, + [141991] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5068), 1, - anon_sym_LF, + ACTIONS(4605), 1, + anon_sym_DOT, + STATE(757), 1, + sym_cell_path, + STATE(2770), 1, + sym_path, STATE(3006), 1, sym_comment, - ACTIONS(5066), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141875] = 4, + ACTIONS(709), 2, + anon_sym_EQ, + anon_sym_COLON, + [142011] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5072), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5093), 1, + anon_sym_SQUOTE, + STATE(3004), 1, + aux_sym__inter_single_quotes_repeat1, STATE(3007), 1, sym_comment, - ACTIONS(5070), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [141891] = 3, - ACTIONS(143), 1, + STATE(3408), 1, + sym_expr_interpolated, + [142033] = 3, + ACTIONS(145), 1, anon_sym_POUND, STATE(3008), 1, sym_comment, - ACTIONS(5074), 5, + ACTIONS(5095), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [141905] = 7, + [142047] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4754), 1, - anon_sym_SEMI, - ACTIONS(4756), 1, - anon_sym_LF, - ACTIONS(5076), 1, - ts_builtin_sym_end, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5097), 1, + anon_sym_SQUOTE, STATE(3009), 1, sym_comment, - STATE(3055), 1, - aux_sym__block_body_repeat1, - STATE(3328), 1, - sym__terminator, - [141927] = 4, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [142069] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5080), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, anon_sym_LF, + STATE(615), 1, + sym__terminator, STATE(3010), 1, sym_comment, - ACTIONS(5078), 4, - anon_sym_SEMI, + ACTIONS(5099), 2, anon_sym_RPAREN, - anon_sym_PIPE, anon_sym_RBRACE, - [141943] = 4, + [142089] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5101), 1, + anon_sym_DQUOTE, + ACTIONS(5105), 1, + aux_sym_path_token1, + STATE(1393), 1, + sym__str_double_quotes, + STATE(3011), 1, + sym_comment, + ACTIONS(5103), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [142109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(3011), 1, + STATE(3012), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141959] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5082), 1, - anon_sym_DQUOTE, - ACTIONS(5086), 1, - aux_sym_path_token1, - STATE(1502), 1, - sym__str_double_quotes, - STATE(3012), 1, - sym_comment, - ACTIONS(5084), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [141979] = 4, + [142125] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4758), 1, anon_sym_LF, STATE(3013), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [141995] = 4, + [142141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(3014), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142011] = 3, - ACTIONS(143), 1, + [142157] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5109), 1, + anon_sym_LF, + ACTIONS(5112), 1, + anon_sym_catch, STATE(3015), 1, sym_comment, - ACTIONS(4847), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [142025] = 4, + ACTIONS(5107), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [142175] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, anon_sym_LF, + ACTIONS(5114), 1, + anon_sym_RPAREN, + STATE(481), 1, + aux_sym__block_body_repeat1, + STATE(541), 1, + sym__terminator, STATE(3016), 1, sym_comment, - ACTIONS(5056), 4, + [142197] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1745), 1, anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + ACTIONS(5114), 1, anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142041] = 4, + STATE(541), 1, + sym__terminator, + STATE(2900), 1, + aux_sym__block_body_repeat1, + STATE(3017), 1, + sym_comment, + [142219] = 7, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(4764), 1, + anon_sym_DASH_DASH, + ACTIONS(4768), 1, + sym_short_flag, + ACTIONS(5116), 1, + anon_sym_in, + STATE(3018), 1, + sym_comment, + STATE(3490), 1, + sym_long_flag, + STATE(3545), 1, + sym__flag, + [142241] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(3017), 1, + STATE(3019), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142057] = 4, + [142257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(3018), 1, + STATE(3020), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142073] = 4, + [142273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LF, - STATE(3019), 1, + ACTIONS(5118), 1, + anon_sym_else, + STATE(3021), 1, sym_comment, - ACTIONS(5056), 4, + ACTIONS(4656), 2, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_PIPE, - anon_sym_RBRACE, - [142089] = 7, + ACTIONS(4658), 2, + ts_builtin_sym_end, + anon_sym_LF, + [142291] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2465), 1, + anon_sym_DQUOTE, + ACTIONS(5122), 1, + aux_sym_path_token1, + STATE(1829), 1, + sym__str_double_quotes, + STATE(3022), 1, + sym_comment, + ACTIONS(5120), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [142311] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(5088), 1, + ACTIONS(5124), 1, anon_sym_SQUOTE, - STATE(3020), 1, + STATE(3023), 1, sym_comment, - STATE(3029), 1, + STATE(3060), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, - [142111] = 4, + [142333] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5092), 1, + ACTIONS(4758), 1, anon_sym_LF, - STATE(3021), 1, + STATE(3024), 1, sym_comment, - ACTIONS(5090), 4, + ACTIONS(4756), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142127] = 4, + [142349] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5096), 1, + ACTIONS(5039), 1, anon_sym_LF, - STATE(3022), 1, + STATE(3025), 1, sym_comment, - ACTIONS(5094), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142143] = 4, + [142365] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5100), 1, + ACTIONS(5039), 1, anon_sym_LF, - STATE(3023), 1, + STATE(3026), 1, sym_comment, - ACTIONS(5098), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142159] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5102), 1, - anon_sym_SQUOTE, - STATE(3024), 1, - sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [142181] = 7, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DASH_DASH, - ACTIONS(4812), 1, - sym_short_flag, - ACTIONS(5104), 1, - anon_sym_in, - STATE(3025), 1, - sym_comment, - STATE(3520), 1, - sym_long_flag, - STATE(3590), 1, - sym__flag, - [142203] = 4, + [142381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, - STATE(3026), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142219] = 4, + [142397] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, - STATE(3027), 1, + STATE(3028), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142235] = 4, + [142413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, - STATE(3028), 1, + STATE(3029), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142251] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5110), 1, - anon_sym_SQUOTE, - STATE(3029), 1, - sym_comment, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, - sym_expr_interpolated, - [142273] = 4, + [142429] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3030), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142289] = 6, - ACTIONS(93), 1, - anon_sym_DQUOTE, - ACTIONS(143), 1, + [142445] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5114), 1, - aux_sym_path_token1, - STATE(2127), 1, - sym__str_double_quotes, + ACTIONS(5039), 1, + anon_sym_LF, STATE(3031), 1, sym_comment, - ACTIONS(5112), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [142309] = 4, + ACTIONS(5037), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [142461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3032), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142325] = 4, + [142477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3033), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142341] = 4, + [142493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3034), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142357] = 4, + [142509] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3035), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142373] = 6, - ACTIONS(3), 1, + [142525] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_LF, - STATE(611), 1, - sym__terminator, STATE(3036), 1, sym_comment, - ACTIONS(5116), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [142393] = 4, + ACTIONS(5019), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [142539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(3037), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142409] = 6, - ACTIONS(143), 1, + [142555] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4568), 1, - anon_sym_DOT, - STATE(759), 1, - sym_cell_path, - STATE(2762), 1, - sym_path, + ACTIONS(5132), 1, + anon_sym_LF, STATE(3038), 1, sym_comment, - ACTIONS(708), 2, - anon_sym_EQ, - anon_sym_COLON, - [142429] = 3, - ACTIONS(143), 1, + ACTIONS(5130), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [142571] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5134), 1, + anon_sym_SQUOTE, + STATE(3023), 1, + aux_sym__inter_single_quotes_repeat1, STATE(3039), 1, sym_comment, - ACTIONS(1392), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [142443] = 4, - ACTIONS(3), 1, + STATE(3408), 1, + sym_expr_interpolated, + [142593] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_LF, STATE(3040), 1, sym_comment, - ACTIONS(5056), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142459] = 4, + ACTIONS(5136), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [142607] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5138), 1, + anon_sym_SQUOTE, STATE(3041), 1, sym_comment, - ACTIONS(3932), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142475] = 4, + STATE(3050), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [142629] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(3042), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142491] = 4, + [142645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5120), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3043), 1, sym_comment, - ACTIONS(5118), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142507] = 4, + [142661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5039), 1, anon_sym_LF, STATE(3044), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5037), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142523] = 4, + [142677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(3045), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142539] = 4, + [142693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(4813), 1, anon_sym_LF, STATE(3046), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142555] = 5, + [142709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5122), 1, - sym__long_flag_identifier, + ACTIONS(4813), 1, + anon_sym_LF, STATE(3047), 1, sym_comment, - ACTIONS(1299), 2, + ACTIONS(4811), 4, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(1303), 2, - ts_builtin_sym_end, - anon_sym_LF, - [142573] = 6, + anon_sym_RBRACE, + [142725] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(4813), 1, anon_sym_LF, - STATE(552), 1, - sym__terminator, STATE(3048), 1, sym_comment, - ACTIONS(1973), 2, + ACTIONS(4811), 4, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [142593] = 3, - ACTIONS(143), 1, + [142741] = 6, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(5140), 1, + anon_sym_DQUOTE, + ACTIONS(5144), 1, + aux_sym_path_token1, + STATE(1505), 1, + sym__str_double_quotes, STATE(3049), 1, sym_comment, - ACTIONS(1404), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym_short_flag, - [142607] = 4, + ACTIONS(5142), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [142761] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5146), 1, + anon_sym_SQUOTE, STATE(3050), 1, sym_comment, - ACTIONS(5062), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142623] = 4, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [142783] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_LF, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5148), 1, + anon_sym_SQUOTE, STATE(3051), 1, sym_comment, - ACTIONS(5062), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142639] = 3, - ACTIONS(143), 1, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3408), 1, + sym_expr_interpolated, + [142805] = 6, + ACTIONS(93), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(5152), 1, + aux_sym_path_token1, + STATE(1983), 1, + sym__str_double_quotes, STATE(3052), 1, sym_comment, - ACTIONS(5124), 5, + ACTIONS(5150), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [142825] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5154), 1, + anon_sym_SQUOTE, + STATE(3051), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(3053), 1, + sym_comment, + STATE(3408), 1, + sym_expr_interpolated, + [142847] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + STATE(3054), 1, + sym_comment, + ACTIONS(5156), 5, sym_identifier, anon_sym_nothing, anon_sym_in, anon_sym_nu, anon_sym_env, - [142653] = 4, + [142861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(4813), 1, anon_sym_LF, - STATE(3053), 1, + STATE(3055), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142669] = 4, + [142877] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(4813), 1, anon_sym_LF, - STATE(3054), 1, + STATE(3056), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(4811), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142685] = 6, + [142893] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5126), 1, - ts_builtin_sym_end, ACTIONS(5128), 1, - anon_sym_SEMI, - ACTIONS(5131), 1, - anon_sym_LF, - STATE(3328), 1, - sym__terminator, - STATE(3055), 2, - sym_comment, - aux_sym__block_body_repeat1, - [142705] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5064), 1, anon_sym_LF, - STATE(3056), 1, + STATE(3057), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142721] = 7, + [142909] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4748), 1, + ACTIONS(4789), 1, sym_unescaped_interpolated_content, - ACTIONS(5134), 1, + ACTIONS(5158), 1, anon_sym_SQUOTE, - STATE(3057), 1, + STATE(3058), 1, sym_comment, - STATE(3064), 1, + STATE(3076), 1, aux_sym__inter_single_quotes_repeat1, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, - [142743] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_LF, - STATE(3058), 1, - sym_comment, - ACTIONS(5062), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142759] = 4, - ACTIONS(3), 1, + [142931] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5064), 1, - anon_sym_LF, + ACTIONS(2618), 1, + anon_sym_DQUOTE, + ACTIONS(5162), 1, + aux_sym_path_token1, + STATE(731), 1, + sym__str_double_quotes, STATE(3059), 1, sym_comment, - ACTIONS(5062), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACE, - [142775] = 6, + ACTIONS(5160), 2, + sym__str_single_quotes, + sym__str_back_ticks, + [142951] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5136), 1, + ACTIONS(5164), 1, anon_sym_LPAREN, - ACTIONS(5139), 1, + ACTIONS(5167), 1, sym_unescaped_interpolated_content, - ACTIONS(5142), 1, + ACTIONS(5170), 1, anon_sym_SQUOTE, - STATE(3380), 1, + STATE(3408), 1, sym_expr_interpolated, STATE(3060), 2, sym_comment, aux_sym__inter_single_quotes_repeat1, - [142795] = 7, - ACTIONS(143), 1, + [142971] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_DASH_DASH, - ACTIONS(4812), 1, - sym_short_flag, - ACTIONS(5144), 1, - anon_sym_in, + ACTIONS(5174), 1, + anon_sym_LF, STATE(3061), 1, sym_comment, - STATE(3520), 1, - sym_long_flag, - STATE(3588), 1, - sym__flag, - [142817] = 4, + ACTIONS(5172), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [142987] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(5178), 1, anon_sym_LF, STATE(3062), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(5176), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142833] = 4, + [143003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(5182), 1, anon_sym_LF, STATE(3063), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(5180), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142849] = 7, + [143019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5146), 1, - anon_sym_SQUOTE, - STATE(3060), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(5128), 1, + anon_sym_LF, STATE(3064), 1, sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [142871] = 4, + ACTIONS(5126), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [143035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3065), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142887] = 6, - ACTIONS(143), 1, + [143051] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - ACTIONS(5150), 1, - aux_sym_path_token1, - STATE(741), 1, - sym__str_double_quotes, + ACTIONS(5128), 1, + anon_sym_LF, STATE(3066), 1, sym_comment, - ACTIONS(5148), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [142907] = 7, + ACTIONS(5126), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [143067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4746), 1, - anon_sym_LPAREN, - ACTIONS(4748), 1, - sym_unescaped_interpolated_content, - ACTIONS(5152), 1, - anon_sym_SQUOTE, - STATE(3024), 1, - aux_sym__inter_single_quotes_repeat1, + ACTIONS(5128), 1, + anon_sym_LF, STATE(3067), 1, sym_comment, - STATE(3380), 1, - sym_expr_interpolated, - [142929] = 4, + ACTIONS(5126), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [143083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5108), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3068), 1, sym_comment, - ACTIONS(5106), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142945] = 3, - ACTIONS(143), 1, + [143099] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5128), 1, + anon_sym_LF, STATE(3069), 1, sym_comment, - ACTIONS(5154), 5, - sym_identifier, - anon_sym_nothing, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [142959] = 4, + ACTIONS(5126), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [143115] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5158), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3070), 1, sym_comment, - ACTIONS(5156), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142975] = 4, + [143131] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5162), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3071), 1, sym_comment, - ACTIONS(5160), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [142991] = 4, + [143147] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5064), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3072), 1, sym_comment, - ACTIONS(5062), 4, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_RBRACE, - [143007] = 5, - ACTIONS(3), 1, + [143163] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_DQUOTE, STATE(3073), 1, sym_comment, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143024] = 5, + ACTIONS(5184), 5, + sym_identifier, + anon_sym_nothing, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [143177] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_DQUOTE, + ACTIONS(5128), 1, + anon_sym_LF, STATE(3074), 1, sym_comment, - STATE(3316), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143041] = 4, + ACTIONS(5126), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_RBRACE, + [143193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5172), 1, + ACTIONS(5128), 1, anon_sym_LF, STATE(3075), 1, sym_comment, - ACTIONS(5170), 3, + ACTIONS(5126), 4, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_RBRACE, - [143056] = 6, - ACTIONS(143), 1, + [143209] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5176), 1, - anon_sym_RBRACK, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_unescaped_interpolated_content, + ACTIONS(5186), 1, + anon_sym_SQUOTE, + STATE(3060), 1, + aux_sym__inter_single_quotes_repeat1, STATE(3076), 1, sym_comment, - STATE(3080), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [143075] = 4, + STATE(3408), 1, + sym_expr_interpolated, + [143231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5180), 1, - anon_sym_LF, + ACTIONS(5188), 1, + anon_sym_DQUOTE, STATE(3077), 1, sym_comment, - ACTIONS(5178), 3, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143090] = 4, + STATE(3243), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [143248] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5184), 1, - anon_sym_LF, STATE(3078), 1, sym_comment, - ACTIONS(5182), 3, + ACTIONS(4811), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143105] = 4, + anon_sym_PIPE, + ACTIONS(4813), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5188), 1, + ACTIONS(5194), 1, anon_sym_LF, STATE(3079), 1, sym_comment, - ACTIONS(5186), 3, + ACTIONS(5192), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [143120] = 6, - ACTIONS(143), 1, + [143278] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5190), 1, - anon_sym_RBRACK, STATE(3080), 1, sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [143139] = 5, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5192), 1, - anon_sym_DQUOTE, STATE(3081), 1, sym_comment, - STATE(3084), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143156] = 4, + ACTIONS(5037), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143308] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2059), 1, - anon_sym_LF, STATE(3082), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(4807), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143171] = 4, + anon_sym_PIPE, + ACTIONS(4809), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LPAREN, STATE(3083), 1, sym_comment, - ACTIONS(5196), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [143186] = 5, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143338] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5198), 1, - anon_sym_DQUOTE, STATE(3084), 1, sym_comment, - STATE(3092), 1, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143353] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3085), 1, + sym_comment, + ACTIONS(4429), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4431), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143368] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5196), 1, + anon_sym_DQUOTE, + STATE(3086), 1, + sym_comment, + STATE(3091), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [143203] = 6, + [143385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, + STATE(3087), 1, + sym_comment, + ACTIONS(4760), 2, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3982), 1, + ACTIONS(4762), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4814), 1, + [143400] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3088), 1, + sym_comment, + ACTIONS(5037), 2, anon_sym_SEMI, - STATE(1476), 1, - aux_sym_pipe_element_repeat1, - STATE(3085), 1, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3089), 1, sym_comment, - [143222] = 6, - ACTIONS(143), 1, + ACTIONS(4760), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4762), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143430] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3090), 1, + sym_comment, + ACTIONS(5037), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143445] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5198), 1, + anon_sym_DQUOTE, + STATE(3091), 1, + sym_comment, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [143462] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, ACTIONS(5200), 1, + anon_sym_LBRACE, + STATE(3092), 1, + sym_comment, + STATE(3280), 1, + sym__blosure, + STATE(1818), 2, + sym_block, + sym_val_closure, + [143479] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5204), 1, anon_sym_RBRACK, - STATE(3086), 1, + STATE(3093), 1, sym_comment, - STATE(3090), 1, + STATE(3097), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [143241] = 6, + [143498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3887), 1, + STATE(3094), 1, + sym_comment, + ACTIONS(5037), 2, anon_sym_SEMI, - ACTIONS(3982), 1, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(1472), 1, - aux_sym_pipe_element_repeat1, - STATE(3087), 1, - sym_comment, - [143260] = 6, + [143513] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, + STATE(3095), 1, + sym_comment, + ACTIONS(5037), 2, + anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3982), 1, + ACTIONS(5039), 2, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4881), 1, - anon_sym_SEMI, - STATE(1466), 1, - aux_sym_pipe_element_repeat1, - STATE(3088), 1, - sym_comment, - [143279] = 4, + [143528] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5204), 1, - anon_sym_LF, - STATE(3089), 1, + STATE(3096), 1, sym_comment, - ACTIONS(5202), 3, + ACTIONS(5037), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143294] = 6, - ACTIONS(143), 1, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143543] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, ACTIONS(5206), 1, anon_sym_RBRACK, - STATE(3090), 1, + STATE(3097), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [143313] = 4, + [143562] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5210), 1, - anon_sym_LF, - STATE(3091), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5208), 3, + ACTIONS(5037), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143328] = 4, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5212), 1, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(5214), 2, + ACTIONS(5210), 2, sym__escaped_str_content, sym_escape_sequence, - STATE(3092), 2, + STATE(3099), 2, sym_comment, aux_sym__str_double_quotes_repeat1, - [143343] = 5, + [143592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5217), 1, - anon_sym_DQUOTE, - STATE(3093), 1, + STATE(3100), 1, sym_comment, - STATE(3098), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143360] = 4, + ACTIONS(5037), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143607] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5221), 1, - anon_sym_LF, - STATE(3094), 1, + STATE(3101), 1, sym_comment, - ACTIONS(5219), 3, + ACTIONS(5037), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143375] = 4, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2057), 1, + STATE(3102), 1, + sym_comment, + ACTIONS(5037), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3095), 1, + [143637] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3103), 1, sym_comment, - ACTIONS(1871), 3, + ACTIONS(5176), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143390] = 5, + anon_sym_PIPE, + ACTIONS(5178), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5223), 1, - anon_sym_DQUOTE, - STATE(3096), 1, + STATE(3104), 1, sym_comment, - STATE(3122), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143407] = 4, + ACTIONS(5172), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5174), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5227), 1, + STATE(3105), 1, + sym_comment, + ACTIONS(4437), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4439), 2, + ts_builtin_sym_end, anon_sym_LF, - STATE(3097), 1, + [143682] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3106), 1, sym_comment, - ACTIONS(5225), 3, + ACTIONS(5037), 2, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [143422] = 5, + anon_sym_PIPE, + ACTIONS(5039), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143697] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5213), 1, + anon_sym_LBRACE, + STATE(3107), 1, + sym_comment, + STATE(3317), 1, + sym__blosure, + STATE(1925), 2, + sym_block, + sym_val_closure, + [143714] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5229), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3098), 1, + STATE(3108), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143439] = 4, + ACTIONS(4756), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4758), 2, + ts_builtin_sym_end, + anon_sym_LF, + [143729] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5215), 1, + anon_sym_use, + ACTIONS(5217), 1, + anon_sym_list, + ACTIONS(5219), 1, + anon_sym_hide, + ACTIONS(5221), 1, + anon_sym_new, + STATE(3109), 1, + sym_comment, + [143748] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3110), 1, sym_comment, - ACTIONS(4978), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4980), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143454] = 4, + [143763] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3100), 1, + STATE(3111), 1, sym_comment, - ACTIONS(5066), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5068), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143469] = 5, + [143778] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5231), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - STATE(3101), 1, + STATE(3112), 1, sym_comment, - STATE(3207), 1, + STATE(3119), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [143486] = 6, - ACTIONS(143), 1, + [143795] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5233), 1, + ACTIONS(5225), 1, anon_sym_RBRACK, - STATE(3102), 1, + STATE(3113), 1, sym_comment, - STATE(3106), 1, + STATE(3321), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [143505] = 4, + [143814] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3103), 1, + STATE(3114), 1, sym_comment, - ACTIONS(5070), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5072), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143520] = 4, + [143829] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3104), 1, + STATE(3115), 1, sym_comment, - ACTIONS(4450), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4452), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143535] = 4, + [143844] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3105), 1, + STATE(3116), 1, sym_comment, - ACTIONS(4377), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4379), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143550] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5235), 1, - anon_sym_RBRACK, - STATE(3106), 1, - sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [143569] = 4, + [143859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3117), 1, sym_comment, - ACTIONS(4371), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4373), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143584] = 4, + [143874] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5227), 1, + anon_sym_if, + STATE(3118), 1, + sym_comment, + STATE(3314), 1, + sym_block, + STATE(3332), 1, + sym_ctrl_if_parenthesized, + [143893] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3108), 1, + ACTIONS(5229), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3119), 1, + sym_comment, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [143910] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5231), 1, + anon_sym_DQUOTE, + STATE(3120), 1, + sym_comment, + STATE(3273), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [143927] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3121), 1, sym_comment, - ACTIONS(3373), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(3375), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143599] = 6, - ACTIONS(143), 1, + [143942] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2041), 1, + anon_sym_LF, + STATE(3122), 1, + sym_comment, + ACTIONS(1757), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [143957] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5233), 1, + anon_sym_RBRACK, + STATE(3123), 1, + sym_comment, + STATE(3127), 1, + aux_sym_val_table_repeat1, + STATE(3417), 1, + sym_val_list, + [143976] = 4, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5237), 1, - anon_sym_use, + anon_sym_LF, + STATE(3124), 1, + sym_comment, + ACTIONS(5235), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [143991] = 6, + ACTIONS(145), 1, + anon_sym_POUND, ACTIONS(5239), 1, - anon_sym_list, + anon_sym_use, ACTIONS(5241), 1, - anon_sym_hide, + anon_sym_list, ACTIONS(5243), 1, + anon_sym_hide, + ACTIONS(5245), 1, anon_sym_new, - STATE(3109), 1, + STATE(3125), 1, sym_comment, - [143618] = 4, + [144010] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3110), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2319), 2, + ACTIONS(5130), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2321), 2, + ACTIONS(5132), 2, ts_builtin_sym_end, anon_sym_LF, - [143633] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(643), 1, - sym_block, - STATE(3111), 1, - sym_comment, - STATE(3401), 1, - sym_returns, - [143652] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(645), 1, - sym_block, - STATE(3112), 1, - sym_comment, - STATE(3424), 1, - sym_returns, - [143671] = 6, - ACTIONS(143), 1, + [144025] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, ACTIONS(5247), 1, anon_sym_RBRACK, - STATE(3113), 1, + STATE(3127), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [143690] = 5, + [144044] = 5, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5249), 1, anon_sym_DQUOTE, - STATE(3114), 1, - sym_comment, - STATE(3277), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, + STATE(3128), 1, + sym_comment, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [143707] = 5, - ACTIONS(143), 1, + [144061] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4795), 1, + anon_sym_SEMI, + ACTIONS(4797), 1, + anon_sym_LF, ACTIONS(5251), 1, - anon_sym_LBRACE, - STATE(3115), 1, + ts_builtin_sym_end, + STATE(628), 1, + sym__terminator, + STATE(3129), 1, sym_comment, - STATE(3269), 1, - sym__blosure, - STATE(1916), 2, - sym_block, - sym_val_closure, - [143724] = 4, + [144080] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3116), 1, + ACTIONS(5253), 1, + anon_sym_DQUOTE, + STATE(3130), 1, sym_comment, - ACTIONS(2315), 2, + STATE(3228), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [144097] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3131), 1, + sym_comment, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2317), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [143739] = 4, + [144112] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3117), 1, + STATE(3132), 1, sym_comment, - ACTIONS(2311), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(2313), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143754] = 4, + [144127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3118), 1, + ACTIONS(2043), 1, + anon_sym_LF, + STATE(3133), 1, sym_comment, - ACTIONS(5078), 2, + ACTIONS(1733), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [144142] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3134), 1, + sym_comment, + ACTIONS(3347), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5080), 2, + ACTIONS(3349), 2, ts_builtin_sym_end, anon_sym_LF, - [143769] = 6, + [144157] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4754), 1, + STATE(3135), 1, + sym_comment, + ACTIONS(4760), 2, anon_sym_SEMI, - ACTIONS(4756), 1, - anon_sym_LF, - ACTIONS(5253), 1, + anon_sym_PIPE, + ACTIONS(4762), 2, ts_builtin_sym_end, - STATE(662), 1, - sym__terminator, - STATE(3119), 1, + anon_sym_LF, + [144172] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3136), 1, sym_comment, - [143788] = 6, - ACTIONS(143), 1, + ACTIONS(4756), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4758), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144187] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5255), 1, - anon_sym_RBRACK, - STATE(3113), 1, - aux_sym_val_table_repeat1, - STATE(3120), 1, + STATE(3137), 1, sym_comment, - STATE(3434), 1, - sym_val_list, - [143807] = 4, + ACTIONS(4760), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4762), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5259), 1, + ACTIONS(5257), 1, anon_sym_LF, - STATE(3121), 1, + STATE(3138), 1, sym_comment, - ACTIONS(5257), 3, + ACTIONS(5255), 3, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_RBRACE, - [143822] = 5, + anon_sym_PIPE, + [144217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5261), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3122), 1, + STATE(3139), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143839] = 4, + ACTIONS(4756), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4758), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144232] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3123), 1, + ACTIONS(5261), 1, + anon_sym_LF, + STATE(3140), 1, sym_comment, - ACTIONS(2285), 2, + ACTIONS(5259), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(2287), 2, - ts_builtin_sym_end, - anon_sym_LF, - [143854] = 4, + [144247] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3124), 1, + STATE(3141), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143869] = 5, + [144262] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5263), 1, - anon_sym_DQUOTE, - STATE(3125), 1, + STATE(3142), 1, sym_comment, - STATE(3132), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [143886] = 4, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144277] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3143), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143901] = 4, + [144292] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(3144), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143916] = 4, + [144307] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3128), 1, + STATE(3145), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(2313), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(2315), 2, ts_builtin_sym_end, anon_sym_LF, - [143931] = 4, + [144322] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5263), 1, + anon_sym_DQUOTE, + STATE(3146), 1, + sym_comment, + STATE(3153), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [144339] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + anon_sym_DQUOTE, + STATE(3128), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3147), 1, + sym_comment, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [144356] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3148), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [143946] = 4, + [144371] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + STATE(3149), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [143961] = 4, + [144386] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3131), 1, + STATE(3150), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [143976] = 5, + [144401] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5267), 1, + anon_sym_RBRACK, + STATE(3151), 1, + sym_comment, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3417), 1, + sym_val_list, + [144420] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5269), 1, + anon_sym_LBRACK, + ACTIONS(5271), 1, + anon_sym_LPAREN, + STATE(510), 1, + sym_parameter_bracks, + STATE(521), 1, + sym_parameter_parens, + STATE(3152), 1, + sym_comment, + [144439] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5265), 1, + ACTIONS(5273), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3132), 1, + STATE(3153), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [143993] = 4, + [144456] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3133), 1, + STATE(3154), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [144008] = 4, + [144471] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3134), 1, + STATE(3155), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [144023] = 6, - ACTIONS(143), 1, + [144486] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5267), 1, + ACTIONS(5275), 1, anon_sym_LBRACK, - ACTIONS(5269), 1, + ACTIONS(5277), 1, anon_sym_LPAREN, - STATE(3135), 1, + STATE(3156), 1, sym_comment, - STATE(3213), 1, + STATE(3209), 1, sym_parameter_bracks, - STATE(3214), 1, + STATE(3217), 1, sym_parameter_parens, - [144042] = 6, - ACTIONS(143), 1, + [144505] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5271), 1, + ACTIONS(5279), 1, anon_sym_RBRACK, - STATE(3136), 1, + STATE(3157), 1, sym_comment, - STATE(3140), 1, + STATE(3161), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [144061] = 6, - ACTIONS(143), 1, + [144524] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5273), 1, + ACTIONS(5281), 1, anon_sym_LBRACK, - ACTIONS(5275), 1, + ACTIONS(5283), 1, anon_sym_LPAREN, - STATE(555), 1, + STATE(584), 1, sym_parameter_parens, - STATE(557), 1, + STATE(588), 1, sym_parameter_bracks, - STATE(3137), 1, + STATE(3158), 1, sym_comment, - [144080] = 4, + [144543] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3138), 1, + STATE(3159), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [144095] = 4, - ACTIONS(3), 1, + [144558] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3139), 1, + ACTIONS(5275), 1, + anon_sym_LBRACK, + ACTIONS(5277), 1, + anon_sym_LPAREN, + STATE(3160), 1, sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144110] = 6, - ACTIONS(143), 1, + STATE(3283), 1, + sym_parameter_bracks, + STATE(3291), 1, + sym_parameter_parens, + [144577] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5277), 1, + ACTIONS(5285), 1, anon_sym_RBRACK, - STATE(3140), 1, + STATE(3161), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [144129] = 6, - ACTIONS(143), 1, + [144596] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5267), 1, + STATE(3162), 1, + sym_comment, + ACTIONS(5126), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5128), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144611] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5275), 1, anon_sym_LBRACK, - ACTIONS(5269), 1, + ACTIONS(5277), 1, anon_sym_LPAREN, - STATE(3141), 1, + STATE(3163), 1, sym_comment, - STATE(3185), 1, - sym_parameter_bracks, - STATE(3186), 1, + STATE(3246), 1, sym_parameter_parens, - [144148] = 4, + STATE(3247), 1, + sym_parameter_bracks, + [144630] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3164), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [144163] = 6, - ACTIONS(143), 1, + [144645] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5279), 1, + ACTIONS(5287), 1, anon_sym_RBRACK, - STATE(3143), 1, + STATE(3165), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [144182] = 4, + [144664] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3144), 1, + STATE(3166), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(5180), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(5182), 2, ts_builtin_sym_end, anon_sym_LF, - [144197] = 4, + [144679] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3167), 1, sym_comment, - ACTIONS(4841), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4843), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [144212] = 4, + [144694] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3168), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5004), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [144227] = 4, + [144709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3169), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(4760), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5004), 2, + ACTIONS(4762), 2, ts_builtin_sym_end, anon_sym_LF, - [144242] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5267), 1, - anon_sym_LBRACK, - ACTIONS(5269), 1, - anon_sym_LPAREN, - STATE(3148), 1, - sym_comment, - STATE(3201), 1, - sym_parameter_bracks, - STATE(3202), 1, - sym_parameter_parens, - [144261] = 4, + [144724] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3149), 1, - sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, + ACTIONS(5291), 1, anon_sym_LF, - [144276] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3150), 1, + STATE(3170), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(5289), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144291] = 4, + [144739] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3171), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(5037), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5004), 2, + ACTIONS(5039), 2, ts_builtin_sym_end, anon_sym_LF, - [144306] = 4, + [144754] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3172), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(4756), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5004), 2, + ACTIONS(4758), 2, ts_builtin_sym_end, anon_sym_LF, - [144321] = 4, + [144769] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3173), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5004), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [144336] = 4, - ACTIONS(3), 1, + [144784] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3154), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5293), 1, + anon_sym_RBRACK, + STATE(3165), 1, + aux_sym_val_table_repeat1, + STATE(3174), 1, sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144351] = 4, + STATE(3417), 1, + sym_val_list, + [144803] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3155), 1, + ACTIONS(5295), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3175), 1, sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144366] = 5, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [144820] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5281), 1, + ACTIONS(5297), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3175), 1, aux_sym__str_double_quotes_repeat1, - STATE(3156), 1, + STATE(3176), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144383] = 5, + [144837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5283), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - STATE(3156), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3157), 1, + STATE(3177), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144400] = 5, + [144854] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5285), 1, + ACTIONS(5301), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3177), 1, aux_sym__str_double_quotes_repeat1, - STATE(3158), 1, + STATE(3178), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144417] = 5, + [144871] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5287), 1, + ACTIONS(5303), 1, anon_sym_DQUOTE, - STATE(3073), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3159), 1, + STATE(3179), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144434] = 5, + [144888] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5289), 1, + ACTIONS(5305), 1, anon_sym_DQUOTE, - STATE(3158), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3160), 1, + STATE(3180), 1, sym_comment, - ACTIONS(5166), 2, + STATE(3187), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144451] = 5, + [144905] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5291), 1, + ACTIONS(5307), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3161), 1, + STATE(3181), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144468] = 5, + [144922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5293), 1, + ACTIONS(5309), 1, anon_sym_DQUOTE, - STATE(3161), 1, + STATE(3179), 1, aux_sym__str_double_quotes_repeat1, - STATE(3162), 1, + STATE(3182), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144485] = 5, + [144939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5295), 1, + ACTIONS(5311), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3163), 1, + STATE(3183), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144502] = 5, + [144956] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5297), 1, + ACTIONS(5313), 1, anon_sym_DQUOTE, - STATE(3163), 1, + STATE(3183), 1, aux_sym__str_double_quotes_repeat1, - STATE(3164), 1, + STATE(3184), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144519] = 5, + [144973] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5299), 1, + STATE(3185), 1, + sym_comment, + ACTIONS(2317), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2319), 2, + ts_builtin_sym_end, + anon_sym_LF, + [144988] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5315), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3165), 1, + STATE(3186), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144536] = 5, + [145005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5301), 1, + ACTIONS(5317), 1, anon_sym_DQUOTE, - STATE(3165), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3166), 1, + STATE(3187), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144553] = 5, + [145022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5303), 1, + ACTIONS(5319), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3186), 1, aux_sym__str_double_quotes_repeat1, - STATE(3167), 1, + STATE(3188), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144570] = 5, + [145039] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5305), 1, + ACTIONS(5321), 1, anon_sym_DQUOTE, - STATE(3167), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3168), 1, + STATE(3189), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144587] = 6, - ACTIONS(143), 1, + [145056] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(5307), 1, - anon_sym_if, - STATE(3022), 1, - sym_block, - STATE(3023), 1, - sym_ctrl_if, - STATE(3169), 1, + ACTIONS(5323), 1, + anon_sym_DQUOTE, + STATE(3189), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3190), 1, sym_comment, - [144606] = 6, - ACTIONS(143), 1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [145073] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5309), 1, + ACTIONS(5325), 1, anon_sym_RBRACK, - STATE(3170), 1, + STATE(3191), 1, sym_comment, - STATE(3174), 1, + STATE(3195), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [144625] = 4, + [145092] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3171), 1, + ACTIONS(5327), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3192), 1, sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144640] = 5, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [145109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5311), 1, + ACTIONS(5329), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3192), 1, aux_sym__str_double_quotes_repeat1, - STATE(3172), 1, + STATE(3193), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144657] = 5, + [145126] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5313), 1, + ACTIONS(5331), 1, anon_sym_DQUOTE, - STATE(3172), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3173), 1, + STATE(3194), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144674] = 6, - ACTIONS(143), 1, + [145143] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5315), 1, + ACTIONS(5333), 1, anon_sym_RBRACK, - STATE(3174), 1, + STATE(3195), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [144693] = 4, + [145162] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3175), 1, - sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144708] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5317), 1, - anon_sym_RBRACK, - STATE(3176), 1, + ACTIONS(5335), 1, + anon_sym_DQUOTE, + STATE(3194), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3196), 1, sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [144727] = 5, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [145179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5319), 1, + ACTIONS(5337), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3177), 1, + STATE(3197), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144744] = 5, + [145196] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5321), 1, + ACTIONS(5339), 1, anon_sym_DQUOTE, - STATE(3177), 1, + STATE(3197), 1, aux_sym__str_double_quotes_repeat1, - STATE(3178), 1, + STATE(3198), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144761] = 4, + [145213] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3179), 1, + ACTIONS(5341), 1, + anon_sym_LPAREN, + STATE(3199), 1, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [144776] = 5, + ACTIONS(5343), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [145228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5323), 1, + ACTIONS(5345), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3180), 1, + STATE(3200), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144793] = 5, + [145245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5349), 1, + anon_sym_LF, + STATE(3201), 1, + sym_comment, + ACTIONS(5347), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [145260] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5351), 1, anon_sym_DQUOTE, - STATE(3180), 1, + STATE(3200), 1, aux_sym__str_double_quotes_repeat1, - STATE(3181), 1, + STATE(3202), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144810] = 4, + [145277] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5353), 1, + anon_sym_RBRACK, + STATE(3151), 1, + aux_sym_val_table_repeat1, + STATE(3203), 1, + sym_comment, + STATE(3417), 1, + sym_val_list, + [145296] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3204), 1, sym_comment, - ACTIONS(5022), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5024), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [144825] = 5, + [145311] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5327), 1, + ACTIONS(5355), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3181), 1, aux_sym__str_double_quotes_repeat1, - STATE(3183), 1, + STATE(3205), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144842] = 5, + [145328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5329), 1, - anon_sym_DQUOTE, - STATE(3183), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3184), 1, + ACTIONS(5359), 1, + anon_sym_LF, + STATE(3206), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [144859] = 6, - ACTIONS(143), 1, + ACTIONS(5357), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [145343] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3207), 1, + sym_comment, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [145358] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(531), 1, - sym_block, - STATE(3185), 1, + ACTIONS(5361), 1, + anon_sym_if, + STATE(3208), 1, sym_comment, - STATE(3428), 1, - sym_returns, - [144878] = 6, - ACTIONS(143), 1, + STATE(3304), 1, + sym_ctrl_if, + STATE(3305), 1, + sym_block, + [145377] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, + ACTIONS(5363), 1, anon_sym_COLON, - STATE(530), 1, + STATE(674), 1, sym_block, - STATE(3186), 1, + STATE(3209), 1, sym_comment, - STATE(3427), 1, + STATE(3419), 1, sym_returns, - [144897] = 5, + [145396] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5331), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3187), 1, - sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [144914] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5333), 1, - anon_sym_RBRACK, - STATE(3143), 1, - aux_sym_val_table_repeat1, - STATE(3188), 1, + ACTIONS(5367), 1, + anon_sym_LF, + STATE(3210), 1, sym_comment, - STATE(3434), 1, - sym_val_list, - [144933] = 5, + ACTIONS(5365), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [145411] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5335), 1, + ACTIONS(5369), 1, anon_sym_DQUOTE, - STATE(3187), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3189), 1, + STATE(3211), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144950] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5337), 1, - anon_sym_LBRACE, - STATE(3071), 1, - sym__blosure, - STATE(3190), 1, - sym_comment, - STATE(1836), 2, - sym_block, - sym_val_closure, - [144967] = 5, + [145428] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5371), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3211), 1, aux_sym__str_double_quotes_repeat1, - STATE(3191), 1, + STATE(3212), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [144984] = 5, + [145445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5341), 1, - anon_sym_DQUOTE, - STATE(3191), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3192), 1, + STATE(3213), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145001] = 5, + ACTIONS(4913), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4915), 2, + ts_builtin_sym_end, + anon_sym_LF, + [145460] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5343), 1, + ACTIONS(5373), 1, anon_sym_DQUOTE, - STATE(3193), 1, + STATE(3214), 1, sym_comment, - STATE(3200), 1, + STATE(3221), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145018] = 5, + [145477] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5345), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3194), 1, + STATE(3215), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145035] = 5, + ACTIONS(4752), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(4754), 2, + ts_builtin_sym_end, + anon_sym_LF, + [145492] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5375), 1, anon_sym_DQUOTE, - STATE(3194), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3195), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145052] = 6, - ACTIONS(143), 1, + [145509] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5349), 1, - anon_sym_RBRACK, - STATE(3176), 1, - aux_sym_val_table_repeat1, - STATE(3196), 1, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(680), 1, + sym_block, + STATE(3217), 1, sym_comment, - STATE(3434), 1, - sym_val_list, - [145071] = 5, + STATE(3420), 1, + sym_returns, + [145528] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5351), 1, + ACTIONS(5377), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3216), 1, aux_sym__str_double_quotes_repeat1, - STATE(3197), 1, + STATE(3218), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145088] = 5, + [145545] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5353), 1, + ACTIONS(5379), 1, anon_sym_DQUOTE, - STATE(3197), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3198), 1, + STATE(3219), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145105] = 5, + [145562] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5355), 1, + ACTIONS(5381), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3219), 1, aux_sym__str_double_quotes_repeat1, - STATE(3199), 1, + STATE(3220), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145122] = 5, + [145579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5357), 1, + ACTIONS(5383), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3200), 1, + STATE(3221), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145139] = 6, - ACTIONS(143), 1, + [145596] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(542), 1, - sym_block, - STATE(3201), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, + anon_sym_LF, + ACTIONS(4959), 1, + anon_sym_SEMI, + STATE(1491), 1, + aux_sym_pipe_element_repeat1, + STATE(3222), 1, sym_comment, - STATE(3441), 1, - sym_returns, - [145158] = 6, - ACTIONS(143), 1, + [145615] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(544), 1, - sym_block, - STATE(3202), 1, + ACTIONS(5385), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3223), 1, sym_comment, - STATE(3439), 1, - sym_returns, - [145177] = 5, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [145632] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5359), 1, + ACTIONS(5387), 1, anon_sym_DQUOTE, - STATE(3199), 1, + STATE(3223), 1, aux_sym__str_double_quotes_repeat1, - STATE(3203), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145194] = 6, - ACTIONS(143), 1, + [145649] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5361), 1, + ACTIONS(5389), 1, anon_sym_RBRACK, - STATE(3204), 1, + STATE(3225), 1, sym_comment, - STATE(3208), 1, + STATE(3229), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [145213] = 4, + [145668] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3205), 1, + ACTIONS(5391), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3226), 1, sym_comment, - ACTIONS(5002), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5004), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145228] = 5, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [145685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5363), 1, + ACTIONS(5393), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3226), 1, aux_sym__str_double_quotes_repeat1, - STATE(3206), 1, + STATE(3227), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145245] = 5, + [145702] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5365), 1, + ACTIONS(5395), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3207), 1, + STATE(3228), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145262] = 6, - ACTIONS(143), 1, + [145719] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5367), 1, + ACTIONS(5397), 1, anon_sym_RBRACK, - STATE(3208), 1, + STATE(3229), 1, sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [145281] = 5, + [145738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5369), 1, - anon_sym_DQUOTE, - STATE(3206), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3209), 1, + ACTIONS(5401), 1, + anon_sym_LF, + STATE(3230), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145298] = 5, + ACTIONS(5399), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_PIPE, + [145753] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5371), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3210), 1, + STATE(3231), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145315] = 5, + ACTIONS(2321), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(2323), 2, + ts_builtin_sym_end, + anon_sym_LF, + [145768] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5373), 1, + ACTIONS(5403), 1, anon_sym_DQUOTE, - STATE(3210), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3211), 1, + STATE(3232), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145332] = 5, + [145785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5375), 1, + ACTIONS(5405), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3232), 1, aux_sym__str_double_quotes_repeat1, - STATE(3212), 1, + STATE(3233), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145349] = 6, - ACTIONS(143), 1, + [145802] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(674), 1, - sym_block, - STATE(3213), 1, + ACTIONS(5281), 1, + anon_sym_LBRACK, + ACTIONS(5283), 1, + anon_sym_LPAREN, + STATE(593), 1, + sym_parameter_bracks, + STATE(594), 1, + sym_parameter_parens, + STATE(3234), 1, sym_comment, - STATE(3437), 1, - sym_returns, - [145368] = 6, - ACTIONS(143), 1, + [145821] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_COLON, - STATE(665), 1, - sym_block, - STATE(3214), 1, + ACTIONS(5275), 1, + anon_sym_LBRACK, + ACTIONS(5277), 1, + anon_sym_LPAREN, + STATE(3235), 1, sym_comment, - STATE(3422), 1, - sym_returns, - [145387] = 6, - ACTIONS(143), 1, + STATE(3242), 1, + sym_parameter_parens, + STATE(3244), 1, + sym_parameter_bracks, + [145840] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5377), 1, + ACTIONS(5269), 1, anon_sym_LBRACK, - ACTIONS(5379), 1, + ACTIONS(5271), 1, anon_sym_LPAREN, - STATE(521), 1, + STATE(513), 1, sym_parameter_parens, - STATE(525), 1, + STATE(515), 1, sym_parameter_bracks, - STATE(3215), 1, - sym_comment, - [145406] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5381), 1, - anon_sym_DQUOTE, - STATE(3212), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3216), 1, + STATE(3236), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145423] = 5, + [145859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5383), 1, + ACTIONS(5407), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3217), 1, + STATE(3237), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145440] = 5, + [145876] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5385), 1, + ACTIONS(5409), 1, anon_sym_DQUOTE, - STATE(3217), 1, + STATE(3237), 1, aux_sym__str_double_quotes_repeat1, - STATE(3218), 1, + STATE(3238), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145457] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5273), 1, - anon_sym_LBRACK, - ACTIONS(5275), 1, - anon_sym_LPAREN, - STATE(594), 1, - sym_parameter_bracks, - STATE(595), 1, - sym_parameter_parens, - STATE(3219), 1, - sym_comment, - [145476] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5267), 1, - anon_sym_LBRACK, - ACTIONS(5269), 1, - anon_sym_LPAREN, - STATE(3111), 1, - sym_parameter_parens, - STATE(3112), 1, - sym_parameter_bracks, - STATE(3220), 1, - sym_comment, - [145495] = 4, + [145893] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3221), 1, - sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, + ACTIONS(2045), 1, ts_builtin_sym_end, - anon_sym_LF, - [145510] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3222), 1, - sym_comment, - ACTIONS(4742), 2, + ACTIONS(4795), 1, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, + ACTIONS(4797), 1, anon_sym_LF, - [145525] = 5, + STATE(684), 1, + sym__terminator, + STATE(3239), 1, + sym_comment, + [145912] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5387), 1, + ACTIONS(5411), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3223), 1, + STATE(3240), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145542] = 5, + [145929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5389), 1, + ACTIONS(5413), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3240), 1, aux_sym__str_double_quotes_repeat1, - STATE(3224), 1, + STATE(3241), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145559] = 4, - ACTIONS(3), 1, + [145946] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3225), 1, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(651), 1, + sym_block, + STATE(3242), 1, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145574] = 5, + STATE(3448), 1, + sym_returns, + [145965] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5391), 1, + ACTIONS(5415), 1, anon_sym_DQUOTE, - STATE(3224), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3226), 1, + STATE(3243), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145591] = 5, - ACTIONS(3), 1, + [145982] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5393), 1, - anon_sym_DQUOTE, - STATE(3227), 1, + ACTIONS(3681), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(652), 1, + sym_block, + STATE(3244), 1, sym_comment, - STATE(3234), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145608] = 4, + STATE(3446), 1, + sym_returns, + [146001] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3228), 1, + ACTIONS(5419), 1, + anon_sym_LF, + STATE(3245), 1, sym_comment, - ACTIONS(4742), 2, + ACTIONS(5417), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145623] = 6, - ACTIONS(143), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [146016] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5395), 1, - anon_sym_RBRACK, - STATE(3229), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(546), 1, + sym_block, + STATE(3246), 1, sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [145642] = 6, - ACTIONS(143), 1, + STATE(3436), 1, + sym_returns, + [146035] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5377), 1, - anon_sym_LBRACK, - ACTIONS(5379), 1, - anon_sym_LPAREN, - STATE(517), 1, - sym_parameter_parens, - STATE(519), 1, - sym_parameter_bracks, - STATE(3230), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(547), 1, + sym_block, + STATE(3247), 1, sym_comment, - [145661] = 6, - ACTIONS(143), 1, + STATE(3435), 1, + sym_returns, + [146054] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5397), 1, - anon_sym_RBRACK, - STATE(3229), 1, - aux_sym_val_table_repeat1, - STATE(3231), 1, + ACTIONS(5421), 1, + anon_sym_DQUOTE, + STATE(3248), 1, sym_comment, - STATE(3434), 1, - sym_val_list, - [145680] = 4, + STATE(3255), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146071] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3232), 1, + ACTIONS(5423), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3249), 1, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145695] = 4, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3233), 1, + STATE(3250), 1, sym_comment, - ACTIONS(4742), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4744), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [145710] = 5, + [146103] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5399), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3234), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3915), 1, + anon_sym_SEMI, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, + STATE(3251), 1, sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [145727] = 4, + [146122] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3235), 1, + ACTIONS(5427), 1, + anon_sym_LF, + STATE(3252), 1, sym_comment, - ACTIONS(4742), 2, + ACTIONS(5425), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145742] = 5, + [146137] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5429), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3249), 1, aux_sym__str_double_quotes_repeat1, - STATE(3236), 1, + STATE(3253), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145759] = 5, + [146154] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5431), 1, + anon_sym_RBRACK, + STATE(3254), 1, + sym_comment, + STATE(3330), 1, + aux_sym_val_table_repeat1, + STATE(3417), 1, + sym_val_list, + [146173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5403), 1, + ACTIONS(5433), 1, anon_sym_DQUOTE, - STATE(3223), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3237), 1, + STATE(3255), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145776] = 6, - ACTIONS(143), 1, + [146190] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5405), 1, + ACTIONS(5435), 1, anon_sym_RBRACK, - STATE(3238), 1, + STATE(3256), 1, sym_comment, - STATE(3242), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [145795] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3239), 1, - sym_comment, - ACTIONS(5098), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5100), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145810] = 4, - ACTIONS(3), 1, + [146209] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3240), 1, + ACTIONS(5437), 1, + anon_sym_LBRACK, + ACTIONS(5440), 1, + anon_sym_RBRACK, + STATE(3417), 1, + sym_val_list, + STATE(3257), 2, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145825] = 4, - ACTIONS(3), 1, + aux_sym_val_table_repeat1, + [146226] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3241), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5442), 1, + anon_sym_RBRACK, + STATE(3256), 1, + aux_sym_val_table_repeat1, + STATE(3258), 1, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145840] = 6, - ACTIONS(143), 1, + STATE(3417), 1, + sym_val_list, + [146245] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5407), 1, + ACTIONS(5444), 1, anon_sym_RBRACK, - STATE(3242), 1, + STATE(3259), 1, sym_comment, - STATE(3317), 1, + STATE(3263), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [145859] = 6, + [146264] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2053), 1, - ts_builtin_sym_end, - ACTIONS(4754), 1, - anon_sym_SEMI, - ACTIONS(4756), 1, + ACTIONS(5448), 1, anon_sym_LF, - STATE(679), 1, - sym__terminator, - STATE(3243), 1, + STATE(3260), 1, sym_comment, - [145878] = 6, - ACTIONS(143), 1, + ACTIONS(5446), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [146279] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5409), 1, - anon_sym_use, - ACTIONS(5411), 1, - anon_sym_list, - ACTIONS(5413), 1, - anon_sym_hide, - ACTIONS(5415), 1, - anon_sym_new, - STATE(3244), 1, + STATE(3261), 1, sym_comment, - [145897] = 5, + ACTIONS(5126), 2, + anon_sym_SEMI, + anon_sym_PIPE, + ACTIONS(5128), 2, + ts_builtin_sym_end, + anon_sym_LF, + [146294] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5417), 1, + ACTIONS(5450), 1, anon_sym_DQUOTE, - STATE(3236), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3245), 1, + STATE(3262), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [145914] = 4, - ACTIONS(3), 1, + [146311] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3246), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5452), 1, + anon_sym_RBRACK, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3263), 1, sym_comment, - ACTIONS(4742), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(4744), 2, - ts_builtin_sym_end, - anon_sym_LF, - [145929] = 4, + STATE(3417), 1, + sym_val_list, + [146330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3247), 1, + STATE(3264), 1, sym_comment, - ACTIONS(4742), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4744), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [145944] = 4, + [146345] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3248), 1, + STATE(3265), 1, sym_comment, - ACTIONS(4742), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(4744), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [145959] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5419), 1, - anon_sym_RBRACK, - STATE(3249), 1, - sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [145978] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5421), 1, - anon_sym_RBRACK, - STATE(3249), 1, - aux_sym_val_table_repeat1, - STATE(3250), 1, - sym_comment, - STATE(3434), 1, - sym_val_list, - [145997] = 4, + [146360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5423), 1, + ACTIONS(5454), 1, anon_sym_LPAREN, - STATE(3251), 1, + STATE(3266), 1, sym_comment, - ACTIONS(5425), 3, + ACTIONS(5456), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [146012] = 4, + [146375] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3252), 1, + ACTIONS(5458), 1, + anon_sym_DQUOTE, + STATE(3262), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3267), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146027] = 4, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5427), 1, + ACTIONS(5460), 1, anon_sym_LPAREN, - STATE(3253), 1, + STATE(3268), 1, sym_comment, - ACTIONS(5429), 3, + ACTIONS(5462), 3, sym_escaped_interpolated_content, anon_sym_DQUOTE2, sym_inter_escape_sequence, - [146042] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - ACTIONS(5431), 1, - anon_sym_if, - STATE(3239), 1, - sym_ctrl_if, - STATE(3254), 1, - sym_comment, - STATE(3308), 1, - sym_block, - [146061] = 4, + [146407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3255), 1, + STATE(3269), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146076] = 4, + [146422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3256), 1, + STATE(3270), 1, sym_comment, - ACTIONS(5156), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5158), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146091] = 4, + [146437] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3257), 1, + ACTIONS(5466), 1, + anon_sym_LF, + STATE(3271), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5464), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146106] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + [146452] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5468), 1, + anon_sym_RBRACK, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3272), 1, + sym_comment, + STATE(3417), 1, + sym_val_list, + [146471] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5433), 1, + ACTIONS(5470), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3258), 1, + STATE(3273), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146123] = 4, - ACTIONS(3), 1, + [146488] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3259), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5472), 1, + anon_sym_RBRACK, + STATE(3272), 1, + aux_sym_val_table_repeat1, + STATE(3274), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146138] = 4, + STATE(3417), 1, + sym_val_list, + [146507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3260), 1, + STATE(3275), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146153] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5435), 1, - anon_sym_DQUOTE, - STATE(3261), 1, - sym_comment, - STATE(3268), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [146170] = 4, - ACTIONS(3), 1, + [146522] = 5, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3262), 1, + ACTIONS(5200), 1, + anon_sym_LBRACE, + STATE(2911), 1, + sym__blosure, + STATE(3276), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146185] = 4, - ACTIONS(3), 1, + STATE(1818), 2, + sym_block, + sym_val_closure, + [146539] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3263), 1, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5227), 1, + anon_sym_if, + STATE(3124), 1, + sym_ctrl_if_parenthesized, + STATE(3138), 1, + sym_block, + STATE(3277), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146200] = 5, + [146558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5437), 1, + ACTIONS(5474), 1, anon_sym_DQUOTE, - STATE(3258), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3264), 1, + STATE(3278), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146217] = 4, + [146575] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5200), 1, + anon_sym_LBRACE, + STATE(3140), 1, + sym__blosure, + STATE(3279), 1, + sym_comment, + STATE(1818), 2, + sym_block, + sym_val_closure, + [146592] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3265), 1, + ACTIONS(5478), 1, + anon_sym_LF, + STATE(3280), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5476), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146232] = 4, + [146607] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3281), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146247] = 4, + [146622] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3267), 1, + ACTIONS(5480), 1, + anon_sym_DQUOTE, + STATE(3282), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5058), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146262] = 5, + STATE(3289), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146639] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(609), 1, + sym_block, + STATE(3283), 1, + sym_comment, + STATE(3442), 1, + sym_returns, + [146658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5439), 1, + ACTIONS(5482), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3278), 1, aux_sym__str_double_quotes_repeat1, - STATE(3268), 1, + STATE(3284), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146279] = 4, + [146675] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3269), 1, + STATE(3285), 1, sym_comment, - ACTIONS(5160), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5162), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146294] = 4, + [146690] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3270), 1, + STATE(3286), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146309] = 4, + [146705] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3271), 1, + STATE(3287), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146324] = 6, - ACTIONS(143), 1, + [146720] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5441), 1, + ACTIONS(5484), 1, anon_sym_RBRACK, - STATE(3272), 1, - sym_comment, - STATE(3276), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3288), 1, + sym_comment, + STATE(3417), 1, sym_val_list, - [146343] = 6, - ACTIONS(143), 1, + [146739] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5443), 1, - anon_sym_RBRACK, - STATE(3273), 1, + ACTIONS(5486), 1, + anon_sym_DQUOTE, + STATE(3099), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3289), 1, sym_comment, - STATE(3317), 1, - aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [146362] = 6, - ACTIONS(143), 1, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146756] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5445), 1, + ACTIONS(5488), 1, anon_sym_RBRACK, - STATE(3273), 1, + STATE(3288), 1, aux_sym_val_table_repeat1, - STATE(3274), 1, + STATE(3290), 1, sym_comment, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [146381] = 4, + [146775] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5363), 1, + anon_sym_COLON, + STATE(614), 1, + sym_block, + STATE(3291), 1, + sym_comment, + STATE(3418), 1, + sym_returns, + [146794] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3275), 1, + STATE(3292), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [146396] = 6, - ACTIONS(143), 1, + [146809] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, + ACTIONS(5490), 1, anon_sym_RBRACK, - STATE(3276), 1, + STATE(3293), 1, sym_comment, - STATE(3317), 1, + STATE(3297), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [146415] = 5, + [146828] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5449), 1, + ACTIONS(5492), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3277), 1, + STATE(3294), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146432] = 4, + [146845] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3278), 1, + STATE(3295), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146447] = 4, + [146860] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3279), 1, + STATE(3296), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(5126), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(5128), 2, ts_builtin_sym_end, anon_sym_LF, - [146462] = 4, + [146875] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5494), 1, + anon_sym_RBRACK, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3297), 1, + sym_comment, + STATE(3417), 1, + sym_val_list, + [146894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3280), 1, + STATE(3298), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4441), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5058), 2, + ACTIONS(4443), 2, ts_builtin_sym_end, anon_sym_LF, - [146477] = 4, + [146909] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3281), 1, + ACTIONS(5496), 1, + anon_sym_DQUOTE, + STATE(3294), 1, + aux_sym__str_double_quotes_repeat1, + STATE(3299), 1, + sym_comment, + ACTIONS(5190), 2, + sym__escaped_str_content, + sym_escape_sequence, + [146926] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3300), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4989), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4991), 2, ts_builtin_sym_end, anon_sym_LF, - [146492] = 4, + [146941] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3282), 1, + STATE(3301), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(2335), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(2337), 2, ts_builtin_sym_end, anon_sym_LF, - [146507] = 4, + [146956] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3283), 1, + STATE(3302), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146522] = 4, + [146971] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3284), 1, + STATE(3303), 1, sym_comment, - ACTIONS(5118), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5120), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146537] = 4, + [146986] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3285), 1, + STATE(3304), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4993), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4995), 2, ts_builtin_sym_end, anon_sym_LF, - [146552] = 4, + [147001] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3286), 1, + STATE(3305), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(5003), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(5005), 2, ts_builtin_sym_end, anon_sym_LF, - [146567] = 4, + [147016] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3287), 1, + STATE(3306), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(3865), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(3867), 2, ts_builtin_sym_end, anon_sym_LF, - [146582] = 4, + [147031] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3288), 1, + STATE(3307), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146597] = 4, + [147046] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3289), 1, + ACTIONS(5500), 1, + anon_sym_LF, + STATE(3308), 1, sym_comment, - ACTIONS(3932), 2, + ACTIONS(5498), 3, anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(3934), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146612] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [147061] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3290), 1, + STATE(3309), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(5037), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(5039), 2, ts_builtin_sym_end, anon_sym_LF, - [146627] = 4, - ACTIONS(3), 1, + [147076] = 6, + ACTIONS(145), 1, anon_sym_POUND, - STATE(3291), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5502), 1, + anon_sym_RBRACK, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3310), 1, sym_comment, - ACTIONS(5062), 2, - anon_sym_SEMI, + STATE(3417), 1, + sym_val_list, + [147095] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3160), 1, anon_sym_PIPE, - ACTIONS(5064), 2, - ts_builtin_sym_end, + ACTIONS(3976), 1, anon_sym_LF, - [146642] = 4, + ACTIONS(4976), 1, + anon_sym_SEMI, + STATE(1488), 1, + aux_sym_pipe_element_repeat1, + STATE(3311), 1, + sym_comment, + [147114] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3292), 1, + STATE(3312), 1, sym_comment, - ACTIONS(5062), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5064), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [146657] = 4, + [147129] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3293), 1, + STATE(3313), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(5007), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(5009), 2, ts_builtin_sym_end, anon_sym_LF, - [146672] = 4, + [147144] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3294), 1, + ACTIONS(5506), 1, + anon_sym_LF, + STATE(3314), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(5504), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146687] = 5, + [147159] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5508), 1, + anon_sym_RBRACK, + STATE(3310), 1, + aux_sym_val_table_repeat1, + STATE(3315), 1, + sym_comment, + STATE(3417), 1, + sym_val_list, + [147178] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5451), 1, + ACTIONS(5510), 1, anon_sym_DQUOTE, - STATE(3295), 1, + STATE(3316), 1, sym_comment, - STATE(3302), 1, + STATE(3323), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146704] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3296), 1, - sym_comment, - ACTIONS(5106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146719] = 4, + [147195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3297), 1, + STATE(3317), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4879), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4881), 2, ts_builtin_sym_end, anon_sym_LF, - [146734] = 4, + [147210] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3298), 1, + STATE(3318), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146749] = 5, + [147225] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5453), 1, + ACTIONS(5512), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3299), 1, + STATE(3319), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146766] = 4, + [147242] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3300), 1, + STATE(3320), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146781] = 5, + [147257] = 6, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5514), 1, + anon_sym_RBRACK, + STATE(3257), 1, + aux_sym_val_table_repeat1, + STATE(3321), 1, + sym_comment, + STATE(3417), 1, + sym_val_list, + [147276] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LF, + STATE(3322), 1, + sym_comment, + ACTIONS(5516), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [147291] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5455), 1, + ACTIONS(5520), 1, anon_sym_DQUOTE, - STATE(3299), 1, + STATE(3099), 1, aux_sym__str_double_quotes_repeat1, - STATE(3301), 1, + STATE(3323), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146798] = 5, + [147308] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5457), 1, + ACTIONS(5522), 1, anon_sym_DQUOTE, - STATE(3092), 1, + STATE(3319), 1, aux_sym__str_double_quotes_repeat1, - STATE(3302), 1, + STATE(3324), 1, sym_comment, - ACTIONS(5166), 2, + ACTIONS(5190), 2, sym__escaped_str_content, sym_escape_sequence, - [146815] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3303), 1, - sym_comment, - ACTIONS(5106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146830] = 4, + [147325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3304), 1, + STATE(3325), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4752), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4754), 2, ts_builtin_sym_end, anon_sym_LF, - [146845] = 4, + [147340] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3305), 1, + STATE(3326), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146860] = 6, - ACTIONS(143), 1, + [147355] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5459), 1, + ACTIONS(5524), 1, anon_sym_RBRACK, - STATE(3306), 1, + STATE(3327), 1, sym_comment, - STATE(3310), 1, + STATE(3331), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3417), 1, sym_val_list, - [146879] = 4, + [147374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3307), 1, + STATE(3328), 1, sym_comment, - ACTIONS(5090), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5092), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146894] = 4, + [147389] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3308), 1, + STATE(3329), 1, sym_comment, - ACTIONS(5094), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5096), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [146909] = 6, - ACTIONS(143), 1, + [147404] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5461), 1, + ACTIONS(5526), 1, anon_sym_RBRACK, - STATE(3309), 1, - sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, + STATE(3330), 1, + sym_comment, + STATE(3417), 1, sym_val_list, - [146928] = 6, - ACTIONS(143), 1, + [147423] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5174), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5463), 1, + ACTIONS(5528), 1, anon_sym_RBRACK, - STATE(3310), 1, - sym_comment, - STATE(3317), 1, + STATE(3257), 1, aux_sym_val_table_repeat1, - STATE(3434), 1, - sym_val_list, - [146947] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3311), 1, + STATE(3331), 1, sym_comment, - ACTIONS(5106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146962] = 4, + STATE(3417), 1, + sym_val_list, + [147442] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3312), 1, - sym_comment, - ACTIONS(5106), 2, - anon_sym_SEMI, - anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, + ACTIONS(5532), 1, anon_sym_LF, - [146977] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3313), 1, + STATE(3332), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(5530), 3, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_PIPE, - ACTIONS(5108), 2, - ts_builtin_sym_end, - anon_sym_LF, - [146992] = 6, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_LBRACK, - ACTIONS(5465), 1, - anon_sym_RBRACK, - STATE(3309), 1, - aux_sym_val_table_repeat1, - STATE(3314), 1, - sym_comment, - STATE(3434), 1, - sym_val_list, - [147011] = 4, + [147457] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3333), 1, sym_comment, - ACTIONS(5106), 2, + ACTIONS(4811), 2, anon_sym_SEMI, anon_sym_PIPE, - ACTIONS(5108), 2, + ACTIONS(4813), 2, ts_builtin_sym_end, anon_sym_LF, - [147026] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5467), 1, - anon_sym_DQUOTE, - STATE(3092), 1, - aux_sym__str_double_quotes_repeat1, - STATE(3316), 1, - sym_comment, - ACTIONS(5166), 2, - sym__escaped_str_content, - sym_escape_sequence, - [147043] = 5, - ACTIONS(143), 1, + [147472] = 6, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5469), 1, - anon_sym_LBRACK, - ACTIONS(5472), 1, - anon_sym_RBRACK, - STATE(3434), 1, - sym_val_list, - STATE(3317), 2, + ACTIONS(3731), 1, + anon_sym_LBRACE, + ACTIONS(5534), 1, + anon_sym_if, + STATE(2953), 1, + sym_ctrl_if, + STATE(2956), 1, + sym_block, + STATE(3334), 1, sym_comment, - aux_sym_val_table_repeat1, - [147060] = 5, - ACTIONS(143), 1, + [147491] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5474), 1, + ACTIONS(5536), 1, anon_sym_RBRACK, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - STATE(3318), 1, + STATE(3335), 1, sym_comment, - STATE(3346), 1, + STATE(3413), 1, aux_sym_val_binary_repeat1, - [147076] = 4, + [147507] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - anon_sym_SEMI, - STATE(3319), 1, - sym_comment, - ACTIONS(2059), 2, - ts_builtin_sym_end, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, anon_sym_LF, - [147090] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5194), 1, - anon_sym_LPAREN, - STATE(3320), 1, - sym_comment, - ACTIONS(5196), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [147104] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5478), 1, - anon_sym_RBRACK, - STATE(3321), 1, - sym_comment, - STATE(3346), 1, - aux_sym_val_binary_repeat1, - [147120] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_EQ, - ACTIONS(5482), 1, - anon_sym_COLON, - STATE(3322), 1, + STATE(1490), 1, + aux_sym_pipe_element_repeat1, + STATE(3336), 1, sym_comment, - STATE(3523), 1, - sym_param_type, - [147136] = 5, + [147523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(1815), 1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, anon_sym_LF, - STATE(717), 1, - sym__terminator, - STATE(3323), 1, + STATE(1491), 1, + aux_sym_pipe_element_repeat1, + STATE(3337), 1, sym_comment, - [147152] = 4, + [147539] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5170), 1, + ACTIONS(1783), 1, anon_sym_SEMI, - STATE(3324), 1, + STATE(3338), 1, sym_comment, - ACTIONS(5172), 2, + ACTIONS(1785), 2, ts_builtin_sym_end, anon_sym_LF, - [147166] = 5, - ACTIONS(143), 1, + [147553] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5484), 1, + ACTIONS(5540), 1, anon_sym_RBRACK, - STATE(3325), 1, + STATE(3339), 1, sym_comment, - STATE(3329), 1, + STATE(3340), 1, aux_sym_val_binary_repeat1, - [147182] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3892), 1, - anon_sym_PIPE, - ACTIONS(5486), 1, - anon_sym_EQ_GT, - STATE(3326), 1, - sym_comment, - STATE(3379), 1, - aux_sym__match_or_pattern_repeat1, - [147198] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_SEMI, - STATE(3327), 1, - sym_comment, - ACTIONS(5180), 2, - ts_builtin_sym_end, - anon_sym_LF, - [147212] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1797), 1, - anon_sym_SEMI, - STATE(3328), 1, - sym_comment, - ACTIONS(1799), 2, - ts_builtin_sym_end, - anon_sym_LF, - [147226] = 5, - ACTIONS(143), 1, + [147569] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5488), 1, + ACTIONS(5542), 1, anon_sym_RBRACK, - STATE(3329), 1, + STATE(3340), 1, sym_comment, - STATE(3346), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147242] = 5, - ACTIONS(143), 1, + [147585] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5490), 1, + ACTIONS(5544), 1, anon_sym_RBRACK, - STATE(3330), 1, + STATE(3341), 1, sym_comment, - STATE(3346), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147258] = 5, - ACTIONS(143), 1, + [147601] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5492), 1, - anon_sym_RBRACK, - STATE(3331), 1, + ACTIONS(5546), 1, + anon_sym_COMMA, + STATE(3342), 1, sym_comment, - STATE(3333), 1, - aux_sym_val_binary_repeat1, - [147274] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5494), 1, + ACTIONS(5548), 2, anon_sym_RBRACK, - STATE(3321), 1, - aux_sym_val_binary_repeat1, - STATE(3332), 1, - sym_comment, - [147290] = 5, - ACTIONS(143), 1, + sym_hex_digit, + [147615] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5496), 1, + ACTIONS(5550), 1, anon_sym_RBRACK, - STATE(3333), 1, + STATE(3343), 1, sym_comment, - STATE(3346), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147306] = 4, - ACTIONS(143), 1, + [147631] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5498), 1, - anon_sym_COMMA, - STATE(3334), 1, + STATE(3344), 1, sym_comment, - ACTIONS(5500), 2, - anon_sym_RBRACK, - sym_hex_digit, - [147320] = 5, - ACTIONS(143), 1, + ACTIONS(1413), 3, + sym_identifier, + anon_sym_DASH_DASH, + sym_short_flag, + [147643] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5552), 1, + anon_sym_SEMI, + ACTIONS(5554), 1, + anon_sym_LF, + ACTIONS(5556), 1, + anon_sym_RPAREN, + STATE(3345), 1, + sym_comment, + [147659] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5502), 1, + ACTIONS(5558), 1, anon_sym_RBRACK, - STATE(3335), 1, + STATE(3346), 1, sym_comment, - STATE(3343), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147336] = 5, + [147675] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3982), 1, - anon_sym_LF, - STATE(1444), 1, - aux_sym_pipe_element_repeat1, - STATE(3336), 1, - sym_comment, - [147352] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5506), 1, + ACTIONS(5562), 1, anon_sym_LF, - STATE(3337), 1, + STATE(3347), 1, sym_comment, - ACTIONS(5504), 2, + ACTIONS(5560), 2, anon_sym_SEMI, anon_sym_RPAREN, - [147366] = 4, + [147689] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5510), 1, + ACTIONS(5566), 1, anon_sym_LF, - STATE(3338), 1, + STATE(3348), 1, sym_comment, - ACTIONS(5508), 2, + ACTIONS(5564), 2, anon_sym_SEMI, anon_sym_RPAREN, - [147380] = 5, + [147703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3982), 1, + ACTIONS(5570), 1, anon_sym_LF, - STATE(1457), 1, - aux_sym_pipe_element_repeat1, - STATE(3339), 1, + STATE(3349), 1, sym_comment, - [147396] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1813), 1, + ACTIONS(5568), 2, anon_sym_SEMI, - ACTIONS(1815), 1, - anon_sym_LF, - STATE(718), 1, - sym__terminator, - STATE(3340), 1, - sym_comment, - [147412] = 3, - ACTIONS(143), 1, - anon_sym_POUND, - STATE(3341), 1, - sym_comment, - ACTIONS(1350), 3, - sym_identifier, - anon_sym_DASH_DASH, - sym_short_flag, - [147424] = 5, - ACTIONS(143), 1, + anon_sym_RPAREN, + [147717] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5512), 1, + ACTIONS(5572), 1, anon_sym_RBRACK, - STATE(3342), 1, + STATE(3350), 1, sym_comment, - STATE(3346), 1, + STATE(3357), 1, aux_sym_val_binary_repeat1, - [147440] = 5, - ACTIONS(143), 1, + [147733] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5514), 1, + ACTIONS(5574), 1, anon_sym_RBRACK, - STATE(3343), 1, - sym_comment, STATE(3346), 1, aux_sym_val_binary_repeat1, - [147456] = 4, + STATE(3351), 1, + sym_comment, + [147749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5225), 1, + ACTIONS(5464), 1, anon_sym_SEMI, - STATE(3344), 1, + STATE(3352), 1, sym_comment, - ACTIONS(5227), 2, + ACTIONS(5466), 2, ts_builtin_sym_end, anon_sym_LF, - [147470] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5516), 1, - anon_sym_EQ, - STATE(3345), 1, - sym_comment, - STATE(3454), 1, - sym_param_type, - [147486] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_RBRACK, - ACTIONS(5520), 1, - sym_hex_digit, - STATE(3346), 2, - sym_comment, - aux_sym_val_binary_repeat1, - [147500] = 4, + [147763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1871), 1, + ACTIONS(5192), 1, anon_sym_SEMI, - STATE(3347), 1, + STATE(3353), 1, sym_comment, - ACTIONS(2057), 2, + ACTIONS(5194), 2, ts_builtin_sym_end, anon_sym_LF, - [147514] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5523), 1, - anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, - STATE(3348), 1, - sym_comment, - [147530] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5525), 1, - anon_sym_RBRACK, - STATE(3342), 1, - aux_sym_val_binary_repeat1, - STATE(3349), 1, - sym_comment, - [147546] = 4, + [147777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5186), 1, + ACTIONS(1757), 1, anon_sym_SEMI, - STATE(3350), 1, + STATE(3354), 1, sym_comment, - ACTIONS(5188), 2, + ACTIONS(2041), 2, ts_builtin_sym_end, anon_sym_LF, - [147560] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3892), 1, - anon_sym_PIPE, - ACTIONS(5486), 1, - anon_sym_EQ_GT, - STATE(3351), 1, - sym_comment, - STATE(3382), 1, - aux_sym__match_or_pattern_repeat1, - [147576] = 4, + [147791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5182), 1, + ACTIONS(1733), 1, anon_sym_SEMI, - STATE(3352), 1, + STATE(3355), 1, sym_comment, - ACTIONS(5184), 2, + ACTIONS(2043), 2, ts_builtin_sym_end, anon_sym_LF, - [147590] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5527), 1, - anon_sym_RBRACK, - STATE(3353), 1, - sym_comment, - STATE(3381), 1, - aux_sym_val_binary_repeat1, - [147606] = 5, - ACTIONS(143), 1, + [147805] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_EQ, - ACTIONS(5529), 1, - anon_sym_AT, - STATE(2597), 1, - sym_param_cmd, - STATE(3354), 1, - sym_comment, - [147622] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5531), 1, + ACTIONS(5576), 1, anon_sym_RBRACK, - STATE(3355), 1, + STATE(3356), 1, sym_comment, - STATE(3367), 1, + STATE(3364), 1, aux_sym_val_binary_repeat1, - [147638] = 5, - ACTIONS(143), 1, + [147821] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5533), 1, + ACTIONS(5578), 1, anon_sym_RBRACK, - STATE(3356), 1, + STATE(3357), 1, sym_comment, - STATE(3364), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147654] = 5, - ACTIONS(143), 1, + [147837] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5535), 1, + ACTIONS(5580), 1, anon_sym_RBRACK, - STATE(3348), 1, + STATE(3343), 1, aux_sym_val_binary_repeat1, - STATE(3357), 1, - sym_comment, - [147670] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5219), 1, - anon_sym_SEMI, STATE(3358), 1, sym_comment, - ACTIONS(5221), 2, - ts_builtin_sym_end, - anon_sym_LF, - [147684] = 5, - ACTIONS(143), 1, + [147853] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5537), 1, - anon_sym_RBRACK, - STATE(3330), 1, - aux_sym_val_binary_repeat1, + ACTIONS(3869), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_EQ_GT, STATE(3359), 1, sym_comment, - [147700] = 4, - ACTIONS(3), 1, + STATE(3375), 1, + aux_sym__match_or_pattern_repeat1, + [147869] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5539), 1, - anon_sym_DQUOTE, + ACTIONS(5584), 1, + anon_sym_EQ, + ACTIONS(5586), 1, + anon_sym_COLON, STATE(3360), 1, sym_comment, - ACTIONS(5541), 2, - sym__escaped_str_content, - sym_escape_sequence, - [147714] = 5, - ACTIONS(143), 1, + STATE(3470), 1, + sym_param_type, + [147885] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5543), 1, - anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, + ACTIONS(3869), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_EQ_GT, STATE(3361), 1, sym_comment, - [147730] = 5, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5545), 1, - anon_sym_EQ, - STATE(3362), 1, - sym_comment, - STATE(3515), 1, - sym_param_type, - [147746] = 4, + STATE(3372), 1, + aux_sym__match_or_pattern_repeat1, + [147901] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5208), 1, + ACTIONS(5347), 1, anon_sym_SEMI, - STATE(3363), 1, + STATE(3362), 1, sym_comment, - ACTIONS(5210), 2, + ACTIONS(5349), 2, ts_builtin_sym_end, anon_sym_LF, - [147760] = 5, - ACTIONS(143), 1, + [147915] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5586), 1, + anon_sym_COLON, + ACTIONS(5588), 1, + anon_sym_EQ, + STATE(3363), 1, + sym_comment, + STATE(3477), 1, + sym_param_type, + [147931] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5547), 1, + ACTIONS(5590), 1, anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, STATE(3364), 1, sym_comment, - [147776] = 4, - ACTIONS(3), 1, + STATE(3380), 1, + aux_sym_val_binary_repeat1, + [147947] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5202), 1, - anon_sym_SEMI, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5592), 1, + anon_sym_RBRACK, STATE(3365), 1, sym_comment, - ACTIONS(5204), 2, - ts_builtin_sym_end, - anon_sym_LF, - [147790] = 5, + STATE(3370), 1, + aux_sym_val_binary_repeat1, + [147963] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5549), 1, + ACTIONS(5357), 1, anon_sym_SEMI, - ACTIONS(5551), 1, - anon_sym_LF, - ACTIONS(5553), 1, - anon_sym_RPAREN, STATE(3366), 1, sym_comment, - [147806] = 5, - ACTIONS(143), 1, + ACTIONS(5359), 2, + ts_builtin_sym_end, + anon_sym_LF, + [147977] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5555), 1, - anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, + ACTIONS(5365), 1, + anon_sym_SEMI, STATE(3367), 1, sym_comment, - [147822] = 5, - ACTIONS(143), 1, + ACTIONS(5367), 2, + ts_builtin_sym_end, + anon_sym_LF, + [147991] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5557), 1, - anon_sym_RBRACK, - STATE(3361), 1, - aux_sym_val_binary_repeat1, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1482), 1, + aux_sym_pipe_element_repeat1, STATE(3368), 1, sym_comment, - [147838] = 5, - ACTIONS(143), 1, + [148007] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5559), 1, - anon_sym_RBRACK, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1488), 1, + aux_sym_pipe_element_repeat1, STATE(3369), 1, sym_comment, - STATE(3370), 1, - aux_sym_val_binary_repeat1, - [147854] = 5, - ACTIONS(143), 1, + [148023] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5561), 1, + ACTIONS(5594), 1, anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, STATE(3370), 1, sym_comment, - [147870] = 4, + STATE(3380), 1, + aux_sym_val_binary_repeat1, + [148039] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LPAREN, + ACTIONS(3160), 1, + anon_sym_PIPE, + ACTIONS(3976), 1, + anon_sym_LF, + STATE(1484), 1, + aux_sym_pipe_element_repeat1, STATE(3371), 1, sym_comment, - ACTIONS(5565), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [147884] = 4, - ACTIONS(3), 1, + [148055] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5569), 1, - anon_sym_LF, + ACTIONS(3869), 1, + anon_sym_PIPE, + ACTIONS(5596), 1, + anon_sym_EQ_GT, STATE(3372), 1, sym_comment, - ACTIONS(5567), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [147898] = 5, - ACTIONS(3), 1, + STATE(3375), 1, + aux_sym__match_or_pattern_repeat1, + [148071] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2023), 1, - anon_sym_RPAREN, - ACTIONS(5571), 1, - anon_sym_SEMI, - ACTIONS(5573), 1, - anon_sym_LF, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5598), 1, + anon_sym_RBRACK, STATE(3373), 1, sym_comment, - [147914] = 4, + STATE(3380), 1, + aux_sym_val_binary_repeat1, + [148087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, + ACTIONS(5600), 1, anon_sym_LF, STATE(3374), 1, sym_comment, - ACTIONS(5575), 2, + ACTIONS(2067), 2, anon_sym_SEMI, anon_sym_RPAREN, - [147928] = 4, - ACTIONS(3), 1, + [148101] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5581), 1, - anon_sym_LF, - STATE(3375), 1, + ACTIONS(4044), 1, + anon_sym_EQ_GT, + ACTIONS(5602), 1, + anon_sym_PIPE, + STATE(3375), 2, sym_comment, - ACTIONS(5579), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [147942] = 5, - ACTIONS(143), 1, + aux_sym__match_or_pattern_repeat1, + [148115] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5583), 1, + ACTIONS(5605), 1, anon_sym_RBRACK, STATE(3376), 1, sym_comment, - STATE(3383), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - [147958] = 5, - ACTIONS(143), 1, + [148131] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5482), 1, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5607), 1, + anon_sym_RBRACK, + STATE(3377), 1, + sym_comment, + STATE(3385), 1, + aux_sym_val_binary_repeat1, + [148147] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5586), 1, anon_sym_COLON, - ACTIONS(5585), 1, + ACTIONS(5609), 1, anon_sym_EQ, - STATE(3377), 1, + STATE(3378), 1, sym_comment, - STATE(3481), 1, + STATE(3599), 1, sym_param_type, - [147974] = 4, + [148163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5589), 1, + ACTIONS(2039), 1, + anon_sym_RPAREN, + ACTIONS(5611), 1, + anon_sym_SEMI, + ACTIONS(5613), 1, anon_sym_LF, - STATE(3378), 1, + STATE(3379), 1, sym_comment, - ACTIONS(5587), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [147988] = 4, - ACTIONS(143), 1, + [148179] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4034), 1, - anon_sym_EQ_GT, - ACTIONS(5591), 1, - anon_sym_PIPE, - STATE(3379), 2, + ACTIONS(5615), 1, + anon_sym_RBRACK, + ACTIONS(5617), 1, + sym_hex_digit, + STATE(3380), 2, sym_comment, - aux_sym__match_or_pattern_repeat1, - [148002] = 4, + aux_sym_val_binary_repeat1, + [148193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5594), 1, + ACTIONS(5341), 1, anon_sym_LPAREN, - STATE(3380), 1, + STATE(3381), 1, sym_comment, - ACTIONS(5596), 2, + ACTIONS(5343), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, - [148016] = 5, - ACTIONS(143), 1, + [148207] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5598), 1, - anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, - STATE(3381), 1, + ACTIONS(5622), 1, + anon_sym_LF, + STATE(3382), 1, sym_comment, - [148032] = 5, - ACTIONS(143), 1, + ACTIONS(5620), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [148221] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3892), 1, - anon_sym_PIPE, - ACTIONS(5600), 1, - anon_sym_EQ_GT, - STATE(3379), 1, - aux_sym__match_or_pattern_repeat1, - STATE(3382), 1, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5624), 1, + anon_sym_RBRACK, + STATE(3383), 1, sym_comment, - [148048] = 5, - ACTIONS(143), 1, + STATE(3389), 1, + aux_sym_val_binary_repeat1, + [148237] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5602), 1, + ACTIONS(5626), 1, anon_sym_RBRACK, - STATE(3346), 1, + STATE(3376), 1, aux_sym_val_binary_repeat1, - STATE(3383), 1, - sym_comment, - [148064] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3982), 1, - anon_sym_LF, - STATE(1466), 1, - aux_sym_pipe_element_repeat1, STATE(3384), 1, sym_comment, - [148080] = 4, - ACTIONS(3), 1, + [148253] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5604), 1, - anon_sym_LF, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5628), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, STATE(3385), 1, sym_comment, - ACTIONS(2033), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [148094] = 5, - ACTIONS(143), 1, + [148269] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5606), 1, + ACTIONS(5630), 1, anon_sym_RBRACK, - STATE(3318), 1, + STATE(3373), 1, aux_sym_val_binary_repeat1, STATE(3386), 1, sym_comment, - [148110] = 5, + [148285] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3982), 1, + ACTIONS(5632), 1, anon_sym_LF, - STATE(1472), 1, - aux_sym_pipe_element_repeat1, STATE(3387), 1, sym_comment, - [148126] = 4, + ACTIONS(2011), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [148299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5610), 1, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, anon_sym_LF, + STATE(713), 1, + sym__terminator, STATE(3388), 1, sym_comment, - ACTIONS(5608), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [148140] = 4, + [148315] = 5, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5634), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, + STATE(3389), 1, + sym_comment, + [148331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5614), 1, + ACTIONS(5638), 1, anon_sym_LF, - STATE(3389), 1, + STATE(3390), 1, sym_comment, - ACTIONS(5612), 2, + ACTIONS(5636), 2, anon_sym_SEMI, anon_sym_RPAREN, - [148154] = 4, - ACTIONS(3), 1, + [148345] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5257), 1, - anon_sym_SEMI, - STATE(3390), 1, + ACTIONS(5586), 1, + anon_sym_COLON, + ACTIONS(5640), 1, + anon_sym_EQ, + STATE(3391), 1, sym_comment, - ACTIONS(5259), 2, - ts_builtin_sym_end, - anon_sym_LF, - [148168] = 5, - ACTIONS(143), 1, + STATE(3534), 1, + sym_param_type, + [148361] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5616), 1, + ACTIONS(5642), 1, anon_sym_RBRACK, - STATE(3346), 1, + STATE(3380), 1, aux_sym_val_binary_repeat1, - STATE(3391), 1, - sym_comment, - [148184] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5618), 1, - anon_sym_LF, STATE(3392), 1, sym_comment, - ACTIONS(2013), 2, - anon_sym_SEMI, - anon_sym_RPAREN, - [148198] = 5, - ACTIONS(3), 1, + [148377] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3132), 1, - anon_sym_PIPE, - ACTIONS(3982), 1, - anon_sym_LF, - STATE(1476), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(5586), 1, + anon_sym_COLON, + ACTIONS(5644), 1, + anon_sym_EQ, STATE(3393), 1, sym_comment, - [148214] = 4, + STATE(3593), 1, + sym_param_type, + [148393] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5622), 1, + ACTIONS(5648), 1, anon_sym_LF, STATE(3394), 1, sym_comment, - ACTIONS(5620), 2, + ACTIONS(5646), 2, anon_sym_SEMI, anon_sym_RPAREN, - [148228] = 5, - ACTIONS(143), 1, + [148407] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5476), 1, - sym_hex_digit, - ACTIONS(5624), 1, - anon_sym_RBRACK, + ACTIONS(5652), 1, + anon_sym_LF, STATE(3395), 1, sym_comment, + ACTIONS(5650), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [148421] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5417), 1, + anon_sym_SEMI, STATE(3396), 1, - aux_sym_val_binary_repeat1, - [148244] = 5, - ACTIONS(143), 1, + sym_comment, + ACTIONS(5419), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148435] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5626), 1, + ACTIONS(5654), 1, anon_sym_RBRACK, - STATE(3346), 1, - aux_sym_val_binary_repeat1, - STATE(3396), 1, + STATE(3397), 1, sym_comment, - [148260] = 5, - ACTIONS(143), 1, + STATE(3404), 1, + aux_sym_val_binary_repeat1, + [148451] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5482), 1, - anon_sym_COLON, - ACTIONS(5628), 1, - anon_sym_EQ, - STATE(3397), 1, + ACTIONS(5498), 1, + anon_sym_SEMI, + STATE(3398), 1, sym_comment, - STATE(3554), 1, - sym_param_type, - [148276] = 5, - ACTIONS(143), 1, + ACTIONS(5500), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148465] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5476), 1, + ACTIONS(5538), 1, sym_hex_digit, - ACTIONS(5630), 1, + ACTIONS(5656), 1, anon_sym_RBRACK, - STATE(3391), 1, + STATE(3341), 1, aux_sym_val_binary_repeat1, - STATE(3398), 1, - sym_comment, - [148292] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(5632), 1, - anon_sym_COMMA, - ACTIONS(5634), 1, - anon_sym_RBRACE, STATE(3399), 1, sym_comment, - [148305] = 4, - ACTIONS(143), 1, + [148481] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1299), 1, - anon_sym_in, - ACTIONS(5636), 1, - sym__long_flag_identifier, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5658), 1, + anon_sym_RBRACK, STATE(3400), 1, sym_comment, - [148318] = 4, - ACTIONS(143), 1, + STATE(3406), 1, + aux_sym_val_binary_repeat1, + [148497] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_block, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5660), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, STATE(3401), 1, sym_comment, - [148331] = 3, - ACTIONS(143), 1, + [148513] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5662), 1, + anon_sym_DQUOTE, STATE(3402), 1, sym_comment, - ACTIONS(1861), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [148342] = 3, - ACTIONS(143), 1, + ACTIONS(5664), 2, + sym__escaped_str_content, + sym_escape_sequence, + [148527] = 5, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5666), 1, + anon_sym_RBRACK, + STATE(3392), 1, + aux_sym_val_binary_repeat1, STATE(3403), 1, sym_comment, - ACTIONS(1857), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [148353] = 4, - ACTIONS(143), 1, + [148543] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_block, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5668), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, STATE(3404), 1, sym_comment, - [148366] = 4, - ACTIONS(143), 1, + [148559] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(672), 1, - sym_block, + ACTIONS(5670), 1, + anon_sym_LPAREN, STATE(3405), 1, sym_comment, - [148379] = 4, - ACTIONS(143), 1, + ACTIONS(5672), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [148573] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(675), 1, - sym_block, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5674), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, STATE(3406), 1, sym_comment, - [148392] = 3, - ACTIONS(143), 1, + [148589] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5516), 1, + anon_sym_SEMI, STATE(3407), 1, sym_comment, - ACTIONS(5638), 2, - anon_sym_RBRACK, - sym_hex_digit, - [148403] = 4, - ACTIONS(143), 1, + ACTIONS(5518), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148603] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_LBRACE, - STATE(2854), 1, - sym_block, + ACTIONS(5676), 1, + anon_sym_LPAREN, STATE(3408), 1, sym_comment, - [148416] = 4, - ACTIONS(143), 1, + ACTIONS(5678), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [148617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4026), 1, - anon_sym_LBRACE, - STATE(2790), 1, - sym_block, + ACTIONS(5446), 1, + anon_sym_SEMI, STATE(3409), 1, sym_comment, - [148429] = 4, - ACTIONS(143), 1, + ACTIONS(5448), 2, + ts_builtin_sym_end, + anon_sym_LF, + [148631] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_block, + ACTIONS(5682), 1, + anon_sym_LF, STATE(3410), 1, sym_comment, - [148442] = 4, - ACTIONS(143), 1, + ACTIONS(5680), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [148645] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4028), 1, - anon_sym_LBRACE, - STATE(2952), 1, - sym_block, + ACTIONS(1745), 1, + anon_sym_SEMI, + ACTIONS(1747), 1, + anon_sym_LF, + STATE(722), 1, + sym__terminator, STATE(3411), 1, sym_comment, - [148455] = 4, - ACTIONS(143), 1, + [148661] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(669), 1, - sym_block, + ACTIONS(5686), 1, + anon_sym_LF, STATE(3412), 1, sym_comment, - [148468] = 4, - ACTIONS(143), 1, + ACTIONS(5684), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + [148675] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4026), 1, - anon_sym_LBRACE, - STATE(2784), 1, - sym_block, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5688), 1, + anon_sym_RBRACK, + STATE(3380), 1, + aux_sym_val_binary_repeat1, STATE(3413), 1, sym_comment, - [148481] = 4, - ACTIONS(143), 1, + [148691] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(664), 1, - sym_block, + ACTIONS(4145), 1, + anon_sym_EQ, + ACTIONS(5690), 1, + anon_sym_AT, + STATE(2600), 1, + sym_param_cmd, STATE(3414), 1, sym_comment, - [148494] = 4, - ACTIONS(143), 1, + [148707] = 5, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_block, + ACTIONS(5538), 1, + sym_hex_digit, + ACTIONS(5692), 1, + anon_sym_RBRACK, + STATE(3401), 1, + aux_sym_val_binary_repeat1, STATE(3415), 1, sym_comment, - [148507] = 4, - ACTIONS(143), 1, + [148723] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(686), 1, - sym_block, STATE(3416), 1, sym_comment, - [148520] = 4, - ACTIONS(143), 1, - anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(1927), 2, + anon_sym_COLON, anon_sym_LBRACE, - STATE(623), 1, - sym_block, + [148734] = 3, + ACTIONS(145), 1, + anon_sym_POUND, STATE(3417), 1, sym_comment, - [148533] = 4, - ACTIONS(143), 1, + ACTIONS(5694), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [148745] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(624), 1, + STATE(560), 1, sym_block, STATE(3418), 1, sym_comment, - [148546] = 4, - ACTIONS(143), 1, + [148758] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(685), 1, + STATE(666), 1, sym_block, STATE(3419), 1, sym_comment, - [148559] = 3, - ACTIONS(143), 1, + [148771] = 4, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(665), 1, + sym_block, STATE(3420), 1, sym_comment, - ACTIONS(1891), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [148570] = 3, - ACTIONS(143), 1, + [148784] = 4, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(4040), 1, + anon_sym_LBRACE, + STATE(3021), 1, + sym_block, STATE(3421), 1, sym_comment, - ACTIONS(1887), 2, - anon_sym_COLON, - anon_sym_LBRACE, - [148581] = 4, - ACTIONS(143), 1, + [148797] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(654), 1, + STATE(630), 1, sym_block, STATE(3422), 1, sym_comment, - [148594] = 4, - ACTIONS(143), 1, + [148810] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(597), 1, + STATE(672), 1, sym_block, STATE(3423), 1, sym_comment, - [148607] = 4, - ACTIONS(143), 1, + [148823] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_block, + ACTIONS(5696), 1, + anon_sym_DASH, STATE(3424), 1, sym_comment, - [148620] = 4, - ACTIONS(143), 1, + STATE(3511), 1, + sym_param_short_flag, + [148836] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(610), 1, + STATE(690), 1, sym_block, STATE(3425), 1, sym_comment, - [148633] = 4, - ACTIONS(143), 1, + [148849] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(4722), 1, anon_sym_LBRACE, - STATE(609), 1, - sym_block, + STATE(562), 1, + sym_val_record, STATE(3426), 1, sym_comment, - [148646] = 4, - ACTIONS(143), 1, + [148862] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(4040), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(2965), 1, sym_block, STATE(3427), 1, sym_comment, - [148659] = 4, - ACTIONS(143), 1, + [148875] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(577), 1, sym_block, STATE(3428), 1, sym_comment, - [148672] = 4, - ACTIONS(143), 1, + [148888] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5640), 1, - anon_sym_DASH, STATE(3429), 1, sym_comment, - STATE(3509), 1, - sym_param_short_flag, - [148685] = 4, - ACTIONS(143), 1, + ACTIONS(1931), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [148899] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(549), 1, + STATE(558), 1, sym_block, STATE(3430), 1, sym_comment, - [148698] = 4, - ACTIONS(143), 1, + [148912] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(614), 1, + STATE(571), 1, sym_block, STATE(3431), 1, sym_comment, - [148711] = 4, - ACTIONS(143), 1, + [148925] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(4038), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(3015), 1, sym_block, STATE(3432), 1, sym_comment, - [148724] = 4, - ACTIONS(143), 1, + [148938] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(4038), 1, anon_sym_LBRACE, - STATE(627), 1, + STATE(2810), 1, sym_block, STATE(3433), 1, sym_comment, - [148737] = 3, - ACTIONS(143), 1, + [148951] = 4, + ACTIONS(145), 1, anon_sym_POUND, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(557), 1, + sym_block, STATE(3434), 1, sym_comment, - ACTIONS(5642), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [148748] = 4, - ACTIONS(143), 1, + [148964] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(599), 1, + STATE(604), 1, sym_block, STATE(3435), 1, sym_comment, - [148761] = 4, - ACTIONS(143), 1, + [148977] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(564), 1, + STATE(606), 1, sym_block, STATE(3436), 1, sym_comment, - [148774] = 4, - ACTIONS(143), 1, + [148990] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(655), 1, + STATE(636), 1, sym_block, STATE(3437), 1, sym_comment, - [148787] = 4, - ACTIONS(143), 1, + [149003] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(684), 1, + STATE(533), 1, sym_block, STATE(3438), 1, sym_comment, - [148800] = 4, - ACTIONS(143), 1, + [149016] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(534), 1, + STATE(632), 1, sym_block, STATE(3439), 1, sym_comment, - [148813] = 4, - ACTIONS(143), 1, + [149029] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(613), 1, + STATE(576), 1, sym_block, STATE(3440), 1, sym_comment, - [148826] = 4, - ACTIONS(143), 1, + [149042] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(535), 1, + STATE(678), 1, sym_block, STATE(3441), 1, sym_comment, - [148839] = 4, - ACTIONS(143), 1, + [149055] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3775), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(678), 1, + STATE(566), 1, sym_block, STATE(3442), 1, sym_comment, - [148852] = 4, - ACTIONS(143), 1, + [149068] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4712), 1, + ACTIONS(3731), 1, anon_sym_LBRACE, - STATE(680), 1, - sym_val_record, + STATE(534), 1, + sym_block, STATE(3443), 1, sym_comment, - [148865] = 4, - ACTIONS(143), 1, + [149081] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3693), 1, - anon_sym_LBRACE, - STATE(596), 1, - sym_block, + ACTIONS(5698), 1, + anon_sym_COMMA, + ACTIONS(5700), 1, + anon_sym_RBRACE, STATE(3444), 1, sym_comment, - [148878] = 4, - ACTIONS(143), 1, + [149094] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(4720), 1, + ACTIONS(3681), 1, anon_sym_LBRACE, - STATE(556), 1, - sym_val_record, + STATE(671), 1, + sym_block, STATE(3445), 1, sym_comment, - [148891] = 3, - ACTIONS(143), 1, + [149107] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5644), 1, - anon_sym_in, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(642), 1, + sym_block, STATE(3446), 1, sym_comment, - [148901] = 3, - ACTIONS(143), 1, + [149120] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5646), 1, - anon_sym_RBRACE, STATE(3447), 1, sym_comment, - [148911] = 3, - ACTIONS(143), 1, + ACTIONS(1809), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [149131] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5648), 1, - anon_sym_RBRACE, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(641), 1, + sym_block, STATE(3448), 1, sym_comment, - [148921] = 3, - ACTIONS(143), 1, + [149144] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5650), 1, - anon_sym_RPAREN, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_block, STATE(3449), 1, sym_comment, - [148931] = 3, - ACTIONS(143), 1, + [149157] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5652), 1, - anon_sym_RPAREN, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(619), 1, + sym_block, STATE(3450), 1, sym_comment, - [148941] = 3, - ACTIONS(143), 1, + [149170] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(3243), 1, - anon_sym_PIPE, + ACTIONS(4740), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_val_record, STATE(3451), 1, sym_comment, - [148951] = 3, - ACTIONS(143), 1, + [149183] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5654), 1, - anon_sym_EQ, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(559), 1, + sym_block, STATE(3452), 1, sym_comment, - [148961] = 3, - ACTIONS(143), 1, + [149196] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5656), 1, - anon_sym_RPAREN, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(695), 1, + sym_block, STATE(3453), 1, sym_comment, - [148971] = 3, - ACTIONS(143), 1, + [149209] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5658), 1, - anon_sym_EQ, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_block, STATE(3454), 1, sym_comment, - [148981] = 3, - ACTIONS(143), 1, + [149222] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5660), 1, - anon_sym_RBRACE, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(556), 1, + sym_block, STATE(3455), 1, sym_comment, - [148991] = 3, - ACTIONS(143), 1, + [149235] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5662), 1, - anon_sym_RPAREN, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_block, STATE(3456), 1, sym_comment, - [149001] = 3, - ACTIONS(143), 1, + [149248] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5664), 1, - anon_sym_RPAREN, + ACTIONS(4038), 1, + anon_sym_LBRACE, + STATE(2801), 1, + sym_block, STATE(3457), 1, sym_comment, - [149011] = 3, - ACTIONS(143), 1, + [149261] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5666), 1, - anon_sym_RPAREN, STATE(3458), 1, sym_comment, - [149021] = 3, - ACTIONS(143), 1, + ACTIONS(5702), 2, + anon_sym_RBRACK, + sym_hex_digit, + [149272] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5668), 1, - ts_builtin_sym_end, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(664), 1, + sym_block, STATE(3459), 1, sym_comment, - [149031] = 3, - ACTIONS(143), 1, + [149285] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5670), 1, - anon_sym_RPAREN, + ACTIONS(4038), 1, + anon_sym_LBRACE, + STATE(2861), 1, + sym_block, STATE(3460), 1, sym_comment, - [149041] = 3, - ACTIONS(143), 1, + [149298] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5672), 1, - anon_sym_RBRACE, + ACTIONS(1307), 1, + anon_sym_in, + ACTIONS(5704), 1, + sym__long_flag_identifier, STATE(3461), 1, sym_comment, - [149051] = 3, - ACTIONS(143), 1, + [149311] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5674), 1, - anon_sym_RPAREN, STATE(3462), 1, sym_comment, - [149061] = 3, - ACTIONS(143), 1, + ACTIONS(1817), 2, + anon_sym_COLON, + anon_sym_LBRACE, + [149322] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5676), 1, - anon_sym_RPAREN, + ACTIONS(3681), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym_block, STATE(3463), 1, sym_comment, - [149071] = 3, - ACTIONS(143), 1, + [149335] = 4, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5678), 1, - anon_sym_RPAREN, + ACTIONS(3731), 1, + anon_sym_LBRACE, + STATE(583), 1, + sym_block, STATE(3464), 1, sym_comment, - [149081] = 3, - ACTIONS(143), 1, + [149348] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5680), 1, - anon_sym_SEMI, + ACTIONS(5706), 1, + anon_sym_DOT, STATE(3465), 1, sym_comment, - [149091] = 3, - ACTIONS(143), 1, + [149358] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5682), 1, - anon_sym_RBRACE, + ACTIONS(5708), 1, + anon_sym_RPAREN, STATE(3466), 1, sym_comment, - [149101] = 3, - ACTIONS(143), 1, + [149368] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5684), 1, - anon_sym_RBRACE, + ACTIONS(3244), 1, + anon_sym_PIPE, STATE(3467), 1, sym_comment, - [149111] = 3, - ACTIONS(143), 1, + [149378] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5686), 1, - anon_sym_EQ, + ACTIONS(5710), 1, + anon_sym_EQ_GT, STATE(3468), 1, sym_comment, - [149121] = 3, - ACTIONS(143), 1, + [149388] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5688), 1, - anon_sym_EQ_GT, + ACTIONS(5712), 1, + anon_sym_RBRACE, STATE(3469), 1, sym_comment, - [149131] = 3, - ACTIONS(143), 1, + [149398] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5690), 1, - anon_sym_RPAREN, + ACTIONS(5714), 1, + anon_sym_EQ, STATE(3470), 1, sym_comment, - [149141] = 3, - ACTIONS(143), 1, + [149408] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5692), 1, - anon_sym_EQ, + ACTIONS(5716), 1, + anon_sym_RPAREN, STATE(3471), 1, sym_comment, - [149151] = 3, - ACTIONS(143), 1, + [149418] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2483), 1, - anon_sym_RBRACE, + ACTIONS(5718), 1, + anon_sym_EQ_GT, STATE(3472), 1, sym_comment, - [149161] = 3, - ACTIONS(143), 1, + [149428] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5694), 1, - anon_sym_EQ_GT, + ACTIONS(5720), 1, + anon_sym_RPAREN, STATE(3473), 1, sym_comment, - [149171] = 3, - ACTIONS(143), 1, + [149438] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5696), 1, - anon_sym_EQ_GT, + ACTIONS(5722), 1, + anon_sym_EQ, STATE(3474), 1, sym_comment, - [149181] = 3, - ACTIONS(143), 1, + [149448] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5698), 1, - anon_sym_RPAREN, + ACTIONS(5724), 1, + anon_sym_EQ, STATE(3475), 1, sym_comment, - [149191] = 3, - ACTIONS(143), 1, + [149458] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5700), 1, - anon_sym_EQ_GT, + ACTIONS(5726), 1, + anon_sym_RPAREN, STATE(3476), 1, sym_comment, - [149201] = 3, - ACTIONS(143), 1, + [149468] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5702), 1, - anon_sym_RPAREN, + ACTIONS(5728), 1, + anon_sym_EQ, STATE(3477), 1, sym_comment, - [149211] = 3, - ACTIONS(143), 1, + [149478] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5704), 1, - anon_sym_RBRACE, + ACTIONS(5730), 1, + anon_sym_EQ_GT, STATE(3478), 1, sym_comment, - [149221] = 3, - ACTIONS(143), 1, + [149488] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5706), 1, + ACTIONS(5732), 1, anon_sym_RBRACE, STATE(3479), 1, sym_comment, - [149231] = 3, - ACTIONS(143), 1, + [149498] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(2343), 1, - anon_sym_RBRACE, + ACTIONS(5734), 1, + anon_sym_RPAREN, STATE(3480), 1, sym_comment, - [149241] = 3, - ACTIONS(143), 1, + [149508] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5708), 1, - anon_sym_EQ, + ACTIONS(5736), 1, + anon_sym_RPAREN, STATE(3481), 1, sym_comment, - [149251] = 3, - ACTIONS(143), 1, + [149518] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5710), 1, - anon_sym_RPAREN, + ACTIONS(5738), 1, + anon_sym_EQ_GT, STATE(3482), 1, sym_comment, - [149261] = 3, - ACTIONS(143), 1, + [149528] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5712), 1, + ACTIONS(5740), 1, anon_sym_RPAREN, STATE(3483), 1, sym_comment, - [149271] = 3, - ACTIONS(143), 1, + [149538] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5714), 1, - anon_sym_DASH_GT, + ACTIONS(2487), 1, + anon_sym_RBRACE, STATE(3484), 1, sym_comment, - [149281] = 3, - ACTIONS(143), 1, + [149548] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5716), 1, - anon_sym_RBRACE, + ACTIONS(5742), 1, + anon_sym_RPAREN, STATE(3485), 1, sym_comment, - [149291] = 3, - ACTIONS(143), 1, + [149558] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5718), 1, - anon_sym_GT, + ACTIONS(5744), 1, + anon_sym_EQ_GT, STATE(3486), 1, sym_comment, - [149301] = 3, - ACTIONS(143), 1, + [149568] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5720), 1, - anon_sym_in, + ACTIONS(5746), 1, + anon_sym_RPAREN, STATE(3487), 1, sym_comment, - [149311] = 3, - ACTIONS(143), 1, + [149578] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, + ACTIONS(5748), 1, + anon_sym_RBRACE, STATE(3488), 1, sym_comment, - [149321] = 3, - ACTIONS(3), 1, + [149588] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5724), 1, - aux_sym_comment_token1, + ACTIONS(5750), 1, + anon_sym_DOLLAR, STATE(3489), 1, sym_comment, - [149331] = 3, - ACTIONS(143), 1, + [149598] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_make, + ACTIONS(1449), 1, + anon_sym_in, STATE(3490), 1, sym_comment, - [149341] = 3, - ACTIONS(143), 1, + [149608] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5728), 1, - sym_cmd_identifier, + ACTIONS(1461), 1, + anon_sym_in, STATE(3491), 1, sym_comment, - [149351] = 3, - ACTIONS(143), 1, + [149618] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5730), 1, - anon_sym_LBRACK2, + ACTIONS(5752), 1, + anon_sym_EQ, STATE(3492), 1, sym_comment, - [149361] = 3, - ACTIONS(143), 1, + [149628] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5732), 1, - sym_identifier, + ACTIONS(5754), 1, + anon_sym_EQ, STATE(3493), 1, sym_comment, - [149371] = 3, - ACTIONS(143), 1, + [149638] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5734), 1, - sym_identifier, + ACTIONS(5756), 1, + anon_sym_RPAREN, STATE(3494), 1, sym_comment, - [149381] = 3, - ACTIONS(143), 1, + [149648] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5736), 1, - sym__long_flag_identifier, + ACTIONS(5758), 1, + anon_sym_RBRACK, STATE(3495), 1, sym_comment, - [149391] = 3, - ACTIONS(143), 1, + [149658] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5738), 1, - aux_sym_param_short_flag_token1, + ACTIONS(5760), 1, + anon_sym_SEMI, STATE(3496), 1, sym_comment, - [149401] = 3, - ACTIONS(143), 1, + [149668] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5740), 1, - anon_sym_EQ, + ACTIONS(5762), 1, + anon_sym_RPAREN, STATE(3497), 1, sym_comment, - [149411] = 3, - ACTIONS(143), 1, + [149678] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_RPAREN, + ACTIONS(5764), 1, + anon_sym_RBRACE, STATE(3498), 1, sym_comment, - [149421] = 3, - ACTIONS(143), 1, + [149688] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5744), 1, - anon_sym_RBRACE, + ACTIONS(5766), 1, + anon_sym_RPAREN, STATE(3499), 1, sym_comment, - [149431] = 3, - ACTIONS(143), 1, + [149698] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5746), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, STATE(3500), 1, sym_comment, - [149441] = 3, - ACTIONS(143), 1, + [149708] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5748), 1, - anon_sym_RBRACE, + ACTIONS(5770), 1, + anon_sym_RPAREN, STATE(3501), 1, sym_comment, - [149451] = 3, - ACTIONS(143), 1, + [149718] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5750), 1, - anon_sym_RBRACE, + ACTIONS(5772), 1, + anon_sym_RPAREN, STATE(3502), 1, sym_comment, - [149461] = 3, - ACTIONS(143), 1, + [149728] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5752), 1, - sym_cmd_identifier, + ACTIONS(5774), 1, + anon_sym_RBRACE, STATE(3503), 1, sym_comment, - [149471] = 3, - ACTIONS(143), 1, + [149738] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5754), 1, - anon_sym_EQ, + ACTIONS(5776), 1, + anon_sym_RPAREN, STATE(3504), 1, sym_comment, - [149481] = 3, - ACTIONS(143), 1, + [149748] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5756), 1, + ACTIONS(5778), 1, anon_sym_RPAREN, STATE(3505), 1, sym_comment, - [149491] = 3, - ACTIONS(143), 1, + [149758] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5758), 1, - anon_sym_LBRACK2, + ACTIONS(5780), 1, + anon_sym_EQ, STATE(3506), 1, sym_comment, - [149501] = 3, - ACTIONS(143), 1, + [149768] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5760), 1, - anon_sym_RPAREN, + ACTIONS(5782), 1, + anon_sym_DOT, STATE(3507), 1, sym_comment, - [149511] = 3, - ACTIONS(143), 1, + [149778] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5762), 1, - anon_sym_RPAREN, + ACTIONS(5784), 1, + anon_sym_RBRACE, STATE(3508), 1, sym_comment, - [149521] = 3, - ACTIONS(143), 1, + [149788] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5764), 1, + ACTIONS(5786), 1, anon_sym_RPAREN, STATE(3509), 1, sym_comment, - [149531] = 3, - ACTIONS(143), 1, + [149798] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5766), 1, - anon_sym_EQ, + ACTIONS(5788), 1, + anon_sym_RBRACE, STATE(3510), 1, sym_comment, - [149541] = 3, - ACTIONS(143), 1, + [149808] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5768), 1, - anon_sym_LBRACK2, + ACTIONS(5790), 1, + anon_sym_RPAREN, STATE(3511), 1, sym_comment, - [149551] = 3, - ACTIONS(143), 1, + [149818] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5770), 1, - anon_sym_RPAREN, + ACTIONS(5792), 1, + aux_sym_comment_token1, STATE(3512), 1, sym_comment, - [149561] = 3, - ACTIONS(143), 1, + [149828] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5772), 1, - anon_sym_RPAREN, + ACTIONS(5794), 1, + anon_sym_make, STATE(3513), 1, sym_comment, - [149571] = 3, - ACTIONS(143), 1, + [149838] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5774), 1, - anon_sym_RBRACE, + ACTIONS(5796), 1, + anon_sym_RPAREN, STATE(3514), 1, sym_comment, - [149581] = 3, - ACTIONS(143), 1, + [149848] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5776), 1, - anon_sym_EQ, + ACTIONS(5798), 1, + anon_sym_LBRACK2, STATE(3515), 1, sym_comment, - [149591] = 3, - ACTIONS(143), 1, + [149858] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5778), 1, - anon_sym_LBRACK2, + ACTIONS(5800), 1, + anon_sym_RPAREN, STATE(3516), 1, sym_comment, - [149601] = 3, - ACTIONS(143), 1, + [149868] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5780), 1, - anon_sym_RPAREN, + ACTIONS(5802), 1, + anon_sym_in, STATE(3517), 1, sym_comment, - [149611] = 3, - ACTIONS(143), 1, + [149878] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5782), 1, - anon_sym_LBRACE, + ACTIONS(5804), 1, + anon_sym_DOLLAR, STATE(3518), 1, sym_comment, - [149621] = 3, - ACTIONS(143), 1, + [149888] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5784), 1, - anon_sym_GT, + ACTIONS(5806), 1, + anon_sym_RBRACE, STATE(3519), 1, sym_comment, - [149631] = 3, - ACTIONS(143), 1, + [149898] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1392), 1, - anon_sym_in, + ACTIONS(5808), 1, + anon_sym_RPAREN, STATE(3520), 1, sym_comment, - [149641] = 3, - ACTIONS(143), 1, + [149908] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5786), 1, - anon_sym_LBRACK2, + ACTIONS(5810), 1, + anon_sym_RBRACE, STATE(3521), 1, sym_comment, - [149651] = 3, - ACTIONS(143), 1, + [149918] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5788), 1, - anon_sym_RBRACE, + ACTIONS(5812), 1, + anon_sym_RPAREN, STATE(3522), 1, sym_comment, - [149661] = 3, - ACTIONS(143), 1, + [149928] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5790), 1, - anon_sym_EQ, + ACTIONS(5814), 1, + anon_sym_RBRACE, STATE(3523), 1, sym_comment, - [149671] = 3, - ACTIONS(143), 1, + [149938] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5792), 1, + ACTIONS(5816), 1, anon_sym_RPAREN, STATE(3524), 1, sym_comment, - [149681] = 3, - ACTIONS(143), 1, + [149948] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5794), 1, - anon_sym_DOT, + ACTIONS(5818), 1, + sym_identifier, STATE(3525), 1, sym_comment, - [149691] = 3, - ACTIONS(143), 1, + [149958] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5796), 1, - anon_sym_LBRACK2, + ACTIONS(5820), 1, + anon_sym_GT, STATE(3526), 1, sym_comment, - [149701] = 3, - ACTIONS(143), 1, + [149968] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5798), 1, - anon_sym_LBRACE, + ACTIONS(5822), 1, + anon_sym_LBRACK2, STATE(3527), 1, sym_comment, - [149711] = 3, - ACTIONS(143), 1, + [149978] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5800), 1, + ACTIONS(5824), 1, anon_sym_RBRACE, STATE(3528), 1, sym_comment, - [149721] = 3, - ACTIONS(143), 1, + [149988] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5802), 1, - anon_sym_RBRACE, + ACTIONS(5826), 1, + anon_sym_RPAREN, STATE(3529), 1, sym_comment, - [149731] = 3, - ACTIONS(143), 1, + [149998] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5804), 1, - anon_sym_RPAREN, + ACTIONS(5828), 1, + anon_sym_LBRACE, STATE(3530), 1, sym_comment, - [149741] = 3, - ACTIONS(143), 1, + [150008] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5806), 1, - anon_sym_LBRACK2, + ACTIONS(5830), 1, + anon_sym_EQ, STATE(3531), 1, sym_comment, - [149751] = 3, - ACTIONS(143), 1, + [150018] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5808), 1, - anon_sym_EQ, + ACTIONS(5832), 1, + anon_sym_LBRACK2, STATE(3532), 1, sym_comment, - [149761] = 3, - ACTIONS(143), 1, + [150028] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(265), 1, - ts_builtin_sym_end, + ACTIONS(5834), 1, + anon_sym_RPAREN, STATE(3533), 1, sym_comment, - [149771] = 3, - ACTIONS(143), 1, + [150038] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5810), 1, - anon_sym_RPAREN, + ACTIONS(5836), 1, + anon_sym_EQ, STATE(3534), 1, sym_comment, - [149781] = 3, - ACTIONS(143), 1, + [150048] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5812), 1, - anon_sym_SEMI, + ACTIONS(5838), 1, + sym_identifier, STATE(3535), 1, sym_comment, - [149791] = 3, - ACTIONS(143), 1, + [150058] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5814), 1, - anon_sym_LBRACK2, + ACTIONS(5840), 1, + anon_sym_EQ, STATE(3536), 1, sym_comment, - [149801] = 3, - ACTIONS(143), 1, + [150068] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5816), 1, - anon_sym_COLON, + ACTIONS(5842), 1, + anon_sym_LBRACK2, STATE(3537), 1, sym_comment, - [149811] = 3, - ACTIONS(143), 1, + [150078] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5818), 1, - anon_sym_RBRACE, + ACTIONS(5844), 1, + sym_identifier, STATE(3538), 1, sym_comment, - [149821] = 3, - ACTIONS(143), 1, + [150088] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5820), 1, - ts_builtin_sym_end, + ACTIONS(5846), 1, + sym_identifier, STATE(3539), 1, sym_comment, - [149831] = 3, - ACTIONS(143), 1, + [150098] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5822), 1, - sym_cmd_identifier, + ACTIONS(5848), 1, + sym__long_flag_identifier, STATE(3540), 1, sym_comment, - [149841] = 3, - ACTIONS(143), 1, + [150108] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5824), 1, - anon_sym_LBRACK2, + ACTIONS(5850), 1, + anon_sym_else, STATE(3541), 1, sym_comment, - [149851] = 3, - ACTIONS(143), 1, + [150118] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5826), 1, - anon_sym_DOT, + ACTIONS(5852), 1, + anon_sym_LBRACK2, STATE(3542), 1, sym_comment, - [149861] = 3, - ACTIONS(143), 1, + [150128] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5828), 1, - anon_sym_DOLLAR, + ACTIONS(5854), 1, + aux_sym_param_short_flag_token1, STATE(3543), 1, sym_comment, - [149871] = 3, - ACTIONS(143), 1, + [150138] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5830), 1, - anon_sym_RBRACE, + ACTIONS(5856), 1, + anon_sym_EQ, STATE(3544), 1, sym_comment, - [149881] = 3, - ACTIONS(143), 1, + [150148] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5832), 1, - anon_sym_RBRACE, + ACTIONS(5858), 1, + anon_sym_in, STATE(3545), 1, sym_comment, - [149891] = 3, - ACTIONS(143), 1, + [150158] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5834), 1, - anon_sym_LBRACK2, + ACTIONS(5860), 1, + anon_sym_DOT, STATE(3546), 1, sym_comment, - [149901] = 3, - ACTIONS(143), 1, + [150168] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5836), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, STATE(3547), 1, sym_comment, - [149911] = 3, - ACTIONS(143), 1, + [150178] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5838), 1, - anon_sym_DOLLAR, + ACTIONS(5864), 1, + sym_cmd_identifier, STATE(3548), 1, sym_comment, - [149921] = 3, - ACTIONS(143), 1, + [150188] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5840), 1, - sym_identifier, + ACTIONS(5866), 1, + anon_sym_DASH_GT, STATE(3549), 1, sym_comment, - [149931] = 3, - ACTIONS(143), 1, + [150198] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5842), 1, - anon_sym_RPAREN, + ACTIONS(5868), 1, + anon_sym_RBRACE, STATE(3550), 1, sym_comment, - [149941] = 3, - ACTIONS(143), 1, + [150208] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5844), 1, - anon_sym_LBRACK2, + ACTIONS(5870), 1, + anon_sym_RBRACE, STATE(3551), 1, sym_comment, - [149951] = 3, - ACTIONS(143), 1, + [150218] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5846), 1, - sym_identifier, + ACTIONS(5872), 1, + anon_sym_LBRACK2, STATE(3552), 1, sym_comment, - [149961] = 3, - ACTIONS(143), 1, + [150228] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5848), 1, - anon_sym_RBRACK, + ACTIONS(5874), 1, + anon_sym_SEMI, STATE(3553), 1, sym_comment, - [149971] = 3, - ACTIONS(143), 1, + [150238] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5850), 1, - anon_sym_EQ, + ACTIONS(265), 1, + ts_builtin_sym_end, STATE(3554), 1, sym_comment, - [149981] = 3, - ACTIONS(143), 1, + [150248] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5852), 1, - anon_sym_EQ, + ACTIONS(5876), 1, + anon_sym_COLON, STATE(3555), 1, sym_comment, - [149991] = 3, - ACTIONS(143), 1, + [150258] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5854), 1, - anon_sym_LBRACK2, + ACTIONS(5878), 1, + anon_sym_RPAREN, STATE(3556), 1, sym_comment, - [150001] = 3, - ACTIONS(143), 1, + [150268] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5856), 1, - anon_sym_RBRACK, + ACTIONS(5880), 1, + anon_sym_LBRACK2, STATE(3557), 1, sym_comment, - [150011] = 3, - ACTIONS(143), 1, + [150278] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5858), 1, - anon_sym_EQ_GT, + ACTIONS(5882), 1, + anon_sym_RPAREN, STATE(3558), 1, sym_comment, - [150021] = 3, - ACTIONS(143), 1, + [150288] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5860), 1, - anon_sym_EQ, + ACTIONS(5884), 1, + anon_sym_RBRACE, STATE(3559), 1, sym_comment, - [150031] = 3, - ACTIONS(143), 1, + [150298] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5862), 1, - anon_sym_RBRACE, + ACTIONS(5886), 1, + ts_builtin_sym_end, STATE(3560), 1, sym_comment, - [150041] = 3, - ACTIONS(143), 1, + [150308] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5864), 1, - anon_sym_LBRACK2, + ACTIONS(5888), 1, + sym_cmd_identifier, STATE(3561), 1, sym_comment, - [150051] = 3, - ACTIONS(143), 1, + [150318] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_EQ_GT, + ACTIONS(5890), 1, + anon_sym_LBRACK2, STATE(3562), 1, sym_comment, - [150061] = 3, - ACTIONS(143), 1, + [150328] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5868), 1, + ACTIONS(5892), 1, anon_sym_RPAREN, STATE(3563), 1, sym_comment, - [150071] = 3, - ACTIONS(143), 1, + [150338] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5870), 1, - anon_sym_RPAREN, + ACTIONS(5894), 1, + anon_sym_RBRACE, STATE(3564), 1, sym_comment, - [150081] = 3, - ACTIONS(143), 1, + [150348] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5872), 1, - anon_sym_RPAREN, + ACTIONS(5896), 1, + anon_sym_RBRACK, STATE(3565), 1, sym_comment, - [150091] = 3, - ACTIONS(143), 1, + [150358] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_LBRACK2, + ACTIONS(5898), 1, + anon_sym_RPAREN, STATE(3566), 1, sym_comment, - [150101] = 3, - ACTIONS(143), 1, + [150368] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5876), 1, - anon_sym_RBRACE, + ACTIONS(5900), 1, + anon_sym_LBRACK2, STATE(3567), 1, sym_comment, - [150111] = 3, - ACTIONS(143), 1, + [150378] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5878), 1, - anon_sym_RPAREN, + ACTIONS(5902), 1, + anon_sym_LBRACK2, STATE(3568), 1, sym_comment, - [150121] = 3, - ACTIONS(143), 1, + [150388] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5880), 1, - anon_sym_LPAREN2, + ACTIONS(5904), 1, + anon_sym_RBRACE, STATE(3569), 1, sym_comment, - [150131] = 3, - ACTIONS(143), 1, + [150398] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5882), 1, - anon_sym_LBRACK2, + ACTIONS(5906), 1, + anon_sym_RPAREN, STATE(3570), 1, sym_comment, - [150141] = 3, - ACTIONS(143), 1, + [150408] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5884), 1, - anon_sym_make, + ACTIONS(5828), 1, + anon_sym_LBRACE, STATE(3571), 1, sym_comment, - [150151] = 3, - ACTIONS(143), 1, + [150418] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5886), 1, - anon_sym_RPAREN, + ACTIONS(5908), 1, + anon_sym_LBRACK2, STATE(3572), 1, sym_comment, - [150161] = 3, - ACTIONS(143), 1, + [150428] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5888), 1, - anon_sym_DASH_GT, + ACTIONS(5910), 1, + anon_sym_RBRACE, STATE(3573), 1, sym_comment, - [150171] = 3, - ACTIONS(143), 1, + [150438] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_LBRACE, + ACTIONS(5912), 1, + anon_sym_RPAREN, STATE(3574), 1, sym_comment, - [150181] = 3, - ACTIONS(143), 1, + [150448] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5892), 1, - anon_sym_RPAREN, + ACTIONS(5914), 1, + anon_sym_EQ_GT, STATE(3575), 1, sym_comment, - [150191] = 3, - ACTIONS(143), 1, + [150458] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5894), 1, + ACTIONS(5916), 1, anon_sym_RBRACE, STATE(3576), 1, sym_comment, - [150201] = 3, - ACTIONS(143), 1, + [150468] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5890), 1, - anon_sym_LBRACE, + ACTIONS(5918), 1, + anon_sym_LBRACK2, STATE(3577), 1, sym_comment, - [150211] = 3, - ACTIONS(143), 1, + [150478] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5896), 1, - anon_sym_RPAREN, + ACTIONS(5920), 1, + anon_sym_RBRACE, STATE(3578), 1, sym_comment, - [150221] = 3, - ACTIONS(143), 1, + [150488] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5898), 1, - anon_sym_RPAREN, + ACTIONS(5922), 1, + anon_sym_EQ, STATE(3579), 1, sym_comment, - [150231] = 3, - ACTIONS(143), 1, + [150498] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5900), 1, - anon_sym_RBRACE, + ACTIONS(5924), 1, + anon_sym_RPAREN, STATE(3580), 1, sym_comment, - [150241] = 3, - ACTIONS(143), 1, + [150508] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5902), 1, + ACTIONS(5926), 1, anon_sym_RPAREN, STATE(3581), 1, sym_comment, - [150251] = 3, - ACTIONS(143), 1, + [150518] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5904), 1, - anon_sym_RPAREN, + ACTIONS(5928), 1, + anon_sym_LBRACK2, STATE(3582), 1, sym_comment, - [150261] = 3, - ACTIONS(143), 1, + [150528] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5906), 1, - anon_sym_RBRACE, + ACTIONS(5930), 1, + anon_sym_RPAREN, STATE(3583), 1, sym_comment, - [150271] = 3, - ACTIONS(143), 1, + [150538] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5908), 1, - anon_sym_LPAREN2, + ACTIONS(5932), 1, + anon_sym_RBRACE, STATE(3584), 1, sym_comment, - [150281] = 3, - ACTIONS(3), 1, + [150548] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5910), 1, - aux_sym_shebang_token1, + ACTIONS(5934), 1, + anon_sym_RBRACE, STATE(3585), 1, sym_comment, - [150291] = 3, - ACTIONS(143), 1, + [150558] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5912), 1, - anon_sym_RPAREN, + ACTIONS(5936), 1, + anon_sym_LBRACE, STATE(3586), 1, sym_comment, - [150301] = 3, - ACTIONS(143), 1, + [150568] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5914), 1, - anon_sym_RPAREN, + ACTIONS(5938), 1, + anon_sym_LBRACK2, STATE(3587), 1, sym_comment, - [150311] = 3, - ACTIONS(143), 1, + [150578] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5916), 1, - anon_sym_in, + ACTIONS(5940), 1, + anon_sym_RBRACE, STATE(3588), 1, sym_comment, - [150321] = 3, - ACTIONS(143), 1, + [150588] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5918), 1, - anon_sym_EQ, + ACTIONS(5942), 1, + ts_builtin_sym_end, STATE(3589), 1, sym_comment, - [150331] = 3, - ACTIONS(143), 1, + [150598] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5920), 1, - anon_sym_in, + ACTIONS(5944), 1, + anon_sym_LPAREN2, STATE(3590), 1, sym_comment, - [150341] = 3, - ACTIONS(143), 1, + [150608] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5922), 1, - anon_sym_RBRACE, + ACTIONS(5946), 1, + anon_sym_LBRACK2, STATE(3591), 1, sym_comment, - [150351] = 3, - ACTIONS(143), 1, + [150618] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5924), 1, - anon_sym_RPAREN, + ACTIONS(5948), 1, + anon_sym_make, STATE(3592), 1, sym_comment, - [150361] = 3, - ACTIONS(143), 1, + [150628] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(1404), 1, - anon_sym_in, + ACTIONS(5950), 1, + anon_sym_EQ, STATE(3593), 1, sym_comment, - [150371] = 3, - ACTIONS(143), 1, + [150638] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5926), 1, - anon_sym_LPAREN2, + ACTIONS(5952), 1, + anon_sym_RBRACE, STATE(3594), 1, sym_comment, - [150381] = 3, - ACTIONS(143), 1, + [150648] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5928), 1, - anon_sym_LPAREN2, + ACTIONS(5954), 1, + anon_sym_DASH_GT, STATE(3595), 1, sym_comment, - [150391] = 3, - ACTIONS(143), 1, + [150658] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5930), 1, - anon_sym_LPAREN2, + ACTIONS(5956), 1, + anon_sym_GT, STATE(3596), 1, sym_comment, - [150401] = 3, - ACTIONS(143), 1, + [150668] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5932), 1, - anon_sym_LPAREN2, + ACTIONS(5958), 1, + anon_sym_RPAREN, STATE(3597), 1, sym_comment, - [150411] = 3, - ACTIONS(143), 1, + [150678] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_LPAREN2, + ACTIONS(5960), 1, + anon_sym_RPAREN, STATE(3598), 1, sym_comment, - [150421] = 3, - ACTIONS(143), 1, + [150688] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5936), 1, - anon_sym_LPAREN2, + ACTIONS(5962), 1, + anon_sym_EQ, STATE(3599), 1, sym_comment, - [150431] = 3, - ACTIONS(143), 1, + [150698] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_LPAREN2, + ACTIONS(5964), 1, + anon_sym_RBRACE, STATE(3600), 1, sym_comment, - [150441] = 3, - ACTIONS(143), 1, + [150708] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5940), 1, - anon_sym_LPAREN2, + ACTIONS(5966), 1, + sym_cmd_identifier, STATE(3601), 1, sym_comment, - [150451] = 3, - ACTIONS(143), 1, + [150718] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_LPAREN2, + ACTIONS(5968), 1, + anon_sym_RPAREN, STATE(3602), 1, sym_comment, - [150461] = 3, - ACTIONS(143), 1, + [150728] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5944), 1, - anon_sym_LPAREN2, + ACTIONS(5970), 1, + anon_sym_RBRACE, STATE(3603), 1, sym_comment, - [150471] = 3, - ACTIONS(143), 1, + [150738] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5946), 1, - anon_sym_LPAREN2, + ACTIONS(5972), 1, + anon_sym_RPAREN, STATE(3604), 1, sym_comment, - [150481] = 3, - ACTIONS(143), 1, + [150748] = 3, + ACTIONS(145), 1, anon_sym_POUND, - ACTIONS(5948), 1, + ACTIONS(5974), 1, anon_sym_LPAREN2, STATE(3605), 1, sym_comment, - [150491] = 3, - ACTIONS(143), 1, + [150758] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5950), 1, - anon_sym_RBRACE, + ACTIONS(5976), 1, + aux_sym_shebang_token1, STATE(3606), 1, sym_comment, - [150501] = 1, - ACTIONS(5952), 1, + [150768] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5978), 1, + anon_sym_EQ, + STATE(3607), 1, + sym_comment, + [150778] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5980), 1, + anon_sym_catch, + STATE(3608), 1, + sym_comment, + [150788] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5982), 1, + anon_sym_in, + STATE(3609), 1, + sym_comment, + [150798] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5984), 1, + anon_sym_RBRACE, + STATE(3610), 1, + sym_comment, + [150808] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5986), 1, + anon_sym_in, + STATE(3611), 1, + sym_comment, + [150818] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(2493), 1, + anon_sym_RBRACE, + STATE(3612), 1, + sym_comment, + [150828] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5988), 1, + anon_sym_RPAREN, + STATE(3613), 1, + sym_comment, + [150838] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5990), 1, + anon_sym_LBRACE, + STATE(3614), 1, + sym_comment, + [150848] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5992), 1, + anon_sym_LPAREN2, + STATE(3615), 1, + sym_comment, + [150858] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5994), 1, + anon_sym_LPAREN2, + STATE(3616), 1, + sym_comment, + [150868] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5996), 1, + anon_sym_LPAREN2, + STATE(3617), 1, + sym_comment, + [150878] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(5998), 1, + anon_sym_LPAREN2, + STATE(3618), 1, + sym_comment, + [150888] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + STATE(3619), 1, + sym_comment, + [150898] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6002), 1, + anon_sym_LPAREN2, + STATE(3620), 1, + sym_comment, + [150908] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6004), 1, + anon_sym_LPAREN2, + STATE(3621), 1, + sym_comment, + [150918] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6006), 1, + anon_sym_LPAREN2, + STATE(3622), 1, + sym_comment, + [150928] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6008), 1, + anon_sym_LPAREN2, + STATE(3623), 1, + sym_comment, + [150938] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6010), 1, + anon_sym_LPAREN2, + STATE(3624), 1, + sym_comment, + [150948] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6012), 1, + anon_sym_LPAREN2, + STATE(3625), 1, + sym_comment, + [150958] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6014), 1, + anon_sym_LPAREN2, + STATE(3626), 1, + sym_comment, + [150968] = 3, + ACTIONS(145), 1, + anon_sym_POUND, + ACTIONS(6016), 1, + anon_sym_RPAREN, + STATE(3627), 1, + sym_comment, + [150978] = 1, + ACTIONS(6018), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(731)] = 0, - [SMALL_STATE(732)] = 129, - [SMALL_STATE(733)] = 208, - [SMALL_STATE(734)] = 287, - [SMALL_STATE(735)] = 366, - [SMALL_STATE(736)] = 445, - [SMALL_STATE(737)] = 524, - [SMALL_STATE(738)] = 603, - [SMALL_STATE(739)] = 682, - [SMALL_STATE(740)] = 765, - [SMALL_STATE(741)] = 840, - [SMALL_STATE(742)] = 915, - [SMALL_STATE(743)] = 994, - [SMALL_STATE(744)] = 1073, - [SMALL_STATE(745)] = 1146, - [SMALL_STATE(746)] = 1225, - [SMALL_STATE(747)] = 1304, + [SMALL_STATE(732)] = 75, + [SMALL_STATE(733)] = 154, + [SMALL_STATE(734)] = 233, + [SMALL_STATE(735)] = 312, + [SMALL_STATE(736)] = 391, + [SMALL_STATE(737)] = 470, + [SMALL_STATE(738)] = 543, + [SMALL_STATE(739)] = 620, + [SMALL_STATE(740)] = 695, + [SMALL_STATE(741)] = 778, + [SMALL_STATE(742)] = 857, + [SMALL_STATE(743)] = 936, + [SMALL_STATE(744)] = 1015, + [SMALL_STATE(745)] = 1094, + [SMALL_STATE(746)] = 1173, + [SMALL_STATE(747)] = 1302, [SMALL_STATE(748)] = 1381, [SMALL_STATE(749)] = 1460, [SMALL_STATE(750)] = 1539, @@ -223113,61 +223535,61 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(753)] = 1776, [SMALL_STATE(754)] = 1848, [SMALL_STATE(755)] = 1922, - [SMALL_STATE(756)] = 1994, - [SMALL_STATE(757)] = 2074, - [SMALL_STATE(758)] = 2146, - [SMALL_STATE(759)] = 2218, - [SMALL_STATE(760)] = 2290, - [SMALL_STATE(761)] = 2362, - [SMALL_STATE(762)] = 2434, - [SMALL_STATE(763)] = 2506, - [SMALL_STATE(764)] = 2586, + [SMALL_STATE(756)] = 2002, + [SMALL_STATE(757)] = 2076, + [SMALL_STATE(758)] = 2148, + [SMALL_STATE(759)] = 2220, + [SMALL_STATE(760)] = 2292, + [SMALL_STATE(761)] = 2364, + [SMALL_STATE(762)] = 2444, + [SMALL_STATE(763)] = 2516, + [SMALL_STATE(764)] = 2588, [SMALL_STATE(765)] = 2660, - [SMALL_STATE(766)] = 2731, - [SMALL_STATE(767)] = 2804, - [SMALL_STATE(768)] = 2875, - [SMALL_STATE(769)] = 3002, - [SMALL_STATE(770)] = 3075, - [SMALL_STATE(771)] = 3202, - [SMALL_STATE(772)] = 3275, - [SMALL_STATE(773)] = 3346, - [SMALL_STATE(774)] = 3419, - [SMALL_STATE(775)] = 3492, - [SMALL_STATE(776)] = 3565, - [SMALL_STATE(777)] = 3636, - [SMALL_STATE(778)] = 3709, - [SMALL_STATE(779)] = 3836, - [SMALL_STATE(780)] = 3963, - [SMALL_STATE(781)] = 4036, - [SMALL_STATE(782)] = 4109, - [SMALL_STATE(783)] = 4182, - [SMALL_STATE(784)] = 4309, - [SMALL_STATE(785)] = 4436, - [SMALL_STATE(786)] = 4563, - [SMALL_STATE(787)] = 4690, - [SMALL_STATE(788)] = 4817, - [SMALL_STATE(789)] = 4890, - [SMALL_STATE(790)] = 4963, - [SMALL_STATE(791)] = 5090, - [SMALL_STATE(792)] = 5217, - [SMALL_STATE(793)] = 5290, - [SMALL_STATE(794)] = 5363, - [SMALL_STATE(795)] = 5438, - [SMALL_STATE(796)] = 5565, - [SMALL_STATE(797)] = 5692, - [SMALL_STATE(798)] = 5763, - [SMALL_STATE(799)] = 5836, - [SMALL_STATE(800)] = 5963, - [SMALL_STATE(801)] = 6090, - [SMALL_STATE(802)] = 6217, - [SMALL_STATE(803)] = 6344, - [SMALL_STATE(804)] = 6471, - [SMALL_STATE(805)] = 6598, - [SMALL_STATE(806)] = 6671, - [SMALL_STATE(807)] = 6798, - [SMALL_STATE(808)] = 6925, - [SMALL_STATE(809)] = 7052, - [SMALL_STATE(810)] = 7179, + [SMALL_STATE(766)] = 2787, + [SMALL_STATE(767)] = 2858, + [SMALL_STATE(768)] = 2985, + [SMALL_STATE(769)] = 3058, + [SMALL_STATE(770)] = 3131, + [SMALL_STATE(771)] = 3258, + [SMALL_STATE(772)] = 3385, + [SMALL_STATE(773)] = 3512, + [SMALL_STATE(774)] = 3585, + [SMALL_STATE(775)] = 3658, + [SMALL_STATE(776)] = 3731, + [SMALL_STATE(777)] = 3804, + [SMALL_STATE(778)] = 3877, + [SMALL_STATE(779)] = 3950, + [SMALL_STATE(780)] = 4077, + [SMALL_STATE(781)] = 4204, + [SMALL_STATE(782)] = 4331, + [SMALL_STATE(783)] = 4458, + [SMALL_STATE(784)] = 4529, + [SMALL_STATE(785)] = 4656, + [SMALL_STATE(786)] = 4729, + [SMALL_STATE(787)] = 4802, + [SMALL_STATE(788)] = 4875, + [SMALL_STATE(789)] = 4948, + [SMALL_STATE(790)] = 5019, + [SMALL_STATE(791)] = 5146, + [SMALL_STATE(792)] = 5273, + [SMALL_STATE(793)] = 5400, + [SMALL_STATE(794)] = 5471, + [SMALL_STATE(795)] = 5598, + [SMALL_STATE(796)] = 5669, + [SMALL_STATE(797)] = 5796, + [SMALL_STATE(798)] = 5923, + [SMALL_STATE(799)] = 6050, + [SMALL_STATE(800)] = 6121, + [SMALL_STATE(801)] = 6248, + [SMALL_STATE(802)] = 6375, + [SMALL_STATE(803)] = 6450, + [SMALL_STATE(804)] = 6577, + [SMALL_STATE(805)] = 6704, + [SMALL_STATE(806)] = 6777, + [SMALL_STATE(807)] = 6850, + [SMALL_STATE(808)] = 6923, + [SMALL_STATE(809)] = 7050, + [SMALL_STATE(810)] = 7123, [SMALL_STATE(811)] = 7250, [SMALL_STATE(812)] = 7377, [SMALL_STATE(813)] = 7504, @@ -223175,139 +223597,139 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(815)] = 7644, [SMALL_STATE(816)] = 7714, [SMALL_STATE(817)] = 7784, - [SMALL_STATE(818)] = 7854, - [SMALL_STATE(819)] = 7988, - [SMALL_STATE(820)] = 8058, - [SMALL_STATE(821)] = 8128, - [SMALL_STATE(822)] = 8254, - [SMALL_STATE(823)] = 8324, - [SMALL_STATE(824)] = 8398, - [SMALL_STATE(825)] = 8468, - [SMALL_STATE(826)] = 8594, - [SMALL_STATE(827)] = 8720, - [SMALL_STATE(828)] = 8846, - [SMALL_STATE(829)] = 8916, - [SMALL_STATE(830)] = 8986, - [SMALL_STATE(831)] = 9056, - [SMALL_STATE(832)] = 9126, - [SMALL_STATE(833)] = 9196, - [SMALL_STATE(834)] = 9266, - [SMALL_STATE(835)] = 9336, - [SMALL_STATE(836)] = 9406, - [SMALL_STATE(837)] = 9476, - [SMALL_STATE(838)] = 9602, - [SMALL_STATE(839)] = 9672, - [SMALL_STATE(840)] = 9742, - [SMALL_STATE(841)] = 9812, - [SMALL_STATE(842)] = 9938, - [SMALL_STATE(843)] = 10064, - [SMALL_STATE(844)] = 10190, - [SMALL_STATE(845)] = 10316, - [SMALL_STATE(846)] = 10442, - [SMALL_STATE(847)] = 10568, - [SMALL_STATE(848)] = 10638, - [SMALL_STATE(849)] = 10764, - [SMALL_STATE(850)] = 10890, - [SMALL_STATE(851)] = 11016, - [SMALL_STATE(852)] = 11086, - [SMALL_STATE(853)] = 11186, - [SMALL_STATE(854)] = 11256, - [SMALL_STATE(855)] = 11354, - [SMALL_STATE(856)] = 11480, - [SMALL_STATE(857)] = 11550, - [SMALL_STATE(858)] = 11620, - [SMALL_STATE(859)] = 11716, - [SMALL_STATE(860)] = 11786, - [SMALL_STATE(861)] = 11880, - [SMALL_STATE(862)] = 11950, - [SMALL_STATE(863)] = 12020, - [SMALL_STATE(864)] = 12090, - [SMALL_STATE(865)] = 12160, - [SMALL_STATE(866)] = 12230, - [SMALL_STATE(867)] = 12322, - [SMALL_STATE(868)] = 12392, - [SMALL_STATE(869)] = 12482, - [SMALL_STATE(870)] = 12552, - [SMALL_STATE(871)] = 12640, - [SMALL_STATE(872)] = 12710, - [SMALL_STATE(873)] = 12780, - [SMALL_STATE(874)] = 12850, - [SMALL_STATE(875)] = 12920, - [SMALL_STATE(876)] = 13000, - [SMALL_STATE(877)] = 13070, - [SMALL_STATE(878)] = 13142, - [SMALL_STATE(879)] = 13212, - [SMALL_STATE(880)] = 13288, - [SMALL_STATE(881)] = 13358, - [SMALL_STATE(882)] = 13460, - [SMALL_STATE(883)] = 13530, - [SMALL_STATE(884)] = 13630, - [SMALL_STATE(885)] = 13700, - [SMALL_STATE(886)] = 13798, - [SMALL_STATE(887)] = 13868, - [SMALL_STATE(888)] = 13964, - [SMALL_STATE(889)] = 14034, - [SMALL_STATE(890)] = 14128, - [SMALL_STATE(891)] = 14198, - [SMALL_STATE(892)] = 14290, - [SMALL_STATE(893)] = 14360, - [SMALL_STATE(894)] = 14450, - [SMALL_STATE(895)] = 14520, - [SMALL_STATE(896)] = 14600, - [SMALL_STATE(897)] = 14670, - [SMALL_STATE(898)] = 14742, - [SMALL_STATE(899)] = 14812, - [SMALL_STATE(900)] = 14888, - [SMALL_STATE(901)] = 14958, - [SMALL_STATE(902)] = 15046, - [SMALL_STATE(903)] = 15116, - [SMALL_STATE(904)] = 15194, - [SMALL_STATE(905)] = 15328, - [SMALL_STATE(906)] = 15412, - [SMALL_STATE(907)] = 15482, - [SMALL_STATE(908)] = 15552, - [SMALL_STATE(909)] = 15638, - [SMALL_STATE(910)] = 15708, - [SMALL_STATE(911)] = 15786, - [SMALL_STATE(912)] = 15856, - [SMALL_STATE(913)] = 15926, - [SMALL_STATE(914)] = 16010, - [SMALL_STATE(915)] = 16080, - [SMALL_STATE(916)] = 16150, - [SMALL_STATE(917)] = 16252, - [SMALL_STATE(918)] = 16322, - [SMALL_STATE(919)] = 16424, - [SMALL_STATE(920)] = 16494, - [SMALL_STATE(921)] = 16564, - [SMALL_STATE(922)] = 16634, - [SMALL_STATE(923)] = 16704, - [SMALL_STATE(924)] = 16778, - [SMALL_STATE(925)] = 16848, - [SMALL_STATE(926)] = 16918, - [SMALL_STATE(927)] = 16988, - [SMALL_STATE(928)] = 17058, - [SMALL_STATE(929)] = 17128, - [SMALL_STATE(930)] = 17262, - [SMALL_STATE(931)] = 17332, - [SMALL_STATE(932)] = 17458, - [SMALL_STATE(933)] = 17584, - [SMALL_STATE(934)] = 17710, - [SMALL_STATE(935)] = 17836, - [SMALL_STATE(936)] = 17906, - [SMALL_STATE(937)] = 17976, - [SMALL_STATE(938)] = 18046, - [SMALL_STATE(939)] = 18116, - [SMALL_STATE(940)] = 18186, - [SMALL_STATE(941)] = 18320, - [SMALL_STATE(942)] = 18446, - [SMALL_STATE(943)] = 18572, - [SMALL_STATE(944)] = 18642, - [SMALL_STATE(945)] = 18768, - [SMALL_STATE(946)] = 18894, - [SMALL_STATE(947)] = 18964, - [SMALL_STATE(948)] = 19034, - [SMALL_STATE(949)] = 19104, - [SMALL_STATE(950)] = 19230, + [SMALL_STATE(818)] = 7856, + [SMALL_STATE(819)] = 7926, + [SMALL_STATE(820)] = 7996, + [SMALL_STATE(821)] = 8084, + [SMALL_STATE(822)] = 8154, + [SMALL_STATE(823)] = 8244, + [SMALL_STATE(824)] = 8314, + [SMALL_STATE(825)] = 8384, + [SMALL_STATE(826)] = 8482, + [SMALL_STATE(827)] = 8552, + [SMALL_STATE(828)] = 8652, + [SMALL_STATE(829)] = 8722, + [SMALL_STATE(830)] = 8824, + [SMALL_STATE(831)] = 8894, + [SMALL_STATE(832)] = 8964, + [SMALL_STATE(833)] = 9034, + [SMALL_STATE(834)] = 9128, + [SMALL_STATE(835)] = 9198, + [SMALL_STATE(836)] = 9268, + [SMALL_STATE(837)] = 9340, + [SMALL_STATE(838)] = 9410, + [SMALL_STATE(839)] = 9486, + [SMALL_STATE(840)] = 9556, + [SMALL_STATE(841)] = 9642, + [SMALL_STATE(842)] = 9712, + [SMALL_STATE(843)] = 9838, + [SMALL_STATE(844)] = 9916, + [SMALL_STATE(845)] = 9986, + [SMALL_STATE(846)] = 10112, + [SMALL_STATE(847)] = 10182, + [SMALL_STATE(848)] = 10252, + [SMALL_STATE(849)] = 10378, + [SMALL_STATE(850)] = 10462, + [SMALL_STATE(851)] = 10596, + [SMALL_STATE(852)] = 10666, + [SMALL_STATE(853)] = 10792, + [SMALL_STATE(854)] = 10862, + [SMALL_STATE(855)] = 10996, + [SMALL_STATE(856)] = 11066, + [SMALL_STATE(857)] = 11192, + [SMALL_STATE(858)] = 11262, + [SMALL_STATE(859)] = 11354, + [SMALL_STATE(860)] = 11424, + [SMALL_STATE(861)] = 11494, + [SMALL_STATE(862)] = 11620, + [SMALL_STATE(863)] = 11746, + [SMALL_STATE(864)] = 11872, + [SMALL_STATE(865)] = 11998, + [SMALL_STATE(866)] = 12124, + [SMALL_STATE(867)] = 12194, + [SMALL_STATE(868)] = 12320, + [SMALL_STATE(869)] = 12390, + [SMALL_STATE(870)] = 12516, + [SMALL_STATE(871)] = 12642, + [SMALL_STATE(872)] = 12712, + [SMALL_STATE(873)] = 12782, + [SMALL_STATE(874)] = 12908, + [SMALL_STATE(875)] = 13034, + [SMALL_STATE(876)] = 13104, + [SMALL_STATE(877)] = 13230, + [SMALL_STATE(878)] = 13356, + [SMALL_STATE(879)] = 13482, + [SMALL_STATE(880)] = 13582, + [SMALL_STATE(881)] = 13708, + [SMALL_STATE(882)] = 13834, + [SMALL_STATE(883)] = 13914, + [SMALL_STATE(884)] = 13984, + [SMALL_STATE(885)] = 14054, + [SMALL_STATE(886)] = 14124, + [SMALL_STATE(887)] = 14222, + [SMALL_STATE(888)] = 14292, + [SMALL_STATE(889)] = 14362, + [SMALL_STATE(890)] = 14432, + [SMALL_STATE(891)] = 14502, + [SMALL_STATE(892)] = 14572, + [SMALL_STATE(893)] = 14642, + [SMALL_STATE(894)] = 14712, + [SMALL_STATE(895)] = 14838, + [SMALL_STATE(896)] = 14908, + [SMALL_STATE(897)] = 14978, + [SMALL_STATE(898)] = 15048, + [SMALL_STATE(899)] = 15118, + [SMALL_STATE(900)] = 15192, + [SMALL_STATE(901)] = 15262, + [SMALL_STATE(902)] = 15352, + [SMALL_STATE(903)] = 15478, + [SMALL_STATE(904)] = 15548, + [SMALL_STATE(905)] = 15618, + [SMALL_STATE(906)] = 15688, + [SMALL_STATE(907)] = 15784, + [SMALL_STATE(908)] = 15910, + [SMALL_STATE(909)] = 15980, + [SMALL_STATE(910)] = 16082, + [SMALL_STATE(911)] = 16152, + [SMALL_STATE(912)] = 16222, + [SMALL_STATE(913)] = 16314, + [SMALL_STATE(914)] = 16384, + [SMALL_STATE(915)] = 16454, + [SMALL_STATE(916)] = 16524, + [SMALL_STATE(917)] = 16594, + [SMALL_STATE(918)] = 16664, + [SMALL_STATE(919)] = 16734, + [SMALL_STATE(920)] = 16804, + [SMALL_STATE(921)] = 16938, + [SMALL_STATE(922)] = 17008, + [SMALL_STATE(923)] = 17078, + [SMALL_STATE(924)] = 17148, + [SMALL_STATE(925)] = 17218, + [SMALL_STATE(926)] = 17288, + [SMALL_STATE(927)] = 17372, + [SMALL_STATE(928)] = 17442, + [SMALL_STATE(929)] = 17520, + [SMALL_STATE(930)] = 17590, + [SMALL_STATE(931)] = 17678, + [SMALL_STATE(932)] = 17758, + [SMALL_STATE(933)] = 17828, + [SMALL_STATE(934)] = 17904, + [SMALL_STATE(935)] = 17998, + [SMALL_STATE(936)] = 18068, + [SMALL_STATE(937)] = 18138, + [SMALL_STATE(938)] = 18264, + [SMALL_STATE(939)] = 18334, + [SMALL_STATE(940)] = 18404, + [SMALL_STATE(941)] = 18530, + [SMALL_STATE(942)] = 18600, + [SMALL_STATE(943)] = 18670, + [SMALL_STATE(944)] = 18772, + [SMALL_STATE(945)] = 18842, + [SMALL_STATE(946)] = 18938, + [SMALL_STATE(947)] = 19008, + [SMALL_STATE(948)] = 19142, + [SMALL_STATE(949)] = 19212, + [SMALL_STATE(950)] = 19286, [SMALL_STATE(951)] = 19356, [SMALL_STATE(952)] = 19485, [SMALL_STATE(953)] = 19607, @@ -223318,5469 +223740,5522 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(958)] = 20217, [SMALL_STATE(959)] = 20339, [SMALL_STATE(960)] = 20461, - [SMALL_STATE(961)] = 20584, - [SMALL_STATE(962)] = 20707, - [SMALL_STATE(963)] = 20830, - [SMALL_STATE(964)] = 20953, - [SMALL_STATE(965)] = 21074, - [SMALL_STATE(966)] = 21195, - [SMALL_STATE(967)] = 21318, - [SMALL_STATE(968)] = 21439, - [SMALL_STATE(969)] = 21560, - [SMALL_STATE(970)] = 21683, - [SMALL_STATE(971)] = 21804, - [SMALL_STATE(972)] = 21927, - [SMALL_STATE(973)] = 22048, - [SMALL_STATE(974)] = 22171, - [SMALL_STATE(975)] = 22292, - [SMALL_STATE(976)] = 22415, - [SMALL_STATE(977)] = 22536, - [SMALL_STATE(978)] = 22657, - [SMALL_STATE(979)] = 22780, - [SMALL_STATE(980)] = 22903, - [SMALL_STATE(981)] = 23024, - [SMALL_STATE(982)] = 23147, - [SMALL_STATE(983)] = 23268, + [SMALL_STATE(961)] = 20582, + [SMALL_STATE(962)] = 20703, + [SMALL_STATE(963)] = 20824, + [SMALL_STATE(964)] = 20947, + [SMALL_STATE(965)] = 21070, + [SMALL_STATE(966)] = 21193, + [SMALL_STATE(967)] = 21314, + [SMALL_STATE(968)] = 21435, + [SMALL_STATE(969)] = 21556, + [SMALL_STATE(970)] = 21679, + [SMALL_STATE(971)] = 21802, + [SMALL_STATE(972)] = 21923, + [SMALL_STATE(973)] = 22046, + [SMALL_STATE(974)] = 22169, + [SMALL_STATE(975)] = 22290, + [SMALL_STATE(976)] = 22411, + [SMALL_STATE(977)] = 22532, + [SMALL_STATE(978)] = 22653, + [SMALL_STATE(979)] = 22776, + [SMALL_STATE(980)] = 22899, + [SMALL_STATE(981)] = 23020, + [SMALL_STATE(982)] = 23143, + [SMALL_STATE(983)] = 23264, [SMALL_STATE(984)] = 23387, [SMALL_STATE(985)] = 23508, - [SMALL_STATE(986)] = 23629, - [SMALL_STATE(987)] = 23750, - [SMALL_STATE(988)] = 23873, + [SMALL_STATE(986)] = 23631, + [SMALL_STATE(987)] = 23754, + [SMALL_STATE(988)] = 23875, [SMALL_STATE(989)] = 23996, - [SMALL_STATE(990)] = 24117, - [SMALL_STATE(991)] = 24240, - [SMALL_STATE(992)] = 24361, - [SMALL_STATE(993)] = 24482, - [SMALL_STATE(994)] = 24605, + [SMALL_STATE(990)] = 24119, + [SMALL_STATE(991)] = 24242, + [SMALL_STATE(992)] = 24365, + [SMALL_STATE(993)] = 24488, + [SMALL_STATE(994)] = 24609, [SMALL_STATE(995)] = 24728, [SMALL_STATE(996)] = 24849, [SMALL_STATE(997)] = 24963, [SMALL_STATE(998)] = 25083, - [SMALL_STATE(999)] = 25197, - [SMALL_STATE(1000)] = 25311, + [SMALL_STATE(999)] = 25203, + [SMALL_STATE(1000)] = 25317, [SMALL_STATE(1001)] = 25431, - [SMALL_STATE(1002)] = 25551, - [SMALL_STATE(1003)] = 25671, - [SMALL_STATE(1004)] = 25791, + [SMALL_STATE(1002)] = 25545, + [SMALL_STATE(1003)] = 25665, + [SMALL_STATE(1004)] = 25785, [SMALL_STATE(1005)] = 25905, [SMALL_STATE(1006)] = 26025, [SMALL_STATE(1007)] = 26145, [SMALL_STATE(1008)] = 26265, [SMALL_STATE(1009)] = 26385, - [SMALL_STATE(1010)] = 26505, - [SMALL_STATE(1011)] = 26625, - [SMALL_STATE(1012)] = 26745, - [SMALL_STATE(1013)] = 26865, - [SMALL_STATE(1014)] = 26985, - [SMALL_STATE(1015)] = 27099, - [SMALL_STATE(1016)] = 27219, - [SMALL_STATE(1017)] = 27333, - [SMALL_STATE(1018)] = 27453, - [SMALL_STATE(1019)] = 27573, - [SMALL_STATE(1020)] = 27693, - [SMALL_STATE(1021)] = 27813, - [SMALL_STATE(1022)] = 27933, - [SMALL_STATE(1023)] = 28053, - [SMALL_STATE(1024)] = 28167, - [SMALL_STATE(1025)] = 28281, - [SMALL_STATE(1026)] = 28395, - [SMALL_STATE(1027)] = 28515, - [SMALL_STATE(1028)] = 28635, - [SMALL_STATE(1029)] = 28749, - [SMALL_STATE(1030)] = 28863, - [SMALL_STATE(1031)] = 28983, - [SMALL_STATE(1032)] = 29103, - [SMALL_STATE(1033)] = 29223, - [SMALL_STATE(1034)] = 29343, - [SMALL_STATE(1035)] = 29463, - [SMALL_STATE(1036)] = 29577, - [SMALL_STATE(1037)] = 29691, - [SMALL_STATE(1038)] = 29805, - [SMALL_STATE(1039)] = 29925, - [SMALL_STATE(1040)] = 30045, - [SMALL_STATE(1041)] = 30165, - [SMALL_STATE(1042)] = 30279, - [SMALL_STATE(1043)] = 30393, - [SMALL_STATE(1044)] = 30513, - [SMALL_STATE(1045)] = 30633, - [SMALL_STATE(1046)] = 30747, - [SMALL_STATE(1047)] = 30861, - [SMALL_STATE(1048)] = 30975, - [SMALL_STATE(1049)] = 31089, - [SMALL_STATE(1050)] = 31203, - [SMALL_STATE(1051)] = 31323, - [SMALL_STATE(1052)] = 31437, - [SMALL_STATE(1053)] = 31551, - [SMALL_STATE(1054)] = 31665, - [SMALL_STATE(1055)] = 31779, + [SMALL_STATE(1010)] = 26499, + [SMALL_STATE(1011)] = 26619, + [SMALL_STATE(1012)] = 26733, + [SMALL_STATE(1013)] = 26847, + [SMALL_STATE(1014)] = 26961, + [SMALL_STATE(1015)] = 27075, + [SMALL_STATE(1016)] = 27189, + [SMALL_STATE(1017)] = 27303, + [SMALL_STATE(1018)] = 27417, + [SMALL_STATE(1019)] = 27537, + [SMALL_STATE(1020)] = 27651, + [SMALL_STATE(1021)] = 27771, + [SMALL_STATE(1022)] = 27885, + [SMALL_STATE(1023)] = 28005, + [SMALL_STATE(1024)] = 28119, + [SMALL_STATE(1025)] = 28239, + [SMALL_STATE(1026)] = 28359, + [SMALL_STATE(1027)] = 28479, + [SMALL_STATE(1028)] = 28593, + [SMALL_STATE(1029)] = 28707, + [SMALL_STATE(1030)] = 28821, + [SMALL_STATE(1031)] = 28941, + [SMALL_STATE(1032)] = 29055, + [SMALL_STATE(1033)] = 29169, + [SMALL_STATE(1034)] = 29283, + [SMALL_STATE(1035)] = 29397, + [SMALL_STATE(1036)] = 29511, + [SMALL_STATE(1037)] = 29631, + [SMALL_STATE(1038)] = 29751, + [SMALL_STATE(1039)] = 29871, + [SMALL_STATE(1040)] = 29991, + [SMALL_STATE(1041)] = 30111, + [SMALL_STATE(1042)] = 30231, + [SMALL_STATE(1043)] = 30351, + [SMALL_STATE(1044)] = 30471, + [SMALL_STATE(1045)] = 30591, + [SMALL_STATE(1046)] = 30711, + [SMALL_STATE(1047)] = 30831, + [SMALL_STATE(1048)] = 30945, + [SMALL_STATE(1049)] = 31065, + [SMALL_STATE(1050)] = 31185, + [SMALL_STATE(1051)] = 31305, + [SMALL_STATE(1052)] = 31425, + [SMALL_STATE(1053)] = 31545, + [SMALL_STATE(1054)] = 31659, + [SMALL_STATE(1055)] = 31773, [SMALL_STATE(1056)] = 31893, - [SMALL_STATE(1057)] = 32007, - [SMALL_STATE(1058)] = 32127, - [SMALL_STATE(1059)] = 32241, - [SMALL_STATE(1060)] = 32355, - [SMALL_STATE(1061)] = 32469, - [SMALL_STATE(1062)] = 32589, - [SMALL_STATE(1063)] = 32703, - [SMALL_STATE(1064)] = 32823, - [SMALL_STATE(1065)] = 32943, - [SMALL_STATE(1066)] = 33063, - [SMALL_STATE(1067)] = 33177, - [SMALL_STATE(1068)] = 33291, - [SMALL_STATE(1069)] = 33405, - [SMALL_STATE(1070)] = 33519, - [SMALL_STATE(1071)] = 33633, - [SMALL_STATE(1072)] = 33747, - [SMALL_STATE(1073)] = 33861, - [SMALL_STATE(1074)] = 33975, - [SMALL_STATE(1075)] = 34089, - [SMALL_STATE(1076)] = 34203, - [SMALL_STATE(1077)] = 34323, - [SMALL_STATE(1078)] = 34437, - [SMALL_STATE(1079)] = 34557, - [SMALL_STATE(1080)] = 34671, - [SMALL_STATE(1081)] = 34791, - [SMALL_STATE(1082)] = 34911, - [SMALL_STATE(1083)] = 35031, - [SMALL_STATE(1084)] = 35145, - [SMALL_STATE(1085)] = 35259, - [SMALL_STATE(1086)] = 35379, - [SMALL_STATE(1087)] = 35499, - [SMALL_STATE(1088)] = 35613, - [SMALL_STATE(1089)] = 35727, - [SMALL_STATE(1090)] = 35841, - [SMALL_STATE(1091)] = 35955, - [SMALL_STATE(1092)] = 36069, - [SMALL_STATE(1093)] = 36183, - [SMALL_STATE(1094)] = 36297, - [SMALL_STATE(1095)] = 36411, - [SMALL_STATE(1096)] = 36525, - [SMALL_STATE(1097)] = 36639, - [SMALL_STATE(1098)] = 36753, - [SMALL_STATE(1099)] = 36867, - [SMALL_STATE(1100)] = 36981, - [SMALL_STATE(1101)] = 37095, - [SMALL_STATE(1102)] = 37209, - [SMALL_STATE(1103)] = 37323, - [SMALL_STATE(1104)] = 37437, - [SMALL_STATE(1105)] = 37551, - [SMALL_STATE(1106)] = 37665, - [SMALL_STATE(1107)] = 37779, - [SMALL_STATE(1108)] = 37893, - [SMALL_STATE(1109)] = 38007, - [SMALL_STATE(1110)] = 38121, - [SMALL_STATE(1111)] = 38235, - [SMALL_STATE(1112)] = 38349, - [SMALL_STATE(1113)] = 38463, - [SMALL_STATE(1114)] = 38577, - [SMALL_STATE(1115)] = 38691, - [SMALL_STATE(1116)] = 38811, - [SMALL_STATE(1117)] = 38925, - [SMALL_STATE(1118)] = 39045, - [SMALL_STATE(1119)] = 39165, - [SMALL_STATE(1120)] = 39285, - [SMALL_STATE(1121)] = 39405, - [SMALL_STATE(1122)] = 39519, - [SMALL_STATE(1123)] = 39633, - [SMALL_STATE(1124)] = 39753, - [SMALL_STATE(1125)] = 39867, - [SMALL_STATE(1126)] = 39981, - [SMALL_STATE(1127)] = 40095, - [SMALL_STATE(1128)] = 40209, - [SMALL_STATE(1129)] = 40323, - [SMALL_STATE(1130)] = 40437, - [SMALL_STATE(1131)] = 40551, - [SMALL_STATE(1132)] = 40665, - [SMALL_STATE(1133)] = 40779, - [SMALL_STATE(1134)] = 40893, - [SMALL_STATE(1135)] = 41007, - [SMALL_STATE(1136)] = 41121, - [SMALL_STATE(1137)] = 41235, - [SMALL_STATE(1138)] = 41349, - [SMALL_STATE(1139)] = 41463, - [SMALL_STATE(1140)] = 41577, - [SMALL_STATE(1141)] = 41691, - [SMALL_STATE(1142)] = 41805, - [SMALL_STATE(1143)] = 41919, - [SMALL_STATE(1144)] = 42033, - [SMALL_STATE(1145)] = 42147, - [SMALL_STATE(1146)] = 42261, - [SMALL_STATE(1147)] = 42375, - [SMALL_STATE(1148)] = 42489, - [SMALL_STATE(1149)] = 42603, - [SMALL_STATE(1150)] = 42717, - [SMALL_STATE(1151)] = 42831, - [SMALL_STATE(1152)] = 42945, - [SMALL_STATE(1153)] = 43059, - [SMALL_STATE(1154)] = 43173, - [SMALL_STATE(1155)] = 43287, - [SMALL_STATE(1156)] = 43401, - [SMALL_STATE(1157)] = 43521, - [SMALL_STATE(1158)] = 43641, - [SMALL_STATE(1159)] = 43761, - [SMALL_STATE(1160)] = 43881, - [SMALL_STATE(1161)] = 43995, - [SMALL_STATE(1162)] = 44115, - [SMALL_STATE(1163)] = 44235, - [SMALL_STATE(1164)] = 44355, - [SMALL_STATE(1165)] = 44475, - [SMALL_STATE(1166)] = 44595, - [SMALL_STATE(1167)] = 44715, - [SMALL_STATE(1168)] = 44835, - [SMALL_STATE(1169)] = 44955, - [SMALL_STATE(1170)] = 45075, - [SMALL_STATE(1171)] = 45189, - [SMALL_STATE(1172)] = 45309, - [SMALL_STATE(1173)] = 45429, - [SMALL_STATE(1174)] = 45549, - [SMALL_STATE(1175)] = 45669, - [SMALL_STATE(1176)] = 45789, - [SMALL_STATE(1177)] = 45909, - [SMALL_STATE(1178)] = 46029, - [SMALL_STATE(1179)] = 46149, - [SMALL_STATE(1180)] = 46269, - [SMALL_STATE(1181)] = 46389, - [SMALL_STATE(1182)] = 46509, - [SMALL_STATE(1183)] = 46629, - [SMALL_STATE(1184)] = 46749, - [SMALL_STATE(1185)] = 46863, - [SMALL_STATE(1186)] = 46977, - [SMALL_STATE(1187)] = 47091, - [SMALL_STATE(1188)] = 47205, - [SMALL_STATE(1189)] = 47321, - [SMALL_STATE(1190)] = 47435, - [SMALL_STATE(1191)] = 47551, - [SMALL_STATE(1192)] = 47665, - [SMALL_STATE(1193)] = 47779, - [SMALL_STATE(1194)] = 47893, - [SMALL_STATE(1195)] = 48007, - [SMALL_STATE(1196)] = 48121, - [SMALL_STATE(1197)] = 48235, - [SMALL_STATE(1198)] = 48349, - [SMALL_STATE(1199)] = 48463, - [SMALL_STATE(1200)] = 48583, - [SMALL_STATE(1201)] = 48703, - [SMALL_STATE(1202)] = 48823, - [SMALL_STATE(1203)] = 48943, - [SMALL_STATE(1204)] = 49063, - [SMALL_STATE(1205)] = 49183, - [SMALL_STATE(1206)] = 49303, - [SMALL_STATE(1207)] = 49423, - [SMALL_STATE(1208)] = 49543, - [SMALL_STATE(1209)] = 49663, - [SMALL_STATE(1210)] = 49783, - [SMALL_STATE(1211)] = 49903, - [SMALL_STATE(1212)] = 50023, - [SMALL_STATE(1213)] = 50143, - [SMALL_STATE(1214)] = 50257, - [SMALL_STATE(1215)] = 50371, - [SMALL_STATE(1216)] = 50485, - [SMALL_STATE(1217)] = 50599, - [SMALL_STATE(1218)] = 50713, - [SMALL_STATE(1219)] = 50833, - [SMALL_STATE(1220)] = 50953, - [SMALL_STATE(1221)] = 51073, - [SMALL_STATE(1222)] = 51193, - [SMALL_STATE(1223)] = 51313, - [SMALL_STATE(1224)] = 51427, - [SMALL_STATE(1225)] = 51547, - [SMALL_STATE(1226)] = 51667, - [SMALL_STATE(1227)] = 51781, - [SMALL_STATE(1228)] = 51895, - [SMALL_STATE(1229)] = 52015, - [SMALL_STATE(1230)] = 52135, - [SMALL_STATE(1231)] = 52255, - [SMALL_STATE(1232)] = 52375, - [SMALL_STATE(1233)] = 52495, - [SMALL_STATE(1234)] = 52615, - [SMALL_STATE(1235)] = 52735, - [SMALL_STATE(1236)] = 52849, - [SMALL_STATE(1237)] = 52969, - [SMALL_STATE(1238)] = 53083, - [SMALL_STATE(1239)] = 53203, - [SMALL_STATE(1240)] = 53323, - [SMALL_STATE(1241)] = 53443, - [SMALL_STATE(1242)] = 53557, - [SMALL_STATE(1243)] = 53677, - [SMALL_STATE(1244)] = 53791, - [SMALL_STATE(1245)] = 53911, - [SMALL_STATE(1246)] = 54031, - [SMALL_STATE(1247)] = 54151, - [SMALL_STATE(1248)] = 54271, - [SMALL_STATE(1249)] = 54391, - [SMALL_STATE(1250)] = 54505, - [SMALL_STATE(1251)] = 54619, - [SMALL_STATE(1252)] = 54733, - [SMALL_STATE(1253)] = 54847, - [SMALL_STATE(1254)] = 54961, - [SMALL_STATE(1255)] = 55081, - [SMALL_STATE(1256)] = 55201, - [SMALL_STATE(1257)] = 55315, - [SMALL_STATE(1258)] = 55429, - [SMALL_STATE(1259)] = 55543, - [SMALL_STATE(1260)] = 55657, - [SMALL_STATE(1261)] = 55771, - [SMALL_STATE(1262)] = 55885, - [SMALL_STATE(1263)] = 55999, - [SMALL_STATE(1264)] = 56113, - [SMALL_STATE(1265)] = 56227, - [SMALL_STATE(1266)] = 56347, - [SMALL_STATE(1267)] = 56461, - [SMALL_STATE(1268)] = 56575, - [SMALL_STATE(1269)] = 56689, - [SMALL_STATE(1270)] = 56809, - [SMALL_STATE(1271)] = 56923, - [SMALL_STATE(1272)] = 57043, - [SMALL_STATE(1273)] = 57163, - [SMALL_STATE(1274)] = 57283, - [SMALL_STATE(1275)] = 57403, - [SMALL_STATE(1276)] = 57523, - [SMALL_STATE(1277)] = 57643, - [SMALL_STATE(1278)] = 57763, - [SMALL_STATE(1279)] = 57883, - [SMALL_STATE(1280)] = 58003, + [SMALL_STATE(1057)] = 32013, + [SMALL_STATE(1058)] = 32133, + [SMALL_STATE(1059)] = 32253, + [SMALL_STATE(1060)] = 32367, + [SMALL_STATE(1061)] = 32487, + [SMALL_STATE(1062)] = 32607, + [SMALL_STATE(1063)] = 32727, + [SMALL_STATE(1064)] = 32847, + [SMALL_STATE(1065)] = 32961, + [SMALL_STATE(1066)] = 33081, + [SMALL_STATE(1067)] = 33201, + [SMALL_STATE(1068)] = 33321, + [SMALL_STATE(1069)] = 33441, + [SMALL_STATE(1070)] = 33561, + [SMALL_STATE(1071)] = 33681, + [SMALL_STATE(1072)] = 33801, + [SMALL_STATE(1073)] = 33921, + [SMALL_STATE(1074)] = 34035, + [SMALL_STATE(1075)] = 34149, + [SMALL_STATE(1076)] = 34269, + [SMALL_STATE(1077)] = 34383, + [SMALL_STATE(1078)] = 34497, + [SMALL_STATE(1079)] = 34611, + [SMALL_STATE(1080)] = 34725, + [SMALL_STATE(1081)] = 34839, + [SMALL_STATE(1082)] = 34953, + [SMALL_STATE(1083)] = 35067, + [SMALL_STATE(1084)] = 35181, + [SMALL_STATE(1085)] = 35295, + [SMALL_STATE(1086)] = 35409, + [SMALL_STATE(1087)] = 35529, + [SMALL_STATE(1088)] = 35649, + [SMALL_STATE(1089)] = 35769, + [SMALL_STATE(1090)] = 35885, + [SMALL_STATE(1091)] = 35999, + [SMALL_STATE(1092)] = 36115, + [SMALL_STATE(1093)] = 36229, + [SMALL_STATE(1094)] = 36349, + [SMALL_STATE(1095)] = 36469, + [SMALL_STATE(1096)] = 36583, + [SMALL_STATE(1097)] = 36697, + [SMALL_STATE(1098)] = 36817, + [SMALL_STATE(1099)] = 36937, + [SMALL_STATE(1100)] = 37051, + [SMALL_STATE(1101)] = 37165, + [SMALL_STATE(1102)] = 37279, + [SMALL_STATE(1103)] = 37393, + [SMALL_STATE(1104)] = 37507, + [SMALL_STATE(1105)] = 37621, + [SMALL_STATE(1106)] = 37735, + [SMALL_STATE(1107)] = 37855, + [SMALL_STATE(1108)] = 37975, + [SMALL_STATE(1109)] = 38095, + [SMALL_STATE(1110)] = 38215, + [SMALL_STATE(1111)] = 38335, + [SMALL_STATE(1112)] = 38455, + [SMALL_STATE(1113)] = 38575, + [SMALL_STATE(1114)] = 38689, + [SMALL_STATE(1115)] = 38809, + [SMALL_STATE(1116)] = 38923, + [SMALL_STATE(1117)] = 39037, + [SMALL_STATE(1118)] = 39157, + [SMALL_STATE(1119)] = 39277, + [SMALL_STATE(1120)] = 39397, + [SMALL_STATE(1121)] = 39517, + [SMALL_STATE(1122)] = 39637, + [SMALL_STATE(1123)] = 39751, + [SMALL_STATE(1124)] = 39865, + [SMALL_STATE(1125)] = 39979, + [SMALL_STATE(1126)] = 40093, + [SMALL_STATE(1127)] = 40207, + [SMALL_STATE(1128)] = 40321, + [SMALL_STATE(1129)] = 40435, + [SMALL_STATE(1130)] = 40549, + [SMALL_STATE(1131)] = 40663, + [SMALL_STATE(1132)] = 40777, + [SMALL_STATE(1133)] = 40891, + [SMALL_STATE(1134)] = 41005, + [SMALL_STATE(1135)] = 41119, + [SMALL_STATE(1136)] = 41239, + [SMALL_STATE(1137)] = 41353, + [SMALL_STATE(1138)] = 41467, + [SMALL_STATE(1139)] = 41581, + [SMALL_STATE(1140)] = 41695, + [SMALL_STATE(1141)] = 41809, + [SMALL_STATE(1142)] = 41923, + [SMALL_STATE(1143)] = 42037, + [SMALL_STATE(1144)] = 42151, + [SMALL_STATE(1145)] = 42271, + [SMALL_STATE(1146)] = 42385, + [SMALL_STATE(1147)] = 42499, + [SMALL_STATE(1148)] = 42619, + [SMALL_STATE(1149)] = 42733, + [SMALL_STATE(1150)] = 42847, + [SMALL_STATE(1151)] = 42961, + [SMALL_STATE(1152)] = 43075, + [SMALL_STATE(1153)] = 43189, + [SMALL_STATE(1154)] = 43309, + [SMALL_STATE(1155)] = 43423, + [SMALL_STATE(1156)] = 43537, + [SMALL_STATE(1157)] = 43651, + [SMALL_STATE(1158)] = 43765, + [SMALL_STATE(1159)] = 43879, + [SMALL_STATE(1160)] = 43993, + [SMALL_STATE(1161)] = 44107, + [SMALL_STATE(1162)] = 44221, + [SMALL_STATE(1163)] = 44335, + [SMALL_STATE(1164)] = 44449, + [SMALL_STATE(1165)] = 44569, + [SMALL_STATE(1166)] = 44689, + [SMALL_STATE(1167)] = 44809, + [SMALL_STATE(1168)] = 44929, + [SMALL_STATE(1169)] = 45043, + [SMALL_STATE(1170)] = 45163, + [SMALL_STATE(1171)] = 45283, + [SMALL_STATE(1172)] = 45403, + [SMALL_STATE(1173)] = 45523, + [SMALL_STATE(1174)] = 45643, + [SMALL_STATE(1175)] = 45763, + [SMALL_STATE(1176)] = 45883, + [SMALL_STATE(1177)] = 46003, + [SMALL_STATE(1178)] = 46123, + [SMALL_STATE(1179)] = 46243, + [SMALL_STATE(1180)] = 46363, + [SMALL_STATE(1181)] = 46483, + [SMALL_STATE(1182)] = 46603, + [SMALL_STATE(1183)] = 46723, + [SMALL_STATE(1184)] = 46843, + [SMALL_STATE(1185)] = 46963, + [SMALL_STATE(1186)] = 47083, + [SMALL_STATE(1187)] = 47203, + [SMALL_STATE(1188)] = 47323, + [SMALL_STATE(1189)] = 47443, + [SMALL_STATE(1190)] = 47563, + [SMALL_STATE(1191)] = 47683, + [SMALL_STATE(1192)] = 47803, + [SMALL_STATE(1193)] = 47923, + [SMALL_STATE(1194)] = 48043, + [SMALL_STATE(1195)] = 48163, + [SMALL_STATE(1196)] = 48283, + [SMALL_STATE(1197)] = 48403, + [SMALL_STATE(1198)] = 48523, + [SMALL_STATE(1199)] = 48643, + [SMALL_STATE(1200)] = 48763, + [SMALL_STATE(1201)] = 48883, + [SMALL_STATE(1202)] = 49003, + [SMALL_STATE(1203)] = 49123, + [SMALL_STATE(1204)] = 49243, + [SMALL_STATE(1205)] = 49363, + [SMALL_STATE(1206)] = 49483, + [SMALL_STATE(1207)] = 49597, + [SMALL_STATE(1208)] = 49711, + [SMALL_STATE(1209)] = 49825, + [SMALL_STATE(1210)] = 49939, + [SMALL_STATE(1211)] = 50053, + [SMALL_STATE(1212)] = 50167, + [SMALL_STATE(1213)] = 50281, + [SMALL_STATE(1214)] = 50395, + [SMALL_STATE(1215)] = 50509, + [SMALL_STATE(1216)] = 50623, + [SMALL_STATE(1217)] = 50737, + [SMALL_STATE(1218)] = 50851, + [SMALL_STATE(1219)] = 50965, + [SMALL_STATE(1220)] = 51079, + [SMALL_STATE(1221)] = 51193, + [SMALL_STATE(1222)] = 51307, + [SMALL_STATE(1223)] = 51421, + [SMALL_STATE(1224)] = 51535, + [SMALL_STATE(1225)] = 51649, + [SMALL_STATE(1226)] = 51763, + [SMALL_STATE(1227)] = 51877, + [SMALL_STATE(1228)] = 51991, + [SMALL_STATE(1229)] = 52105, + [SMALL_STATE(1230)] = 52219, + [SMALL_STATE(1231)] = 52339, + [SMALL_STATE(1232)] = 52453, + [SMALL_STATE(1233)] = 52567, + [SMALL_STATE(1234)] = 52681, + [SMALL_STATE(1235)] = 52795, + [SMALL_STATE(1236)] = 52909, + [SMALL_STATE(1237)] = 53023, + [SMALL_STATE(1238)] = 53137, + [SMALL_STATE(1239)] = 53251, + [SMALL_STATE(1240)] = 53365, + [SMALL_STATE(1241)] = 53479, + [SMALL_STATE(1242)] = 53593, + [SMALL_STATE(1243)] = 53707, + [SMALL_STATE(1244)] = 53821, + [SMALL_STATE(1245)] = 53935, + [SMALL_STATE(1246)] = 54055, + [SMALL_STATE(1247)] = 54175, + [SMALL_STATE(1248)] = 54295, + [SMALL_STATE(1249)] = 54415, + [SMALL_STATE(1250)] = 54535, + [SMALL_STATE(1251)] = 54655, + [SMALL_STATE(1252)] = 54775, + [SMALL_STATE(1253)] = 54895, + [SMALL_STATE(1254)] = 55015, + [SMALL_STATE(1255)] = 55135, + [SMALL_STATE(1256)] = 55255, + [SMALL_STATE(1257)] = 55375, + [SMALL_STATE(1258)] = 55495, + [SMALL_STATE(1259)] = 55609, + [SMALL_STATE(1260)] = 55723, + [SMALL_STATE(1261)] = 55837, + [SMALL_STATE(1262)] = 55951, + [SMALL_STATE(1263)] = 56065, + [SMALL_STATE(1264)] = 56179, + [SMALL_STATE(1265)] = 56293, + [SMALL_STATE(1266)] = 56407, + [SMALL_STATE(1267)] = 56521, + [SMALL_STATE(1268)] = 56635, + [SMALL_STATE(1269)] = 56749, + [SMALL_STATE(1270)] = 56863, + [SMALL_STATE(1271)] = 56977, + [SMALL_STATE(1272)] = 57091, + [SMALL_STATE(1273)] = 57205, + [SMALL_STATE(1274)] = 57319, + [SMALL_STATE(1275)] = 57433, + [SMALL_STATE(1276)] = 57547, + [SMALL_STATE(1277)] = 57661, + [SMALL_STATE(1278)] = 57775, + [SMALL_STATE(1279)] = 57889, + [SMALL_STATE(1280)] = 58009, [SMALL_STATE(1281)] = 58123, [SMALL_STATE(1282)] = 58243, - [SMALL_STATE(1283)] = 58363, - [SMALL_STATE(1284)] = 58483, - [SMALL_STATE(1285)] = 58603, - [SMALL_STATE(1286)] = 58723, - [SMALL_STATE(1287)] = 58843, - [SMALL_STATE(1288)] = 58963, - [SMALL_STATE(1289)] = 59083, - [SMALL_STATE(1290)] = 59197, - [SMALL_STATE(1291)] = 59311, - [SMALL_STATE(1292)] = 59425, - [SMALL_STATE(1293)] = 59539, - [SMALL_STATE(1294)] = 59659, - [SMALL_STATE(1295)] = 59773, - [SMALL_STATE(1296)] = 59887, - [SMALL_STATE(1297)] = 60007, - [SMALL_STATE(1298)] = 60127, - [SMALL_STATE(1299)] = 60247, - [SMALL_STATE(1300)] = 60361, - [SMALL_STATE(1301)] = 60475, - [SMALL_STATE(1302)] = 60589, - [SMALL_STATE(1303)] = 60703, - [SMALL_STATE(1304)] = 60823, - [SMALL_STATE(1305)] = 60937, + [SMALL_STATE(1283)] = 58357, + [SMALL_STATE(1284)] = 58471, + [SMALL_STATE(1285)] = 58585, + [SMALL_STATE(1286)] = 58699, + [SMALL_STATE(1287)] = 58813, + [SMALL_STATE(1288)] = 58927, + [SMALL_STATE(1289)] = 59041, + [SMALL_STATE(1290)] = 59155, + [SMALL_STATE(1291)] = 59269, + [SMALL_STATE(1292)] = 59383, + [SMALL_STATE(1293)] = 59497, + [SMALL_STATE(1294)] = 59611, + [SMALL_STATE(1295)] = 59731, + [SMALL_STATE(1296)] = 59851, + [SMALL_STATE(1297)] = 59971, + [SMALL_STATE(1298)] = 60091, + [SMALL_STATE(1299)] = 60211, + [SMALL_STATE(1300)] = 60331, + [SMALL_STATE(1301)] = 60451, + [SMALL_STATE(1302)] = 60571, + [SMALL_STATE(1303)] = 60691, + [SMALL_STATE(1304)] = 60811, + [SMALL_STATE(1305)] = 60931, [SMALL_STATE(1306)] = 61051, - [SMALL_STATE(1307)] = 61165, - [SMALL_STATE(1308)] = 61279, - [SMALL_STATE(1309)] = 61393, - [SMALL_STATE(1310)] = 61507, - [SMALL_STATE(1311)] = 61627, - [SMALL_STATE(1312)] = 61741, - [SMALL_STATE(1313)] = 61855, - [SMALL_STATE(1314)] = 61975, - [SMALL_STATE(1315)] = 62089, - [SMALL_STATE(1316)] = 62203, - [SMALL_STATE(1317)] = 62323, - [SMALL_STATE(1318)] = 62437, - [SMALL_STATE(1319)] = 62557, - [SMALL_STATE(1320)] = 62671, - [SMALL_STATE(1321)] = 62791, - [SMALL_STATE(1322)] = 62911, - [SMALL_STATE(1323)] = 63031, - [SMALL_STATE(1324)] = 63145, - [SMALL_STATE(1325)] = 63259, - [SMALL_STATE(1326)] = 63373, - [SMALL_STATE(1327)] = 63487, - [SMALL_STATE(1328)] = 63601, - [SMALL_STATE(1329)] = 63721, - [SMALL_STATE(1330)] = 63835, - [SMALL_STATE(1331)] = 63949, - [SMALL_STATE(1332)] = 64069, - [SMALL_STATE(1333)] = 64189, - [SMALL_STATE(1334)] = 64309, - [SMALL_STATE(1335)] = 64429, + [SMALL_STATE(1307)] = 61171, + [SMALL_STATE(1308)] = 61291, + [SMALL_STATE(1309)] = 61411, + [SMALL_STATE(1310)] = 61525, + [SMALL_STATE(1311)] = 61645, + [SMALL_STATE(1312)] = 61765, + [SMALL_STATE(1313)] = 61879, + [SMALL_STATE(1314)] = 61999, + [SMALL_STATE(1315)] = 62119, + [SMALL_STATE(1316)] = 62239, + [SMALL_STATE(1317)] = 62359, + [SMALL_STATE(1318)] = 62473, + [SMALL_STATE(1319)] = 62587, + [SMALL_STATE(1320)] = 62707, + [SMALL_STATE(1321)] = 62827, + [SMALL_STATE(1322)] = 62941, + [SMALL_STATE(1323)] = 63061, + [SMALL_STATE(1324)] = 63181, + [SMALL_STATE(1325)] = 63295, + [SMALL_STATE(1326)] = 63409, + [SMALL_STATE(1327)] = 63523, + [SMALL_STATE(1328)] = 63637, + [SMALL_STATE(1329)] = 63751, + [SMALL_STATE(1330)] = 63865, + [SMALL_STATE(1331)] = 63979, + [SMALL_STATE(1332)] = 64093, + [SMALL_STATE(1333)] = 64207, + [SMALL_STATE(1334)] = 64321, + [SMALL_STATE(1335)] = 64435, [SMALL_STATE(1336)] = 64549, [SMALL_STATE(1337)] = 64664, [SMALL_STATE(1338)] = 64779, [SMALL_STATE(1339)] = 64894, - [SMALL_STATE(1340)] = 65004, - [SMALL_STATE(1341)] = 65114, - [SMALL_STATE(1342)] = 65224, - [SMALL_STATE(1343)] = 65334, - [SMALL_STATE(1344)] = 65444, - [SMALL_STATE(1345)] = 65554, - [SMALL_STATE(1346)] = 65664, - [SMALL_STATE(1347)] = 65774, - [SMALL_STATE(1348)] = 65884, - [SMALL_STATE(1349)] = 65994, - [SMALL_STATE(1350)] = 66104, - [SMALL_STATE(1351)] = 66214, - [SMALL_STATE(1352)] = 66324, - [SMALL_STATE(1353)] = 66434, - [SMALL_STATE(1354)] = 66544, - [SMALL_STATE(1355)] = 66654, - [SMALL_STATE(1356)] = 66764, - [SMALL_STATE(1357)] = 66831, - [SMALL_STATE(1358)] = 66894, - [SMALL_STATE(1359)] = 66957, - [SMALL_STATE(1360)] = 67020, - [SMALL_STATE(1361)] = 67083, - [SMALL_STATE(1362)] = 67146, - [SMALL_STATE(1363)] = 67209, - [SMALL_STATE(1364)] = 67272, - [SMALL_STATE(1365)] = 67335, - [SMALL_STATE(1366)] = 67398, - [SMALL_STATE(1367)] = 67461, - [SMALL_STATE(1368)] = 67522, - [SMALL_STATE(1369)] = 67585, - [SMALL_STATE(1370)] = 67647, - [SMALL_STATE(1371)] = 67709, - [SMALL_STATE(1372)] = 67771, - [SMALL_STATE(1373)] = 67827, - [SMALL_STATE(1374)] = 67889, - [SMALL_STATE(1375)] = 67951, - [SMALL_STATE(1376)] = 68013, - [SMALL_STATE(1377)] = 68075, - [SMALL_STATE(1378)] = 68131, - [SMALL_STATE(1379)] = 68193, - [SMALL_STATE(1380)] = 68255, - [SMALL_STATE(1381)] = 68317, - [SMALL_STATE(1382)] = 68381, - [SMALL_STATE(1383)] = 68441, - [SMALL_STATE(1384)] = 68499, - [SMALL_STATE(1385)] = 68557, - [SMALL_STATE(1386)] = 68619, - [SMALL_STATE(1387)] = 68683, - [SMALL_STATE(1388)] = 68745, - [SMALL_STATE(1389)] = 68802, - [SMALL_STATE(1390)] = 68863, - [SMALL_STATE(1391)] = 68918, - [SMALL_STATE(1392)] = 68975, - [SMALL_STATE(1393)] = 69030, - [SMALL_STATE(1394)] = 69085, - [SMALL_STATE(1395)] = 69140, - [SMALL_STATE(1396)] = 69195, - [SMALL_STATE(1397)] = 69256, - [SMALL_STATE(1398)] = 69313, - [SMALL_STATE(1399)] = 69367, - [SMALL_STATE(1400)] = 69421, - [SMALL_STATE(1401)] = 69475, - [SMALL_STATE(1402)] = 69529, - [SMALL_STATE(1403)] = 69583, - [SMALL_STATE(1404)] = 69641, - [SMALL_STATE(1405)] = 69695, - [SMALL_STATE(1406)] = 69751, - [SMALL_STATE(1407)] = 69805, - [SMALL_STATE(1408)] = 69859, - [SMALL_STATE(1409)] = 69913, - [SMALL_STATE(1410)] = 69967, - [SMALL_STATE(1411)] = 70021, - [SMALL_STATE(1412)] = 70075, - [SMALL_STATE(1413)] = 70129, - [SMALL_STATE(1414)] = 70183, - [SMALL_STATE(1415)] = 70237, - [SMALL_STATE(1416)] = 70291, - [SMALL_STATE(1417)] = 70345, - [SMALL_STATE(1418)] = 70399, - [SMALL_STATE(1419)] = 70453, - [SMALL_STATE(1420)] = 70507, - [SMALL_STATE(1421)] = 70561, - [SMALL_STATE(1422)] = 70621, - [SMALL_STATE(1423)] = 70675, - [SMALL_STATE(1424)] = 70729, - [SMALL_STATE(1425)] = 70783, - [SMALL_STATE(1426)] = 70837, - [SMALL_STATE(1427)] = 70891, - [SMALL_STATE(1428)] = 70945, - [SMALL_STATE(1429)] = 70999, - [SMALL_STATE(1430)] = 71053, - [SMALL_STATE(1431)] = 71107, - [SMALL_STATE(1432)] = 71161, - [SMALL_STATE(1433)] = 71221, - [SMALL_STATE(1434)] = 71275, - [SMALL_STATE(1435)] = 71329, - [SMALL_STATE(1436)] = 71383, - [SMALL_STATE(1437)] = 71443, - [SMALL_STATE(1438)] = 71497, - [SMALL_STATE(1439)] = 71553, - [SMALL_STATE(1440)] = 71613, - [SMALL_STATE(1441)] = 71667, - [SMALL_STATE(1442)] = 71721, - [SMALL_STATE(1443)] = 71775, - [SMALL_STATE(1444)] = 71829, - [SMALL_STATE(1445)] = 71886, - [SMALL_STATE(1446)] = 71945, - [SMALL_STATE(1447)] = 72000, - [SMALL_STATE(1448)] = 72055, - [SMALL_STATE(1449)] = 72108, - [SMALL_STATE(1450)] = 72161, - [SMALL_STATE(1451)] = 72214, - [SMALL_STATE(1452)] = 72267, - [SMALL_STATE(1453)] = 72320, - [SMALL_STATE(1454)] = 72373, - [SMALL_STATE(1455)] = 72426, - [SMALL_STATE(1456)] = 72479, - [SMALL_STATE(1457)] = 72540, - [SMALL_STATE(1458)] = 72597, - [SMALL_STATE(1459)] = 72650, - [SMALL_STATE(1460)] = 72705, - [SMALL_STATE(1461)] = 72758, - [SMALL_STATE(1462)] = 72811, - [SMALL_STATE(1463)] = 72864, - [SMALL_STATE(1464)] = 72917, - [SMALL_STATE(1465)] = 72970, - [SMALL_STATE(1466)] = 73023, - [SMALL_STATE(1467)] = 73080, - [SMALL_STATE(1468)] = 73133, - [SMALL_STATE(1469)] = 73186, - [SMALL_STATE(1470)] = 73239, - [SMALL_STATE(1471)] = 73292, - [SMALL_STATE(1472)] = 73345, - [SMALL_STATE(1473)] = 73402, - [SMALL_STATE(1474)] = 73461, - [SMALL_STATE(1475)] = 73514, - [SMALL_STATE(1476)] = 73567, - [SMALL_STATE(1477)] = 73624, - [SMALL_STATE(1478)] = 73677, - [SMALL_STATE(1479)] = 73730, - [SMALL_STATE(1480)] = 73783, - [SMALL_STATE(1481)] = 73836, - [SMALL_STATE(1482)] = 73889, - [SMALL_STATE(1483)] = 73942, - [SMALL_STATE(1484)] = 73995, - [SMALL_STATE(1485)] = 74048, - [SMALL_STATE(1486)] = 74101, - [SMALL_STATE(1487)] = 74154, - [SMALL_STATE(1488)] = 74207, - [SMALL_STATE(1489)] = 74260, - [SMALL_STATE(1490)] = 74313, - [SMALL_STATE(1491)] = 74370, - [SMALL_STATE(1492)] = 74423, - [SMALL_STATE(1493)] = 74476, - [SMALL_STATE(1494)] = 74531, - [SMALL_STATE(1495)] = 74590, - [SMALL_STATE(1496)] = 74643, - [SMALL_STATE(1497)] = 74696, - [SMALL_STATE(1498)] = 74749, - [SMALL_STATE(1499)] = 74807, - [SMALL_STATE(1500)] = 74861, - [SMALL_STATE(1501)] = 74925, - [SMALL_STATE(1502)] = 74981, - [SMALL_STATE(1503)] = 75035, - [SMALL_STATE(1504)] = 75097, - [SMALL_STATE(1505)] = 75149, - [SMALL_STATE(1506)] = 75201, - [SMALL_STATE(1507)] = 75253, - [SMALL_STATE(1508)] = 75311, - [SMALL_STATE(1509)] = 75369, - [SMALL_STATE(1510)] = 75427, - [SMALL_STATE(1511)] = 75491, - [SMALL_STATE(1512)] = 75543, - [SMALL_STATE(1513)] = 75599, - [SMALL_STATE(1514)] = 75651, - [SMALL_STATE(1515)] = 75703, - [SMALL_STATE(1516)] = 75761, - [SMALL_STATE(1517)] = 75825, - [SMALL_STATE(1518)] = 75877, - [SMALL_STATE(1519)] = 75929, - [SMALL_STATE(1520)] = 75987, - [SMALL_STATE(1521)] = 76040, - [SMALL_STATE(1522)] = 76097, - [SMALL_STATE(1523)] = 76152, - [SMALL_STATE(1524)] = 76205, - [SMALL_STATE(1525)] = 76262, - [SMALL_STATE(1526)] = 76311, - [SMALL_STATE(1527)] = 76368, - [SMALL_STATE(1528)] = 76425, - [SMALL_STATE(1529)] = 76476, - [SMALL_STATE(1530)] = 76531, - [SMALL_STATE(1531)] = 76580, - [SMALL_STATE(1532)] = 76637, - [SMALL_STATE(1533)] = 76694, - [SMALL_STATE(1534)] = 76743, - [SMALL_STATE(1535)] = 76794, - [SMALL_STATE(1536)] = 76847, - [SMALL_STATE(1537)] = 76900, - [SMALL_STATE(1538)] = 76951, - [SMALL_STATE(1539)] = 77004, - [SMALL_STATE(1540)] = 77061, - [SMALL_STATE(1541)] = 77118, - [SMALL_STATE(1542)] = 77175, - [SMALL_STATE(1543)] = 77232, - [SMALL_STATE(1544)] = 77283, - [SMALL_STATE(1545)] = 77336, - [SMALL_STATE(1546)] = 77389, - [SMALL_STATE(1547)] = 77446, - [SMALL_STATE(1548)] = 77497, - [SMALL_STATE(1549)] = 77548, - [SMALL_STATE(1550)] = 77601, - [SMALL_STATE(1551)] = 77652, - [SMALL_STATE(1552)] = 77707, - [SMALL_STATE(1553)] = 77764, - [SMALL_STATE(1554)] = 77817, - [SMALL_STATE(1555)] = 77872, - [SMALL_STATE(1556)] = 77929, - [SMALL_STATE(1557)] = 77986, - [SMALL_STATE(1558)] = 78035, - [SMALL_STATE(1559)] = 78092, - [SMALL_STATE(1560)] = 78143, - [SMALL_STATE(1561)] = 78200, - [SMALL_STATE(1562)] = 78257, - [SMALL_STATE(1563)] = 78308, - [SMALL_STATE(1564)] = 78357, - [SMALL_STATE(1565)] = 78414, - [SMALL_STATE(1566)] = 78469, - [SMALL_STATE(1567)] = 78526, - [SMALL_STATE(1568)] = 78577, - [SMALL_STATE(1569)] = 78627, - [SMALL_STATE(1570)] = 78677, - [SMALL_STATE(1571)] = 78729, - [SMALL_STATE(1572)] = 78781, - [SMALL_STATE(1573)] = 78831, - [SMALL_STATE(1574)] = 78881, - [SMALL_STATE(1575)] = 78931, - [SMALL_STATE(1576)] = 78983, - [SMALL_STATE(1577)] = 79039, - [SMALL_STATE(1578)] = 79091, - [SMALL_STATE(1579)] = 79147, - [SMALL_STATE(1580)] = 79197, - [SMALL_STATE(1581)] = 79253, - [SMALL_STATE(1582)] = 79303, - [SMALL_STATE(1583)] = 79353, - [SMALL_STATE(1584)] = 79403, - [SMALL_STATE(1585)] = 79455, - [SMALL_STATE(1586)] = 79509, - [SMALL_STATE(1587)] = 79565, - [SMALL_STATE(1588)] = 79615, - [SMALL_STATE(1589)] = 79671, - [SMALL_STATE(1590)] = 79721, - [SMALL_STATE(1591)] = 79773, - [SMALL_STATE(1592)] = 79825, - [SMALL_STATE(1593)] = 79875, - [SMALL_STATE(1594)] = 79925, - [SMALL_STATE(1595)] = 79979, - [SMALL_STATE(1596)] = 80029, - [SMALL_STATE(1597)] = 80081, - [SMALL_STATE(1598)] = 80131, - [SMALL_STATE(1599)] = 80183, - [SMALL_STATE(1600)] = 80239, - [SMALL_STATE(1601)] = 80289, - [SMALL_STATE(1602)] = 80338, - [SMALL_STATE(1603)] = 80387, - [SMALL_STATE(1604)] = 80440, - [SMALL_STATE(1605)] = 80489, - [SMALL_STATE(1606)] = 80538, - [SMALL_STATE(1607)] = 80593, - [SMALL_STATE(1608)] = 80648, - [SMALL_STATE(1609)] = 80701, - [SMALL_STATE(1610)] = 80756, - [SMALL_STATE(1611)] = 80811, - [SMALL_STATE(1612)] = 80866, - [SMALL_STATE(1613)] = 80921, - [SMALL_STATE(1614)] = 80976, - [SMALL_STATE(1615)] = 81025, - [SMALL_STATE(1616)] = 81080, - [SMALL_STATE(1617)] = 81131, - [SMALL_STATE(1618)] = 81182, - [SMALL_STATE(1619)] = 81231, - [SMALL_STATE(1620)] = 81280, - [SMALL_STATE(1621)] = 81329, - [SMALL_STATE(1622)] = 81380, - [SMALL_STATE(1623)] = 81431, - [SMALL_STATE(1624)] = 81482, - [SMALL_STATE(1625)] = 81537, - [SMALL_STATE(1626)] = 81592, - [SMALL_STATE(1627)] = 81647, - [SMALL_STATE(1628)] = 81696, - [SMALL_STATE(1629)] = 81745, - [SMALL_STATE(1630)] = 81800, - [SMALL_STATE(1631)] = 81855, - [SMALL_STATE(1632)] = 81904, - [SMALL_STATE(1633)] = 81957, - [SMALL_STATE(1634)] = 82006, - [SMALL_STATE(1635)] = 82061, - [SMALL_STATE(1636)] = 82116, - [SMALL_STATE(1637)] = 82171, - [SMALL_STATE(1638)] = 82226, - [SMALL_STATE(1639)] = 82281, - [SMALL_STATE(1640)] = 82330, - [SMALL_STATE(1641)] = 82385, - [SMALL_STATE(1642)] = 82436, - [SMALL_STATE(1643)] = 82485, - [SMALL_STATE(1644)] = 82534, - [SMALL_STATE(1645)] = 82583, - [SMALL_STATE(1646)] = 82632, - [SMALL_STATE(1647)] = 82687, - [SMALL_STATE(1648)] = 82741, - [SMALL_STATE(1649)] = 82795, - [SMALL_STATE(1650)] = 82849, - [SMALL_STATE(1651)] = 82927, - [SMALL_STATE(1652)] = 82981, - [SMALL_STATE(1653)] = 83029, - [SMALL_STATE(1654)] = 83105, - [SMALL_STATE(1655)] = 83153, - [SMALL_STATE(1656)] = 83227, - [SMALL_STATE(1657)] = 83275, - [SMALL_STATE(1658)] = 83323, - [SMALL_STATE(1659)] = 83373, - [SMALL_STATE(1660)] = 83423, - [SMALL_STATE(1661)] = 83471, - [SMALL_STATE(1662)] = 83553, - [SMALL_STATE(1663)] = 83601, - [SMALL_STATE(1664)] = 83649, - [SMALL_STATE(1665)] = 83697, - [SMALL_STATE(1666)] = 83745, - [SMALL_STATE(1667)] = 83793, - [SMALL_STATE(1668)] = 83847, - [SMALL_STATE(1669)] = 83895, - [SMALL_STATE(1670)] = 83949, - [SMALL_STATE(1671)] = 83997, - [SMALL_STATE(1672)] = 84045, - [SMALL_STATE(1673)] = 84127, - [SMALL_STATE(1674)] = 84175, - [SMALL_STATE(1675)] = 84223, - [SMALL_STATE(1676)] = 84271, - [SMALL_STATE(1677)] = 84325, - [SMALL_STATE(1678)] = 84407, - [SMALL_STATE(1679)] = 84457, - [SMALL_STATE(1680)] = 84505, - [SMALL_STATE(1681)] = 84553, - [SMALL_STATE(1682)] = 84607, - [SMALL_STATE(1683)] = 84661, - [SMALL_STATE(1684)] = 84709, - [SMALL_STATE(1685)] = 84763, - [SMALL_STATE(1686)] = 84811, - [SMALL_STATE(1687)] = 84893, - [SMALL_STATE(1688)] = 84947, - [SMALL_STATE(1689)] = 85029, - [SMALL_STATE(1690)] = 85079, - [SMALL_STATE(1691)] = 85127, - [SMALL_STATE(1692)] = 85181, - [SMALL_STATE(1693)] = 85227, - [SMALL_STATE(1694)] = 85275, - [SMALL_STATE(1695)] = 85325, - [SMALL_STATE(1696)] = 85375, - [SMALL_STATE(1697)] = 85425, - [SMALL_STATE(1698)] = 85507, - [SMALL_STATE(1699)] = 85559, - [SMALL_STATE(1700)] = 85613, - [SMALL_STATE(1701)] = 85661, - [SMALL_STATE(1702)] = 85715, - [SMALL_STATE(1703)] = 85769, - [SMALL_STATE(1704)] = 85823, - [SMALL_STATE(1705)] = 85873, - [SMALL_STATE(1706)] = 85925, - [SMALL_STATE(1707)] = 85979, - [SMALL_STATE(1708)] = 86027, - [SMALL_STATE(1709)] = 86081, - [SMALL_STATE(1710)] = 86147, - [SMALL_STATE(1711)] = 86199, - [SMALL_STATE(1712)] = 86247, - [SMALL_STATE(1713)] = 86303, - [SMALL_STATE(1714)] = 86351, - [SMALL_STATE(1715)] = 86413, - [SMALL_STATE(1716)] = 86461, - [SMALL_STATE(1717)] = 86515, - [SMALL_STATE(1718)] = 86569, - [SMALL_STATE(1719)] = 86619, - [SMALL_STATE(1720)] = 86673, - [SMALL_STATE(1721)] = 86721, - [SMALL_STATE(1722)] = 86769, - [SMALL_STATE(1723)] = 86851, - [SMALL_STATE(1724)] = 86899, - [SMALL_STATE(1725)] = 86947, - [SMALL_STATE(1726)] = 86999, - [SMALL_STATE(1727)] = 87047, - [SMALL_STATE(1728)] = 87101, - [SMALL_STATE(1729)] = 87149, - [SMALL_STATE(1730)] = 87203, - [SMALL_STATE(1731)] = 87257, - [SMALL_STATE(1732)] = 87327, - [SMALL_STATE(1733)] = 87409, - [SMALL_STATE(1734)] = 87463, - [SMALL_STATE(1735)] = 87511, - [SMALL_STATE(1736)] = 87559, - [SMALL_STATE(1737)] = 87613, - [SMALL_STATE(1738)] = 87661, - [SMALL_STATE(1739)] = 87709, - [SMALL_STATE(1740)] = 87763, - [SMALL_STATE(1741)] = 87845, - [SMALL_STATE(1742)] = 87893, - [SMALL_STATE(1743)] = 87941, - [SMALL_STATE(1744)] = 87995, - [SMALL_STATE(1745)] = 88043, - [SMALL_STATE(1746)] = 88097, - [SMALL_STATE(1747)] = 88145, - [SMALL_STATE(1748)] = 88193, - [SMALL_STATE(1749)] = 88275, - [SMALL_STATE(1750)] = 88323, - [SMALL_STATE(1751)] = 88377, - [SMALL_STATE(1752)] = 88425, - [SMALL_STATE(1753)] = 88473, - [SMALL_STATE(1754)] = 88521, - [SMALL_STATE(1755)] = 88575, - [SMALL_STATE(1756)] = 88627, - [SMALL_STATE(1757)] = 88695, - [SMALL_STATE(1758)] = 88743, - [SMALL_STATE(1759)] = 88801, - [SMALL_STATE(1760)] = 88855, - [SMALL_STATE(1761)] = 88903, - [SMALL_STATE(1762)] = 88951, - [SMALL_STATE(1763)] = 89023, - [SMALL_STATE(1764)] = 89075, - [SMALL_STATE(1765)] = 89155, - [SMALL_STATE(1766)] = 89237, - [SMALL_STATE(1767)] = 89285, - [SMALL_STATE(1768)] = 89335, - [SMALL_STATE(1769)] = 89383, - [SMALL_STATE(1770)] = 89463, - [SMALL_STATE(1771)] = 89517, - [SMALL_STATE(1772)] = 89565, - [SMALL_STATE(1773)] = 89613, - [SMALL_STATE(1774)] = 89661, - [SMALL_STATE(1775)] = 89709, - [SMALL_STATE(1776)] = 89763, - [SMALL_STATE(1777)] = 89813, - [SMALL_STATE(1778)] = 89861, - [SMALL_STATE(1779)] = 89909, - [SMALL_STATE(1780)] = 89958, - [SMALL_STATE(1781)] = 90011, - [SMALL_STATE(1782)] = 90064, - [SMALL_STATE(1783)] = 90111, - [SMALL_STATE(1784)] = 90158, - [SMALL_STATE(1785)] = 90205, - [SMALL_STATE(1786)] = 90252, - [SMALL_STATE(1787)] = 90333, - [SMALL_STATE(1788)] = 90382, - [SMALL_STATE(1789)] = 90429, - [SMALL_STATE(1790)] = 90478, - [SMALL_STATE(1791)] = 90529, - [SMALL_STATE(1792)] = 90610, - [SMALL_STATE(1793)] = 90657, - [SMALL_STATE(1794)] = 90706, - [SMALL_STATE(1795)] = 90753, - [SMALL_STATE(1796)] = 90802, - [SMALL_STATE(1797)] = 90855, - [SMALL_STATE(1798)] = 90902, - [SMALL_STATE(1799)] = 90949, - [SMALL_STATE(1800)] = 91030, - [SMALL_STATE(1801)] = 91079, - [SMALL_STATE(1802)] = 91126, - [SMALL_STATE(1803)] = 91173, - [SMALL_STATE(1804)] = 91252, - [SMALL_STATE(1805)] = 91331, - [SMALL_STATE(1806)] = 91380, - [SMALL_STATE(1807)] = 91427, - [SMALL_STATE(1808)] = 91508, - [SMALL_STATE(1809)] = 91589, - [SMALL_STATE(1810)] = 91670, - [SMALL_STATE(1811)] = 91717, - [SMALL_STATE(1812)] = 91764, - [SMALL_STATE(1813)] = 91845, - [SMALL_STATE(1814)] = 91892, - [SMALL_STATE(1815)] = 91945, - [SMALL_STATE(1816)] = 91998, - [SMALL_STATE(1817)] = 92051, - [SMALL_STATE(1818)] = 92098, - [SMALL_STATE(1819)] = 92179, - [SMALL_STATE(1820)] = 92232, - [SMALL_STATE(1821)] = 92279, - [SMALL_STATE(1822)] = 92332, - [SMALL_STATE(1823)] = 92379, - [SMALL_STATE(1824)] = 92428, - [SMALL_STATE(1825)] = 92477, - [SMALL_STATE(1826)] = 92524, - [SMALL_STATE(1827)] = 92571, - [SMALL_STATE(1828)] = 92618, - [SMALL_STATE(1829)] = 92663, - [SMALL_STATE(1830)] = 92712, - [SMALL_STATE(1831)] = 92765, - [SMALL_STATE(1832)] = 92846, - [SMALL_STATE(1833)] = 92895, - [SMALL_STATE(1834)] = 92942, - [SMALL_STATE(1835)] = 92991, - [SMALL_STATE(1836)] = 93038, - [SMALL_STATE(1837)] = 93085, - [SMALL_STATE(1838)] = 93166, - [SMALL_STATE(1839)] = 93213, - [SMALL_STATE(1840)] = 93294, - [SMALL_STATE(1841)] = 93347, - [SMALL_STATE(1842)] = 93393, - [SMALL_STATE(1843)] = 93445, - [SMALL_STATE(1844)] = 93491, - [SMALL_STATE(1845)] = 93537, - [SMALL_STATE(1846)] = 93583, - [SMALL_STATE(1847)] = 93629, - [SMALL_STATE(1848)] = 93675, - [SMALL_STATE(1849)] = 93721, - [SMALL_STATE(1850)] = 93767, - [SMALL_STATE(1851)] = 93813, - [SMALL_STATE(1852)] = 93859, - [SMALL_STATE(1853)] = 93907, - [SMALL_STATE(1854)] = 93955, - [SMALL_STATE(1855)] = 94001, - [SMALL_STATE(1856)] = 94047, - [SMALL_STATE(1857)] = 94093, - [SMALL_STATE(1858)] = 94139, - [SMALL_STATE(1859)] = 94185, - [SMALL_STATE(1860)] = 94231, - [SMALL_STATE(1861)] = 94277, - [SMALL_STATE(1862)] = 94323, - [SMALL_STATE(1863)] = 94369, - [SMALL_STATE(1864)] = 94415, - [SMALL_STATE(1865)] = 94493, - [SMALL_STATE(1866)] = 94539, - [SMALL_STATE(1867)] = 94585, - [SMALL_STATE(1868)] = 94631, - [SMALL_STATE(1869)] = 94677, - [SMALL_STATE(1870)] = 94723, - [SMALL_STATE(1871)] = 94769, - [SMALL_STATE(1872)] = 94817, - [SMALL_STATE(1873)] = 94863, - [SMALL_STATE(1874)] = 94935, - [SMALL_STATE(1875)] = 94985, - [SMALL_STATE(1876)] = 95031, - [SMALL_STATE(1877)] = 95101, - [SMALL_STATE(1878)] = 95147, - [SMALL_STATE(1879)] = 95215, - [SMALL_STATE(1880)] = 95293, - [SMALL_STATE(1881)] = 95339, - [SMALL_STATE(1882)] = 95405, - [SMALL_STATE(1883)] = 95457, - [SMALL_STATE(1884)] = 95503, - [SMALL_STATE(1885)] = 95567, - [SMALL_STATE(1886)] = 95613, - [SMALL_STATE(1887)] = 95665, - [SMALL_STATE(1888)] = 95727, - [SMALL_STATE(1889)] = 95773, - [SMALL_STATE(1890)] = 95833, - [SMALL_STATE(1891)] = 95879, - [SMALL_STATE(1892)] = 95933, - [SMALL_STATE(1893)] = 95979, - [SMALL_STATE(1894)] = 96027, - [SMALL_STATE(1895)] = 96073, - [SMALL_STATE(1896)] = 96123, - [SMALL_STATE(1897)] = 96169, - [SMALL_STATE(1898)] = 96227, - [SMALL_STATE(1899)] = 96273, - [SMALL_STATE(1900)] = 96325, - [SMALL_STATE(1901)] = 96371, - [SMALL_STATE(1902)] = 96427, - [SMALL_STATE(1903)] = 96473, - [SMALL_STATE(1904)] = 96519, - [SMALL_STATE(1905)] = 96563, - [SMALL_STATE(1906)] = 96609, - [SMALL_STATE(1907)] = 96655, - [SMALL_STATE(1908)] = 96701, - [SMALL_STATE(1909)] = 96747, - [SMALL_STATE(1910)] = 96793, - [SMALL_STATE(1911)] = 96845, - [SMALL_STATE(1912)] = 96891, - [SMALL_STATE(1913)] = 96937, - [SMALL_STATE(1914)] = 96983, - [SMALL_STATE(1915)] = 97035, - [SMALL_STATE(1916)] = 97081, - [SMALL_STATE(1917)] = 97127, - [SMALL_STATE(1918)] = 97179, - [SMALL_STATE(1919)] = 97225, - [SMALL_STATE(1920)] = 97271, - [SMALL_STATE(1921)] = 97317, - [SMALL_STATE(1922)] = 97363, - [SMALL_STATE(1923)] = 97409, - [SMALL_STATE(1924)] = 97455, - [SMALL_STATE(1925)] = 97501, - [SMALL_STATE(1926)] = 97553, - [SMALL_STATE(1927)] = 97599, - [SMALL_STATE(1928)] = 97651, - [SMALL_STATE(1929)] = 97697, - [SMALL_STATE(1930)] = 97749, - [SMALL_STATE(1931)] = 97801, - [SMALL_STATE(1932)] = 97846, - [SMALL_STATE(1933)] = 97891, - [SMALL_STATE(1934)] = 97954, - [SMALL_STATE(1935)] = 97999, - [SMALL_STATE(1936)] = 98056, - [SMALL_STATE(1937)] = 98101, - [SMALL_STATE(1938)] = 98148, - [SMALL_STATE(1939)] = 98193, - [SMALL_STATE(1940)] = 98244, - [SMALL_STATE(1941)] = 98289, - [SMALL_STATE(1942)] = 98350, - [SMALL_STATE(1943)] = 98395, - [SMALL_STATE(1944)] = 98450, - [SMALL_STATE(1945)] = 98495, - [SMALL_STATE(1946)] = 98554, - [SMALL_STATE(1947)] = 98599, - [SMALL_STATE(1948)] = 98644, - [SMALL_STATE(1949)] = 98689, - [SMALL_STATE(1950)] = 98734, - [SMALL_STATE(1951)] = 98779, - [SMALL_STATE(1952)] = 98824, - [SMALL_STATE(1953)] = 98869, - [SMALL_STATE(1954)] = 98920, - [SMALL_STATE(1955)] = 98965, - [SMALL_STATE(1956)] = 99010, - [SMALL_STATE(1957)] = 99055, - [SMALL_STATE(1958)] = 99100, - [SMALL_STATE(1959)] = 99145, - [SMALL_STATE(1960)] = 99190, - [SMALL_STATE(1961)] = 99273, - [SMALL_STATE(1962)] = 99322, - [SMALL_STATE(1963)] = 99405, - [SMALL_STATE(1964)] = 99488, - [SMALL_STATE(1965)] = 99571, - [SMALL_STATE(1966)] = 99616, - [SMALL_STATE(1967)] = 99661, - [SMALL_STATE(1968)] = 99706, - [SMALL_STATE(1969)] = 99755, - [SMALL_STATE(1970)] = 99800, - [SMALL_STATE(1971)] = 99845, - [SMALL_STATE(1972)] = 99890, - [SMALL_STATE(1973)] = 99935, - [SMALL_STATE(1974)] = 99980, - [SMALL_STATE(1975)] = 100063, - [SMALL_STATE(1976)] = 100108, - [SMALL_STATE(1977)] = 100153, - [SMALL_STATE(1978)] = 100198, - [SMALL_STATE(1979)] = 100243, - [SMALL_STATE(1980)] = 100288, - [SMALL_STATE(1981)] = 100333, - [SMALL_STATE(1982)] = 100378, - [SMALL_STATE(1983)] = 100423, - [SMALL_STATE(1984)] = 100468, - [SMALL_STATE(1985)] = 100543, - [SMALL_STATE(1986)] = 100604, - [SMALL_STATE(1987)] = 100649, - [SMALL_STATE(1988)] = 100704, - [SMALL_STATE(1989)] = 100749, - [SMALL_STATE(1990)] = 100814, - [SMALL_STATE(1991)] = 100859, - [SMALL_STATE(1992)] = 100910, - [SMALL_STATE(1993)] = 100955, - [SMALL_STATE(1994)] = 101002, - [SMALL_STATE(1995)] = 101053, - [SMALL_STATE(1996)] = 101098, - [SMALL_STATE(1997)] = 101149, - [SMALL_STATE(1998)] = 101206, - [SMALL_STATE(1999)] = 101251, - [SMALL_STATE(2000)] = 101334, - [SMALL_STATE(2001)] = 101417, - [SMALL_STATE(2002)] = 101462, - [SMALL_STATE(2003)] = 101507, - [SMALL_STATE(2004)] = 101590, - [SMALL_STATE(2005)] = 101635, - [SMALL_STATE(2006)] = 101718, - [SMALL_STATE(2007)] = 101783, - [SMALL_STATE(2008)] = 101828, - [SMALL_STATE(2009)] = 101895, - [SMALL_STATE(2010)] = 101976, - [SMALL_STATE(2011)] = 102043, - [SMALL_STATE(2012)] = 102088, - [SMALL_STATE(2013)] = 102133, - [SMALL_STATE(2014)] = 102202, - [SMALL_STATE(2015)] = 102247, - [SMALL_STATE(2016)] = 102292, - [SMALL_STATE(2017)] = 102337, - [SMALL_STATE(2018)] = 102382, - [SMALL_STATE(2019)] = 102451, - [SMALL_STATE(2020)] = 102496, - [SMALL_STATE(2021)] = 102567, - [SMALL_STATE(2022)] = 102612, - [SMALL_STATE(2023)] = 102683, - [SMALL_STATE(2024)] = 102728, - [SMALL_STATE(2025)] = 102773, - [SMALL_STATE(2026)] = 102818, - [SMALL_STATE(2027)] = 102869, - [SMALL_STATE(2028)] = 102914, - [SMALL_STATE(2029)] = 102959, - [SMALL_STATE(2030)] = 103028, - [SMALL_STATE(2031)] = 103073, - [SMALL_STATE(2032)] = 103144, - [SMALL_STATE(2033)] = 103189, - [SMALL_STATE(2034)] = 103272, - [SMALL_STATE(2035)] = 103317, - [SMALL_STATE(2036)] = 103362, - [SMALL_STATE(2037)] = 103445, - [SMALL_STATE(2038)] = 103528, - [SMALL_STATE(2039)] = 103573, - [SMALL_STATE(2040)] = 103618, - [SMALL_STATE(2041)] = 103663, - [SMALL_STATE(2042)] = 103708, - [SMALL_STATE(2043)] = 103753, - [SMALL_STATE(2044)] = 103798, - [SMALL_STATE(2045)] = 103843, - [SMALL_STATE(2046)] = 103888, - [SMALL_STATE(2047)] = 103933, - [SMALL_STATE(2048)] = 103978, - [SMALL_STATE(2049)] = 104051, - [SMALL_STATE(2050)] = 104096, - [SMALL_STATE(2051)] = 104141, - [SMALL_STATE(2052)] = 104186, - [SMALL_STATE(2053)] = 104231, - [SMALL_STATE(2054)] = 104298, - [SMALL_STATE(2055)] = 104373, - [SMALL_STATE(2056)] = 104418, - [SMALL_STATE(2057)] = 104463, - [SMALL_STATE(2058)] = 104546, - [SMALL_STATE(2059)] = 104591, - [SMALL_STATE(2060)] = 104674, - [SMALL_STATE(2061)] = 104751, - [SMALL_STATE(2062)] = 104834, - [SMALL_STATE(2063)] = 104879, - [SMALL_STATE(2064)] = 104930, - [SMALL_STATE(2065)] = 105009, - [SMALL_STATE(2066)] = 105060, - [SMALL_STATE(2067)] = 105105, - [SMALL_STATE(2068)] = 105150, - [SMALL_STATE(2069)] = 105195, - [SMALL_STATE(2070)] = 105240, - [SMALL_STATE(2071)] = 105285, - [SMALL_STATE(2072)] = 105330, - [SMALL_STATE(2073)] = 105381, - [SMALL_STATE(2074)] = 105426, - [SMALL_STATE(2075)] = 105471, - [SMALL_STATE(2076)] = 105516, - [SMALL_STATE(2077)] = 105567, - [SMALL_STATE(2078)] = 105612, - [SMALL_STATE(2079)] = 105677, - [SMALL_STATE(2080)] = 105722, - [SMALL_STATE(2081)] = 105767, - [SMALL_STATE(2082)] = 105812, - [SMALL_STATE(2083)] = 105857, - [SMALL_STATE(2084)] = 105902, - [SMALL_STATE(2085)] = 105947, - [SMALL_STATE(2086)] = 105992, - [SMALL_STATE(2087)] = 106037, - [SMALL_STATE(2088)] = 106082, - [SMALL_STATE(2089)] = 106127, - [SMALL_STATE(2090)] = 106176, - [SMALL_STATE(2091)] = 106221, - [SMALL_STATE(2092)] = 106266, - [SMALL_STATE(2093)] = 106311, - [SMALL_STATE(2094)] = 106356, - [SMALL_STATE(2095)] = 106401, - [SMALL_STATE(2096)] = 106458, - [SMALL_STATE(2097)] = 106503, - [SMALL_STATE(2098)] = 106548, - [SMALL_STATE(2099)] = 106593, - [SMALL_STATE(2100)] = 106638, - [SMALL_STATE(2101)] = 106683, - [SMALL_STATE(2102)] = 106734, - [SMALL_STATE(2103)] = 106779, - [SMALL_STATE(2104)] = 106824, - [SMALL_STATE(2105)] = 106887, - [SMALL_STATE(2106)] = 106942, - [SMALL_STATE(2107)] = 106987, - [SMALL_STATE(2108)] = 107032, - [SMALL_STATE(2109)] = 107077, - [SMALL_STATE(2110)] = 107138, - [SMALL_STATE(2111)] = 107183, - [SMALL_STATE(2112)] = 107228, - [SMALL_STATE(2113)] = 107287, - [SMALL_STATE(2114)] = 107332, - [SMALL_STATE(2115)] = 107377, - [SMALL_STATE(2116)] = 107422, - [SMALL_STATE(2117)] = 107495, - [SMALL_STATE(2118)] = 107546, - [SMALL_STATE(2119)] = 107591, - [SMALL_STATE(2120)] = 107636, - [SMALL_STATE(2121)] = 107711, - [SMALL_STATE(2122)] = 107764, - [SMALL_STATE(2123)] = 107809, - [SMALL_STATE(2124)] = 107854, - [SMALL_STATE(2125)] = 107899, - [SMALL_STATE(2126)] = 107944, - [SMALL_STATE(2127)] = 107995, - [SMALL_STATE(2128)] = 108042, - [SMALL_STATE(2129)] = 108125, - [SMALL_STATE(2130)] = 108172, - [SMALL_STATE(2131)] = 108217, - [SMALL_STATE(2132)] = 108264, - [SMALL_STATE(2133)] = 108308, - [SMALL_STATE(2134)] = 108378, - [SMALL_STATE(2135)] = 108448, - [SMALL_STATE(2136)] = 108518, - [SMALL_STATE(2137)] = 108588, - [SMALL_STATE(2138)] = 108658, - [SMALL_STATE(2139)] = 108728, - [SMALL_STATE(2140)] = 108798, - [SMALL_STATE(2141)] = 108868, - [SMALL_STATE(2142)] = 108938, - [SMALL_STATE(2143)] = 109008, - [SMALL_STATE(2144)] = 109078, - [SMALL_STATE(2145)] = 109148, - [SMALL_STATE(2146)] = 109218, - [SMALL_STATE(2147)] = 109288, - [SMALL_STATE(2148)] = 109358, - [SMALL_STATE(2149)] = 109402, - [SMALL_STATE(2150)] = 109446, - [SMALL_STATE(2151)] = 109490, - [SMALL_STATE(2152)] = 109560, - [SMALL_STATE(2153)] = 109604, - [SMALL_STATE(2154)] = 109648, - [SMALL_STATE(2155)] = 109692, - [SMALL_STATE(2156)] = 109762, - [SMALL_STATE(2157)] = 109806, - [SMALL_STATE(2158)] = 109876, - [SMALL_STATE(2159)] = 109928, - [SMALL_STATE(2160)] = 109998, - [SMALL_STATE(2161)] = 110044, - [SMALL_STATE(2162)] = 110114, - [SMALL_STATE(2163)] = 110190, - [SMALL_STATE(2164)] = 110260, - [SMALL_STATE(2165)] = 110304, - [SMALL_STATE(2166)] = 110374, - [SMALL_STATE(2167)] = 110444, - [SMALL_STATE(2168)] = 110514, - [SMALL_STATE(2169)] = 110584, - [SMALL_STATE(2170)] = 110654, - [SMALL_STATE(2171)] = 110724, - [SMALL_STATE(2172)] = 110794, - [SMALL_STATE(2173)] = 110838, - [SMALL_STATE(2174)] = 110908, - [SMALL_STATE(2175)] = 110978, - [SMALL_STATE(2176)] = 111048, - [SMALL_STATE(2177)] = 111118, - [SMALL_STATE(2178)] = 111188, - [SMALL_STATE(2179)] = 111258, - [SMALL_STATE(2180)] = 111328, - [SMALL_STATE(2181)] = 111398, - [SMALL_STATE(2182)] = 111468, - [SMALL_STATE(2183)] = 111538, - [SMALL_STATE(2184)] = 111608, - [SMALL_STATE(2185)] = 111678, - [SMALL_STATE(2186)] = 111748, - [SMALL_STATE(2187)] = 111818, - [SMALL_STATE(2188)] = 111888, - [SMALL_STATE(2189)] = 111958, - [SMALL_STATE(2190)] = 112028, - [SMALL_STATE(2191)] = 112098, - [SMALL_STATE(2192)] = 112168, - [SMALL_STATE(2193)] = 112238, - [SMALL_STATE(2194)] = 112308, - [SMALL_STATE(2195)] = 112378, - [SMALL_STATE(2196)] = 112448, - [SMALL_STATE(2197)] = 112518, - [SMALL_STATE(2198)] = 112588, - [SMALL_STATE(2199)] = 112662, - [SMALL_STATE(2200)] = 112706, - [SMALL_STATE(2201)] = 112750, - [SMALL_STATE(2202)] = 112818, - [SMALL_STATE(2203)] = 112900, - [SMALL_STATE(2204)] = 112944, - [SMALL_STATE(2205)] = 112988, - [SMALL_STATE(2206)] = 113042, - [SMALL_STATE(2207)] = 113086, - [SMALL_STATE(2208)] = 113136, - [SMALL_STATE(2209)] = 113180, - [SMALL_STATE(2210)] = 113250, - [SMALL_STATE(2211)] = 113320, - [SMALL_STATE(2212)] = 113376, - [SMALL_STATE(2213)] = 113446, - [SMALL_STATE(2214)] = 113490, - [SMALL_STATE(2215)] = 113560, - [SMALL_STATE(2216)] = 113608, - [SMALL_STATE(2217)] = 113678, - [SMALL_STATE(2218)] = 113722, - [SMALL_STATE(2219)] = 113792, - [SMALL_STATE(2220)] = 113838, - [SMALL_STATE(2221)] = 113908, - [SMALL_STATE(2222)] = 113952, - [SMALL_STATE(2223)] = 114022, - [SMALL_STATE(2224)] = 114074, - [SMALL_STATE(2225)] = 114144, - [SMALL_STATE(2226)] = 114188, - [SMALL_STATE(2227)] = 114258, - [SMALL_STATE(2228)] = 114316, - [SMALL_STATE(2229)] = 114386, - [SMALL_STATE(2230)] = 114456, - [SMALL_STATE(2231)] = 114526, - [SMALL_STATE(2232)] = 114570, - [SMALL_STATE(2233)] = 114640, - [SMALL_STATE(2234)] = 114710, - [SMALL_STATE(2235)] = 114780, - [SMALL_STATE(2236)] = 114840, - [SMALL_STATE(2237)] = 114910, - [SMALL_STATE(2238)] = 114954, - [SMALL_STATE(2239)] = 115024, - [SMALL_STATE(2240)] = 115086, - [SMALL_STATE(2241)] = 115156, - [SMALL_STATE(2242)] = 115226, - [SMALL_STATE(2243)] = 115296, - [SMALL_STATE(2244)] = 115340, - [SMALL_STATE(2245)] = 115404, - [SMALL_STATE(2246)] = 115474, - [SMALL_STATE(2247)] = 115518, - [SMALL_STATE(2248)] = 115588, - [SMALL_STATE(2249)] = 115654, - [SMALL_STATE(2250)] = 115724, - [SMALL_STATE(2251)] = 115768, - [SMALL_STATE(2252)] = 115838, - [SMALL_STATE(2253)] = 115882, - [SMALL_STATE(2254)] = 115952, - [SMALL_STATE(2255)] = 115996, - [SMALL_STATE(2256)] = 116040, - [SMALL_STATE(2257)] = 116110, - [SMALL_STATE(2258)] = 116154, - [SMALL_STATE(2259)] = 116224, - [SMALL_STATE(2260)] = 116268, - [SMALL_STATE(2261)] = 116312, - [SMALL_STATE(2262)] = 116356, - [SMALL_STATE(2263)] = 116400, - [SMALL_STATE(2264)] = 116470, - [SMALL_STATE(2265)] = 116514, - [SMALL_STATE(2266)] = 116584, - [SMALL_STATE(2267)] = 116628, - [SMALL_STATE(2268)] = 116698, - [SMALL_STATE(2269)] = 116742, - [SMALL_STATE(2270)] = 116786, - [SMALL_STATE(2271)] = 116830, - [SMALL_STATE(2272)] = 116874, - [SMALL_STATE(2273)] = 116918, - [SMALL_STATE(2274)] = 116988, - [SMALL_STATE(2275)] = 117032, - [SMALL_STATE(2276)] = 117102, - [SMALL_STATE(2277)] = 117146, - [SMALL_STATE(2278)] = 117190, - [SMALL_STATE(2279)] = 117234, - [SMALL_STATE(2280)] = 117303, - [SMALL_STATE(2281)] = 117372, - [SMALL_STATE(2282)] = 117415, - [SMALL_STATE(2283)] = 117458, - [SMALL_STATE(2284)] = 117501, - [SMALL_STATE(2285)] = 117544, - [SMALL_STATE(2286)] = 117613, - [SMALL_STATE(2287)] = 117682, - [SMALL_STATE(2288)] = 117751, - [SMALL_STATE(2289)] = 117820, - [SMALL_STATE(2290)] = 117889, - [SMALL_STATE(2291)] = 117958, - [SMALL_STATE(2292)] = 118027, - [SMALL_STATE(2293)] = 118096, - [SMALL_STATE(2294)] = 118139, - [SMALL_STATE(2295)] = 118182, - [SMALL_STATE(2296)] = 118251, - [SMALL_STATE(2297)] = 118320, - [SMALL_STATE(2298)] = 118389, - [SMALL_STATE(2299)] = 118434, - [SMALL_STATE(2300)] = 118503, - [SMALL_STATE(2301)] = 118572, - [SMALL_STATE(2302)] = 118641, - [SMALL_STATE(2303)] = 118710, - [SMALL_STATE(2304)] = 118779, - [SMALL_STATE(2305)] = 118848, - [SMALL_STATE(2306)] = 118917, - [SMALL_STATE(2307)] = 118986, - [SMALL_STATE(2308)] = 119055, - [SMALL_STATE(2309)] = 119124, - [SMALL_STATE(2310)] = 119193, - [SMALL_STATE(2311)] = 119236, - [SMALL_STATE(2312)] = 119305, - [SMALL_STATE(2313)] = 119374, - [SMALL_STATE(2314)] = 119419, - [SMALL_STATE(2315)] = 119462, - [SMALL_STATE(2316)] = 119505, - [SMALL_STATE(2317)] = 119548, - [SMALL_STATE(2318)] = 119591, - [SMALL_STATE(2319)] = 119634, - [SMALL_STATE(2320)] = 119677, - [SMALL_STATE(2321)] = 119746, - [SMALL_STATE(2322)] = 119789, - [SMALL_STATE(2323)] = 119858, - [SMALL_STATE(2324)] = 119901, - [SMALL_STATE(2325)] = 119944, - [SMALL_STATE(2326)] = 120013, - [SMALL_STATE(2327)] = 120056, - [SMALL_STATE(2328)] = 120125, - [SMALL_STATE(2329)] = 120194, - [SMALL_STATE(2330)] = 120237, - [SMALL_STATE(2331)] = 120306, - [SMALL_STATE(2332)] = 120351, - [SMALL_STATE(2333)] = 120420, - [SMALL_STATE(2334)] = 120489, - [SMALL_STATE(2335)] = 120532, - [SMALL_STATE(2336)] = 120583, - [SMALL_STATE(2337)] = 120626, - [SMALL_STATE(2338)] = 120669, - [SMALL_STATE(2339)] = 120738, - [SMALL_STATE(2340)] = 120795, - [SMALL_STATE(2341)] = 120838, - [SMALL_STATE(2342)] = 120881, - [SMALL_STATE(2343)] = 120950, - [SMALL_STATE(2344)] = 121019, - [SMALL_STATE(2345)] = 121078, - [SMALL_STATE(2346)] = 121121, - [SMALL_STATE(2347)] = 121182, - [SMALL_STATE(2348)] = 121225, - [SMALL_STATE(2349)] = 121288, - [SMALL_STATE(2350)] = 121331, - [SMALL_STATE(2351)] = 121400, - [SMALL_STATE(2352)] = 121465, - [SMALL_STATE(2353)] = 121534, - [SMALL_STATE(2354)] = 121607, - [SMALL_STATE(2355)] = 121676, - [SMALL_STATE(2356)] = 121745, - [SMALL_STATE(2357)] = 121788, - [SMALL_STATE(2358)] = 121857, - [SMALL_STATE(2359)] = 121926, - [SMALL_STATE(2360)] = 121995, - [SMALL_STATE(2361)] = 122038, - [SMALL_STATE(2362)] = 122107, - [SMALL_STATE(2363)] = 122160, - [SMALL_STATE(2364)] = 122207, - [SMALL_STATE(2365)] = 122250, - [SMALL_STATE(2366)] = 122299, - [SMALL_STATE(2367)] = 122342, - [SMALL_STATE(2368)] = 122385, - [SMALL_STATE(2369)] = 122454, - [SMALL_STATE(2370)] = 122509, - [SMALL_STATE(2371)] = 122578, - [SMALL_STATE(2372)] = 122647, - [SMALL_STATE(2373)] = 122714, - [SMALL_STATE(2374)] = 122757, - [SMALL_STATE(2375)] = 122826, - [SMALL_STATE(2376)] = 122895, - [SMALL_STATE(2377)] = 122964, - [SMALL_STATE(2378)] = 123033, - [SMALL_STATE(2379)] = 123102, - [SMALL_STATE(2380)] = 123171, - [SMALL_STATE(2381)] = 123240, - [SMALL_STATE(2382)] = 123309, - [SMALL_STATE(2383)] = 123378, - [SMALL_STATE(2384)] = 123447, - [SMALL_STATE(2385)] = 123516, - [SMALL_STATE(2386)] = 123559, - [SMALL_STATE(2387)] = 123602, - [SMALL_STATE(2388)] = 123645, - [SMALL_STATE(2389)] = 123714, - [SMALL_STATE(2390)] = 123783, - [SMALL_STATE(2391)] = 123852, - [SMALL_STATE(2392)] = 123921, - [SMALL_STATE(2393)] = 123964, - [SMALL_STATE(2394)] = 124033, - [SMALL_STATE(2395)] = 124102, - [SMALL_STATE(2396)] = 124145, - [SMALL_STATE(2397)] = 124214, - [SMALL_STATE(2398)] = 124257, - [SMALL_STATE(2399)] = 124326, - [SMALL_STATE(2400)] = 124395, - [SMALL_STATE(2401)] = 124464, - [SMALL_STATE(2402)] = 124533, - [SMALL_STATE(2403)] = 124602, - [SMALL_STATE(2404)] = 124671, - [SMALL_STATE(2405)] = 124714, - [SMALL_STATE(2406)] = 124783, - [SMALL_STATE(2407)] = 124852, - [SMALL_STATE(2408)] = 124895, - [SMALL_STATE(2409)] = 124938, - [SMALL_STATE(2410)] = 125007, - [SMALL_STATE(2411)] = 125076, - [SMALL_STATE(2412)] = 125145, - [SMALL_STATE(2413)] = 125188, - [SMALL_STATE(2414)] = 125257, - [SMALL_STATE(2415)] = 125326, - [SMALL_STATE(2416)] = 125395, - [SMALL_STATE(2417)] = 125464, - [SMALL_STATE(2418)] = 125533, - [SMALL_STATE(2419)] = 125602, - [SMALL_STATE(2420)] = 125671, - [SMALL_STATE(2421)] = 125740, - [SMALL_STATE(2422)] = 125809, - [SMALL_STATE(2423)] = 125851, - [SMALL_STATE(2424)] = 125893, - [SMALL_STATE(2425)] = 125935, - [SMALL_STATE(2426)] = 125989, - [SMALL_STATE(2427)] = 126031, - [SMALL_STATE(2428)] = 126073, - [SMALL_STATE(2429)] = 126115, - [SMALL_STATE(2430)] = 126157, - [SMALL_STATE(2431)] = 126199, - [SMALL_STATE(2432)] = 126241, - [SMALL_STATE(2433)] = 126283, - [SMALL_STATE(2434)] = 126325, - [SMALL_STATE(2435)] = 126375, - [SMALL_STATE(2436)] = 126417, - [SMALL_STATE(2437)] = 126459, - [SMALL_STATE(2438)] = 126501, - [SMALL_STATE(2439)] = 126543, - [SMALL_STATE(2440)] = 126585, - [SMALL_STATE(2441)] = 126627, - [SMALL_STATE(2442)] = 126669, - [SMALL_STATE(2443)] = 126725, - [SMALL_STATE(2444)] = 126795, - [SMALL_STATE(2445)] = 126837, - [SMALL_STATE(2446)] = 126879, - [SMALL_STATE(2447)] = 126927, - [SMALL_STATE(2448)] = 126969, - [SMALL_STATE(2449)] = 127013, - [SMALL_STATE(2450)] = 127055, - [SMALL_STATE(2451)] = 127097, - [SMALL_STATE(2452)] = 127139, - [SMALL_STATE(2453)] = 127181, - [SMALL_STATE(2454)] = 127239, - [SMALL_STATE(2455)] = 127281, - [SMALL_STATE(2456)] = 127341, - [SMALL_STATE(2457)] = 127383, - [SMALL_STATE(2458)] = 127453, - [SMALL_STATE(2459)] = 127515, - [SMALL_STATE(2460)] = 127557, - [SMALL_STATE(2461)] = 127599, - [SMALL_STATE(2462)] = 127641, - [SMALL_STATE(2463)] = 127693, - [SMALL_STATE(2464)] = 127735, - [SMALL_STATE(2465)] = 127799, - [SMALL_STATE(2466)] = 127841, - [SMALL_STATE(2467)] = 127883, - [SMALL_STATE(2468)] = 127925, - [SMALL_STATE(2469)] = 127967, - [SMALL_STATE(2470)] = 128033, - [SMALL_STATE(2471)] = 128075, - [SMALL_STATE(2472)] = 128143, - [SMALL_STATE(2473)] = 128185, - [SMALL_STATE(2474)] = 128227, - [SMALL_STATE(2475)] = 128269, - [SMALL_STATE(2476)] = 128311, - [SMALL_STATE(2477)] = 128353, - [SMALL_STATE(2478)] = 128395, - [SMALL_STATE(2479)] = 128437, - [SMALL_STATE(2480)] = 128479, - [SMALL_STATE(2481)] = 128549, - [SMALL_STATE(2482)] = 128622, - [SMALL_STATE(2483)] = 128695, - [SMALL_STATE(2484)] = 128766, - [SMALL_STATE(2485)] = 128837, - [SMALL_STATE(2486)] = 128880, - [SMALL_STATE(2487)] = 128951, - [SMALL_STATE(2488)] = 129024, - [SMALL_STATE(2489)] = 129097, - [SMALL_STATE(2490)] = 129137, - [SMALL_STATE(2491)] = 129207, - [SMALL_STATE(2492)] = 129247, - [SMALL_STATE(2493)] = 129317, - [SMALL_STATE(2494)] = 129343, - [SMALL_STATE(2495)] = 129369, - [SMALL_STATE(2496)] = 129395, - [SMALL_STATE(2497)] = 129441, - [SMALL_STATE(2498)] = 129481, - [SMALL_STATE(2499)] = 129518, - [SMALL_STATE(2500)] = 129555, - [SMALL_STATE(2501)] = 129601, - [SMALL_STATE(2502)] = 129647, - [SMALL_STATE(2503)] = 129693, - [SMALL_STATE(2504)] = 129739, - [SMALL_STATE(2505)] = 129785, - [SMALL_STATE(2506)] = 129831, - [SMALL_STATE(2507)] = 129877, - [SMALL_STATE(2508)] = 129923, - [SMALL_STATE(2509)] = 129969, - [SMALL_STATE(2510)] = 130003, - [SMALL_STATE(2511)] = 130049, - [SMALL_STATE(2512)] = 130095, - [SMALL_STATE(2513)] = 130141, - [SMALL_STATE(2514)] = 130187, - [SMALL_STATE(2515)] = 130221, - [SMALL_STATE(2516)] = 130267, - [SMALL_STATE(2517)] = 130294, - [SMALL_STATE(2518)] = 130319, - [SMALL_STATE(2519)] = 130344, - [SMALL_STATE(2520)] = 130367, - [SMALL_STATE(2521)] = 130392, - [SMALL_STATE(2522)] = 130424, - [SMALL_STATE(2523)] = 130456, - [SMALL_STATE(2524)] = 130488, - [SMALL_STATE(2525)] = 130524, - [SMALL_STATE(2526)] = 130546, - [SMALL_STATE(2527)] = 130568, - [SMALL_STATE(2528)] = 130606, - [SMALL_STATE(2529)] = 130628, - [SMALL_STATE(2530)] = 130666, - [SMALL_STATE(2531)] = 130698, - [SMALL_STATE(2532)] = 130724, - [SMALL_STATE(2533)] = 130760, - [SMALL_STATE(2534)] = 130798, - [SMALL_STATE(2535)] = 130820, - [SMALL_STATE(2536)] = 130842, - [SMALL_STATE(2537)] = 130864, - [SMALL_STATE(2538)] = 130892, - [SMALL_STATE(2539)] = 130918, - [SMALL_STATE(2540)] = 130946, - [SMALL_STATE(2541)] = 130974, - [SMALL_STATE(2542)] = 131002, - [SMALL_STATE(2543)] = 131024, - [SMALL_STATE(2544)] = 131050, - [SMALL_STATE(2545)] = 131082, - [SMALL_STATE(2546)] = 131114, - [SMALL_STATE(2547)] = 131152, - [SMALL_STATE(2548)] = 131188, - [SMALL_STATE(2549)] = 131226, - [SMALL_STATE(2550)] = 131264, - [SMALL_STATE(2551)] = 131296, - [SMALL_STATE(2552)] = 131328, - [SMALL_STATE(2553)] = 131354, - [SMALL_STATE(2554)] = 131390, - [SMALL_STATE(2555)] = 131422, - [SMALL_STATE(2556)] = 131448, - [SMALL_STATE(2557)] = 131486, - [SMALL_STATE(2558)] = 131508, - [SMALL_STATE(2559)] = 131534, - [SMALL_STATE(2560)] = 131566, - [SMALL_STATE(2561)] = 131604, - [SMALL_STATE(2562)] = 131626, - [SMALL_STATE(2563)] = 131664, - [SMALL_STATE(2564)] = 131700, - [SMALL_STATE(2565)] = 131722, - [SMALL_STATE(2566)] = 131754, - [SMALL_STATE(2567)] = 131792, - [SMALL_STATE(2568)] = 131824, - [SMALL_STATE(2569)] = 131846, - [SMALL_STATE(2570)] = 131868, - [SMALL_STATE(2571)] = 131894, - [SMALL_STATE(2572)] = 131920, - [SMALL_STATE(2573)] = 131946, - [SMALL_STATE(2574)] = 131982, - [SMALL_STATE(2575)] = 132008, - [SMALL_STATE(2576)] = 132046, - [SMALL_STATE(2577)] = 132084, - [SMALL_STATE(2578)] = 132116, - [SMALL_STATE(2579)] = 132154, - [SMALL_STATE(2580)] = 132186, - [SMALL_STATE(2581)] = 132212, - [SMALL_STATE(2582)] = 132240, - [SMALL_STATE(2583)] = 132268, - [SMALL_STATE(2584)] = 132304, - [SMALL_STATE(2585)] = 132342, - [SMALL_STATE(2586)] = 132380, - [SMALL_STATE(2587)] = 132406, - [SMALL_STATE(2588)] = 132432, - [SMALL_STATE(2589)] = 132458, - [SMALL_STATE(2590)] = 132484, - [SMALL_STATE(2591)] = 132506, - [SMALL_STATE(2592)] = 132542, - [SMALL_STATE(2593)] = 132564, - [SMALL_STATE(2594)] = 132590, - [SMALL_STATE(2595)] = 132628, - [SMALL_STATE(2596)] = 132649, - [SMALL_STATE(2597)] = 132668, - [SMALL_STATE(2598)] = 132689, - [SMALL_STATE(2599)] = 132710, - [SMALL_STATE(2600)] = 132731, - [SMALL_STATE(2601)] = 132750, - [SMALL_STATE(2602)] = 132769, - [SMALL_STATE(2603)] = 132797, - [SMALL_STATE(2604)] = 132829, - [SMALL_STATE(2605)] = 132857, - [SMALL_STATE(2606)] = 132885, - [SMALL_STATE(2607)] = 132919, - [SMALL_STATE(2608)] = 132951, - [SMALL_STATE(2609)] = 132983, - [SMALL_STATE(2610)] = 133011, - [SMALL_STATE(2611)] = 133039, - [SMALL_STATE(2612)] = 133067, - [SMALL_STATE(2613)] = 133095, - [SMALL_STATE(2614)] = 133123, - [SMALL_STATE(2615)] = 133151, - [SMALL_STATE(2616)] = 133183, - [SMALL_STATE(2617)] = 133215, - [SMALL_STATE(2618)] = 133243, - [SMALL_STATE(2619)] = 133271, - [SMALL_STATE(2620)] = 133299, - [SMALL_STATE(2621)] = 133327, - [SMALL_STATE(2622)] = 133359, - [SMALL_STATE(2623)] = 133391, - [SMALL_STATE(2624)] = 133423, - [SMALL_STATE(2625)] = 133451, - [SMALL_STATE(2626)] = 133483, - [SMALL_STATE(2627)] = 133511, - [SMALL_STATE(2628)] = 133539, - [SMALL_STATE(2629)] = 133567, - [SMALL_STATE(2630)] = 133599, - [SMALL_STATE(2631)] = 133631, - [SMALL_STATE(2632)] = 133663, - [SMALL_STATE(2633)] = 133695, - [SMALL_STATE(2634)] = 133727, - [SMALL_STATE(2635)] = 133759, - [SMALL_STATE(2636)] = 133787, - [SMALL_STATE(2637)] = 133819, - [SMALL_STATE(2638)] = 133851, - [SMALL_STATE(2639)] = 133879, - [SMALL_STATE(2640)] = 133907, - [SMALL_STATE(2641)] = 133929, - [SMALL_STATE(2642)] = 133957, - [SMALL_STATE(2643)] = 133989, - [SMALL_STATE(2644)] = 134019, - [SMALL_STATE(2645)] = 134041, - [SMALL_STATE(2646)] = 134069, - [SMALL_STATE(2647)] = 134091, - [SMALL_STATE(2648)] = 134119, - [SMALL_STATE(2649)] = 134151, - [SMALL_STATE(2650)] = 134183, - [SMALL_STATE(2651)] = 134217, - [SMALL_STATE(2652)] = 134245, - [SMALL_STATE(2653)] = 134277, - [SMALL_STATE(2654)] = 134309, - [SMALL_STATE(2655)] = 134339, - [SMALL_STATE(2656)] = 134367, - [SMALL_STATE(2657)] = 134395, - [SMALL_STATE(2658)] = 134423, - [SMALL_STATE(2659)] = 134455, - [SMALL_STATE(2660)] = 134477, - [SMALL_STATE(2661)] = 134509, - [SMALL_STATE(2662)] = 134528, - [SMALL_STATE(2663)] = 134547, - [SMALL_STATE(2664)] = 134574, - [SMALL_STATE(2665)] = 134601, - [SMALL_STATE(2666)] = 134620, - [SMALL_STATE(2667)] = 134647, - [SMALL_STATE(2668)] = 134674, - [SMALL_STATE(2669)] = 134701, - [SMALL_STATE(2670)] = 134728, - [SMALL_STATE(2671)] = 134755, - [SMALL_STATE(2672)] = 134782, - [SMALL_STATE(2673)] = 134801, - [SMALL_STATE(2674)] = 134820, - [SMALL_STATE(2675)] = 134847, - [SMALL_STATE(2676)] = 134876, - [SMALL_STATE(2677)] = 134903, - [SMALL_STATE(2678)] = 134922, - [SMALL_STATE(2679)] = 134949, - [SMALL_STATE(2680)] = 134976, - [SMALL_STATE(2681)] = 135003, - [SMALL_STATE(2682)] = 135030, - [SMALL_STATE(2683)] = 135057, - [SMALL_STATE(2684)] = 135084, - [SMALL_STATE(2685)] = 135111, - [SMALL_STATE(2686)] = 135138, - [SMALL_STATE(2687)] = 135165, - [SMALL_STATE(2688)] = 135184, - [SMALL_STATE(2689)] = 135203, - [SMALL_STATE(2690)] = 135230, - [SMALL_STATE(2691)] = 135249, - [SMALL_STATE(2692)] = 135268, - [SMALL_STATE(2693)] = 135287, - [SMALL_STATE(2694)] = 135306, - [SMALL_STATE(2695)] = 135333, - [SMALL_STATE(2696)] = 135360, - [SMALL_STATE(2697)] = 135389, - [SMALL_STATE(2698)] = 135416, - [SMALL_STATE(2699)] = 135437, - [SMALL_STATE(2700)] = 135466, - [SMALL_STATE(2701)] = 135493, - [SMALL_STATE(2702)] = 135520, - [SMALL_STATE(2703)] = 135547, - [SMALL_STATE(2704)] = 135574, - [SMALL_STATE(2705)] = 135601, - [SMALL_STATE(2706)] = 135630, - [SMALL_STATE(2707)] = 135656, - [SMALL_STATE(2708)] = 135682, - [SMALL_STATE(2709)] = 135708, - [SMALL_STATE(2710)] = 135736, - [SMALL_STATE(2711)] = 135764, - [SMALL_STATE(2712)] = 135792, - [SMALL_STATE(2713)] = 135816, - [SMALL_STATE(2714)] = 135844, - [SMALL_STATE(2715)] = 135870, - [SMALL_STATE(2716)] = 135894, - [SMALL_STATE(2717)] = 135920, - [SMALL_STATE(2718)] = 135944, - [SMALL_STATE(2719)] = 135972, - [SMALL_STATE(2720)] = 136000, - [SMALL_STATE(2721)] = 136026, - [SMALL_STATE(2722)] = 136052, - [SMALL_STATE(2723)] = 136080, - [SMALL_STATE(2724)] = 136104, - [SMALL_STATE(2725)] = 136132, - [SMALL_STATE(2726)] = 136160, - [SMALL_STATE(2727)] = 136186, - [SMALL_STATE(2728)] = 136212, - [SMALL_STATE(2729)] = 136236, - [SMALL_STATE(2730)] = 136262, - [SMALL_STATE(2731)] = 136290, - [SMALL_STATE(2732)] = 136316, - [SMALL_STATE(2733)] = 136342, - [SMALL_STATE(2734)] = 136368, - [SMALL_STATE(2735)] = 136388, - [SMALL_STATE(2736)] = 136414, - [SMALL_STATE(2737)] = 136440, - [SMALL_STATE(2738)] = 136466, - [SMALL_STATE(2739)] = 136490, - [SMALL_STATE(2740)] = 136518, - [SMALL_STATE(2741)] = 136546, - [SMALL_STATE(2742)] = 136564, - [SMALL_STATE(2743)] = 136590, - [SMALL_STATE(2744)] = 136616, - [SMALL_STATE(2745)] = 136642, - [SMALL_STATE(2746)] = 136668, - [SMALL_STATE(2747)] = 136694, - [SMALL_STATE(2748)] = 136720, - [SMALL_STATE(2749)] = 136738, - [SMALL_STATE(2750)] = 136764, - [SMALL_STATE(2751)] = 136790, - [SMALL_STATE(2752)] = 136812, - [SMALL_STATE(2753)] = 136838, - [SMALL_STATE(2754)] = 136864, - [SMALL_STATE(2755)] = 136890, - [SMALL_STATE(2756)] = 136916, - [SMALL_STATE(2757)] = 136936, - [SMALL_STATE(2758)] = 136962, - [SMALL_STATE(2759)] = 136988, - [SMALL_STATE(2760)] = 137014, - [SMALL_STATE(2761)] = 137034, - [SMALL_STATE(2762)] = 137062, - [SMALL_STATE(2763)] = 137084, - [SMALL_STATE(2764)] = 137112, - [SMALL_STATE(2765)] = 137138, - [SMALL_STATE(2766)] = 137158, - [SMALL_STATE(2767)] = 137186, - [SMALL_STATE(2768)] = 137212, - [SMALL_STATE(2769)] = 137240, - [SMALL_STATE(2770)] = 137266, - [SMALL_STATE(2771)] = 137292, - [SMALL_STATE(2772)] = 137318, - [SMALL_STATE(2773)] = 137344, - [SMALL_STATE(2774)] = 137370, - [SMALL_STATE(2775)] = 137398, - [SMALL_STATE(2776)] = 137421, - [SMALL_STATE(2777)] = 137442, - [SMALL_STATE(2778)] = 137461, - [SMALL_STATE(2779)] = 137484, - [SMALL_STATE(2780)] = 137499, - [SMALL_STATE(2781)] = 137520, - [SMALL_STATE(2782)] = 137543, - [SMALL_STATE(2783)] = 137564, - [SMALL_STATE(2784)] = 137579, - [SMALL_STATE(2785)] = 137598, - [SMALL_STATE(2786)] = 137615, - [SMALL_STATE(2787)] = 137638, - [SMALL_STATE(2788)] = 137661, - [SMALL_STATE(2789)] = 137684, - [SMALL_STATE(2790)] = 137707, - [SMALL_STATE(2791)] = 137726, - [SMALL_STATE(2792)] = 137749, - [SMALL_STATE(2793)] = 137772, - [SMALL_STATE(2794)] = 137795, - [SMALL_STATE(2795)] = 137818, - [SMALL_STATE(2796)] = 137841, - [SMALL_STATE(2797)] = 137864, - [SMALL_STATE(2798)] = 137887, - [SMALL_STATE(2799)] = 137912, - [SMALL_STATE(2800)] = 137935, - [SMALL_STATE(2801)] = 137958, - [SMALL_STATE(2802)] = 137983, - [SMALL_STATE(2803)] = 138006, - [SMALL_STATE(2804)] = 138029, - [SMALL_STATE(2805)] = 138052, - [SMALL_STATE(2806)] = 138075, - [SMALL_STATE(2807)] = 138098, - [SMALL_STATE(2808)] = 138115, - [SMALL_STATE(2809)] = 138140, - [SMALL_STATE(2810)] = 138163, - [SMALL_STATE(2811)] = 138186, - [SMALL_STATE(2812)] = 138209, - [SMALL_STATE(2813)] = 138226, - [SMALL_STATE(2814)] = 138241, - [SMALL_STATE(2815)] = 138266, - [SMALL_STATE(2816)] = 138283, - [SMALL_STATE(2817)] = 138306, - [SMALL_STATE(2818)] = 138329, - [SMALL_STATE(2819)] = 138346, - [SMALL_STATE(2820)] = 138371, - [SMALL_STATE(2821)] = 138394, - [SMALL_STATE(2822)] = 138417, - [SMALL_STATE(2823)] = 138434, - [SMALL_STATE(2824)] = 138453, - [SMALL_STATE(2825)] = 138478, - [SMALL_STATE(2826)] = 138503, - [SMALL_STATE(2827)] = 138526, - [SMALL_STATE(2828)] = 138551, - [SMALL_STATE(2829)] = 138574, - [SMALL_STATE(2830)] = 138597, - [SMALL_STATE(2831)] = 138620, - [SMALL_STATE(2832)] = 138643, - [SMALL_STATE(2833)] = 138666, - [SMALL_STATE(2834)] = 138689, - [SMALL_STATE(2835)] = 138712, - [SMALL_STATE(2836)] = 138737, - [SMALL_STATE(2837)] = 138762, - [SMALL_STATE(2838)] = 138787, - [SMALL_STATE(2839)] = 138812, - [SMALL_STATE(2840)] = 138837, - [SMALL_STATE(2841)] = 138862, - [SMALL_STATE(2842)] = 138885, - [SMALL_STATE(2843)] = 138901, - [SMALL_STATE(2844)] = 138923, - [SMALL_STATE(2845)] = 138939, - [SMALL_STATE(2846)] = 138961, - [SMALL_STATE(2847)] = 138975, - [SMALL_STATE(2848)] = 138995, - [SMALL_STATE(2849)] = 139017, - [SMALL_STATE(2850)] = 139037, - [SMALL_STATE(2851)] = 139051, - [SMALL_STATE(2852)] = 139073, - [SMALL_STATE(2853)] = 139095, - [SMALL_STATE(2854)] = 139111, - [SMALL_STATE(2855)] = 139129, - [SMALL_STATE(2856)] = 139151, - [SMALL_STATE(2857)] = 139173, - [SMALL_STATE(2858)] = 139187, - [SMALL_STATE(2859)] = 139209, - [SMALL_STATE(2860)] = 139229, - [SMALL_STATE(2861)] = 139251, - [SMALL_STATE(2862)] = 139273, - [SMALL_STATE(2863)] = 139293, - [SMALL_STATE(2864)] = 139307, - [SMALL_STATE(2865)] = 139329, - [SMALL_STATE(2866)] = 139345, - [SMALL_STATE(2867)] = 139367, - [SMALL_STATE(2868)] = 139389, - [SMALL_STATE(2869)] = 139411, - [SMALL_STATE(2870)] = 139431, - [SMALL_STATE(2871)] = 139453, - [SMALL_STATE(2872)] = 139467, - [SMALL_STATE(2873)] = 139489, - [SMALL_STATE(2874)] = 139511, - [SMALL_STATE(2875)] = 139533, - [SMALL_STATE(2876)] = 139547, - [SMALL_STATE(2877)] = 139569, - [SMALL_STATE(2878)] = 139591, - [SMALL_STATE(2879)] = 139611, - [SMALL_STATE(2880)] = 139627, - [SMALL_STATE(2881)] = 139641, - [SMALL_STATE(2882)] = 139657, - [SMALL_STATE(2883)] = 139673, - [SMALL_STATE(2884)] = 139689, - [SMALL_STATE(2885)] = 139711, - [SMALL_STATE(2886)] = 139725, - [SMALL_STATE(2887)] = 139739, - [SMALL_STATE(2888)] = 139753, - [SMALL_STATE(2889)] = 139775, - [SMALL_STATE(2890)] = 139795, - [SMALL_STATE(2891)] = 139815, - [SMALL_STATE(2892)] = 139835, - [SMALL_STATE(2893)] = 139855, - [SMALL_STATE(2894)] = 139869, - [SMALL_STATE(2895)] = 139891, - [SMALL_STATE(2896)] = 139911, - [SMALL_STATE(2897)] = 139931, - [SMALL_STATE(2898)] = 139953, - [SMALL_STATE(2899)] = 139973, - [SMALL_STATE(2900)] = 139995, - [SMALL_STATE(2901)] = 140009, - [SMALL_STATE(2902)] = 140025, - [SMALL_STATE(2903)] = 140047, - [SMALL_STATE(2904)] = 140063, - [SMALL_STATE(2905)] = 140085, - [SMALL_STATE(2906)] = 140107, - [SMALL_STATE(2907)] = 140127, - [SMALL_STATE(2908)] = 140141, - [SMALL_STATE(2909)] = 140157, - [SMALL_STATE(2910)] = 140177, - [SMALL_STATE(2911)] = 140191, - [SMALL_STATE(2912)] = 140205, - [SMALL_STATE(2913)] = 140225, - [SMALL_STATE(2914)] = 140241, - [SMALL_STATE(2915)] = 140255, - [SMALL_STATE(2916)] = 140277, - [SMALL_STATE(2917)] = 140297, - [SMALL_STATE(2918)] = 140311, - [SMALL_STATE(2919)] = 140331, - [SMALL_STATE(2920)] = 140353, - [SMALL_STATE(2921)] = 140369, - [SMALL_STATE(2922)] = 140383, - [SMALL_STATE(2923)] = 140403, - [SMALL_STATE(2924)] = 140419, - [SMALL_STATE(2925)] = 140439, - [SMALL_STATE(2926)] = 140453, - [SMALL_STATE(2927)] = 140475, - [SMALL_STATE(2928)] = 140491, - [SMALL_STATE(2929)] = 140511, - [SMALL_STATE(2930)] = 140527, - [SMALL_STATE(2931)] = 140543, - [SMALL_STATE(2932)] = 140559, - [SMALL_STATE(2933)] = 140579, - [SMALL_STATE(2934)] = 140601, - [SMALL_STATE(2935)] = 140621, - [SMALL_STATE(2936)] = 140637, - [SMALL_STATE(2937)] = 140657, - [SMALL_STATE(2938)] = 140673, - [SMALL_STATE(2939)] = 140693, - [SMALL_STATE(2940)] = 140709, - [SMALL_STATE(2941)] = 140729, - [SMALL_STATE(2942)] = 140745, - [SMALL_STATE(2943)] = 140765, - [SMALL_STATE(2944)] = 140781, - [SMALL_STATE(2945)] = 140795, - [SMALL_STATE(2946)] = 140817, - [SMALL_STATE(2947)] = 140833, - [SMALL_STATE(2948)] = 140849, - [SMALL_STATE(2949)] = 140869, - [SMALL_STATE(2950)] = 140885, - [SMALL_STATE(2951)] = 140907, - [SMALL_STATE(2952)] = 140923, - [SMALL_STATE(2953)] = 140941, - [SMALL_STATE(2954)] = 140955, - [SMALL_STATE(2955)] = 140975, - [SMALL_STATE(2956)] = 140991, - [SMALL_STATE(2957)] = 141007, - [SMALL_STATE(2958)] = 141021, - [SMALL_STATE(2959)] = 141037, - [SMALL_STATE(2960)] = 141053, - [SMALL_STATE(2961)] = 141069, - [SMALL_STATE(2962)] = 141085, - [SMALL_STATE(2963)] = 141107, - [SMALL_STATE(2964)] = 141123, - [SMALL_STATE(2965)] = 141139, - [SMALL_STATE(2966)] = 141159, - [SMALL_STATE(2967)] = 141175, - [SMALL_STATE(2968)] = 141191, - [SMALL_STATE(2969)] = 141213, - [SMALL_STATE(2970)] = 141229, - [SMALL_STATE(2971)] = 141243, - [SMALL_STATE(2972)] = 141263, - [SMALL_STATE(2973)] = 141283, - [SMALL_STATE(2974)] = 141297, - [SMALL_STATE(2975)] = 141311, - [SMALL_STATE(2976)] = 141327, - [SMALL_STATE(2977)] = 141343, - [SMALL_STATE(2978)] = 141359, - [SMALL_STATE(2979)] = 141375, - [SMALL_STATE(2980)] = 141397, - [SMALL_STATE(2981)] = 141413, - [SMALL_STATE(2982)] = 141429, - [SMALL_STATE(2983)] = 141451, - [SMALL_STATE(2984)] = 141467, - [SMALL_STATE(2985)] = 141483, - [SMALL_STATE(2986)] = 141499, - [SMALL_STATE(2987)] = 141515, - [SMALL_STATE(2988)] = 141529, - [SMALL_STATE(2989)] = 141551, - [SMALL_STATE(2990)] = 141567, - [SMALL_STATE(2991)] = 141587, - [SMALL_STATE(2992)] = 141609, - [SMALL_STATE(2993)] = 141631, - [SMALL_STATE(2994)] = 141653, - [SMALL_STATE(2995)] = 141667, - [SMALL_STATE(2996)] = 141681, - [SMALL_STATE(2997)] = 141703, - [SMALL_STATE(2998)] = 141719, - [SMALL_STATE(2999)] = 141735, - [SMALL_STATE(3000)] = 141751, - [SMALL_STATE(3001)] = 141767, - [SMALL_STATE(3002)] = 141783, - [SMALL_STATE(3003)] = 141805, - [SMALL_STATE(3004)] = 141821, - [SMALL_STATE(3005)] = 141843, - [SMALL_STATE(3006)] = 141859, - [SMALL_STATE(3007)] = 141875, - [SMALL_STATE(3008)] = 141891, - [SMALL_STATE(3009)] = 141905, - [SMALL_STATE(3010)] = 141927, - [SMALL_STATE(3011)] = 141943, - [SMALL_STATE(3012)] = 141959, - [SMALL_STATE(3013)] = 141979, - [SMALL_STATE(3014)] = 141995, - [SMALL_STATE(3015)] = 142011, - [SMALL_STATE(3016)] = 142025, - [SMALL_STATE(3017)] = 142041, - [SMALL_STATE(3018)] = 142057, - [SMALL_STATE(3019)] = 142073, - [SMALL_STATE(3020)] = 142089, - [SMALL_STATE(3021)] = 142111, - [SMALL_STATE(3022)] = 142127, - [SMALL_STATE(3023)] = 142143, - [SMALL_STATE(3024)] = 142159, - [SMALL_STATE(3025)] = 142181, - [SMALL_STATE(3026)] = 142203, - [SMALL_STATE(3027)] = 142219, - [SMALL_STATE(3028)] = 142235, - [SMALL_STATE(3029)] = 142251, - [SMALL_STATE(3030)] = 142273, - [SMALL_STATE(3031)] = 142289, - [SMALL_STATE(3032)] = 142309, - [SMALL_STATE(3033)] = 142325, - [SMALL_STATE(3034)] = 142341, - [SMALL_STATE(3035)] = 142357, - [SMALL_STATE(3036)] = 142373, - [SMALL_STATE(3037)] = 142393, - [SMALL_STATE(3038)] = 142409, - [SMALL_STATE(3039)] = 142429, - [SMALL_STATE(3040)] = 142443, - [SMALL_STATE(3041)] = 142459, - [SMALL_STATE(3042)] = 142475, - [SMALL_STATE(3043)] = 142491, - [SMALL_STATE(3044)] = 142507, - [SMALL_STATE(3045)] = 142523, - [SMALL_STATE(3046)] = 142539, - [SMALL_STATE(3047)] = 142555, - [SMALL_STATE(3048)] = 142573, - [SMALL_STATE(3049)] = 142593, - [SMALL_STATE(3050)] = 142607, - [SMALL_STATE(3051)] = 142623, - [SMALL_STATE(3052)] = 142639, - [SMALL_STATE(3053)] = 142653, - [SMALL_STATE(3054)] = 142669, - [SMALL_STATE(3055)] = 142685, - [SMALL_STATE(3056)] = 142705, - [SMALL_STATE(3057)] = 142721, - [SMALL_STATE(3058)] = 142743, - [SMALL_STATE(3059)] = 142759, - [SMALL_STATE(3060)] = 142775, - [SMALL_STATE(3061)] = 142795, - [SMALL_STATE(3062)] = 142817, - [SMALL_STATE(3063)] = 142833, - [SMALL_STATE(3064)] = 142849, - [SMALL_STATE(3065)] = 142871, - [SMALL_STATE(3066)] = 142887, - [SMALL_STATE(3067)] = 142907, - [SMALL_STATE(3068)] = 142929, - [SMALL_STATE(3069)] = 142945, - [SMALL_STATE(3070)] = 142959, - [SMALL_STATE(3071)] = 142975, - [SMALL_STATE(3072)] = 142991, - [SMALL_STATE(3073)] = 143007, - [SMALL_STATE(3074)] = 143024, - [SMALL_STATE(3075)] = 143041, - [SMALL_STATE(3076)] = 143056, - [SMALL_STATE(3077)] = 143075, - [SMALL_STATE(3078)] = 143090, - [SMALL_STATE(3079)] = 143105, - [SMALL_STATE(3080)] = 143120, - [SMALL_STATE(3081)] = 143139, - [SMALL_STATE(3082)] = 143156, - [SMALL_STATE(3083)] = 143171, - [SMALL_STATE(3084)] = 143186, - [SMALL_STATE(3085)] = 143203, - [SMALL_STATE(3086)] = 143222, - [SMALL_STATE(3087)] = 143241, - [SMALL_STATE(3088)] = 143260, - [SMALL_STATE(3089)] = 143279, - [SMALL_STATE(3090)] = 143294, - [SMALL_STATE(3091)] = 143313, - [SMALL_STATE(3092)] = 143328, - [SMALL_STATE(3093)] = 143343, - [SMALL_STATE(3094)] = 143360, - [SMALL_STATE(3095)] = 143375, - [SMALL_STATE(3096)] = 143390, - [SMALL_STATE(3097)] = 143407, - [SMALL_STATE(3098)] = 143422, - [SMALL_STATE(3099)] = 143439, - [SMALL_STATE(3100)] = 143454, - [SMALL_STATE(3101)] = 143469, - [SMALL_STATE(3102)] = 143486, - [SMALL_STATE(3103)] = 143505, - [SMALL_STATE(3104)] = 143520, - [SMALL_STATE(3105)] = 143535, - [SMALL_STATE(3106)] = 143550, - [SMALL_STATE(3107)] = 143569, - [SMALL_STATE(3108)] = 143584, - [SMALL_STATE(3109)] = 143599, - [SMALL_STATE(3110)] = 143618, - [SMALL_STATE(3111)] = 143633, - [SMALL_STATE(3112)] = 143652, - [SMALL_STATE(3113)] = 143671, - [SMALL_STATE(3114)] = 143690, - [SMALL_STATE(3115)] = 143707, - [SMALL_STATE(3116)] = 143724, - [SMALL_STATE(3117)] = 143739, - [SMALL_STATE(3118)] = 143754, - [SMALL_STATE(3119)] = 143769, - [SMALL_STATE(3120)] = 143788, - [SMALL_STATE(3121)] = 143807, - [SMALL_STATE(3122)] = 143822, - [SMALL_STATE(3123)] = 143839, - [SMALL_STATE(3124)] = 143854, - [SMALL_STATE(3125)] = 143869, - [SMALL_STATE(3126)] = 143886, - [SMALL_STATE(3127)] = 143901, - [SMALL_STATE(3128)] = 143916, - [SMALL_STATE(3129)] = 143931, - [SMALL_STATE(3130)] = 143946, - [SMALL_STATE(3131)] = 143961, - [SMALL_STATE(3132)] = 143976, - [SMALL_STATE(3133)] = 143993, - [SMALL_STATE(3134)] = 144008, - [SMALL_STATE(3135)] = 144023, - [SMALL_STATE(3136)] = 144042, - [SMALL_STATE(3137)] = 144061, - [SMALL_STATE(3138)] = 144080, - [SMALL_STATE(3139)] = 144095, - [SMALL_STATE(3140)] = 144110, - [SMALL_STATE(3141)] = 144129, - [SMALL_STATE(3142)] = 144148, - [SMALL_STATE(3143)] = 144163, - [SMALL_STATE(3144)] = 144182, - [SMALL_STATE(3145)] = 144197, - [SMALL_STATE(3146)] = 144212, - [SMALL_STATE(3147)] = 144227, - [SMALL_STATE(3148)] = 144242, - [SMALL_STATE(3149)] = 144261, - [SMALL_STATE(3150)] = 144276, - [SMALL_STATE(3151)] = 144291, - [SMALL_STATE(3152)] = 144306, - [SMALL_STATE(3153)] = 144321, - [SMALL_STATE(3154)] = 144336, - [SMALL_STATE(3155)] = 144351, - [SMALL_STATE(3156)] = 144366, - [SMALL_STATE(3157)] = 144383, - [SMALL_STATE(3158)] = 144400, - [SMALL_STATE(3159)] = 144417, - [SMALL_STATE(3160)] = 144434, - [SMALL_STATE(3161)] = 144451, - [SMALL_STATE(3162)] = 144468, - [SMALL_STATE(3163)] = 144485, - [SMALL_STATE(3164)] = 144502, - [SMALL_STATE(3165)] = 144519, - [SMALL_STATE(3166)] = 144536, - [SMALL_STATE(3167)] = 144553, - [SMALL_STATE(3168)] = 144570, - [SMALL_STATE(3169)] = 144587, - [SMALL_STATE(3170)] = 144606, - [SMALL_STATE(3171)] = 144625, - [SMALL_STATE(3172)] = 144640, - [SMALL_STATE(3173)] = 144657, - [SMALL_STATE(3174)] = 144674, - [SMALL_STATE(3175)] = 144693, - [SMALL_STATE(3176)] = 144708, - [SMALL_STATE(3177)] = 144727, - [SMALL_STATE(3178)] = 144744, - [SMALL_STATE(3179)] = 144761, - [SMALL_STATE(3180)] = 144776, - [SMALL_STATE(3181)] = 144793, - [SMALL_STATE(3182)] = 144810, - [SMALL_STATE(3183)] = 144825, - [SMALL_STATE(3184)] = 144842, - [SMALL_STATE(3185)] = 144859, - [SMALL_STATE(3186)] = 144878, - [SMALL_STATE(3187)] = 144897, - [SMALL_STATE(3188)] = 144914, - [SMALL_STATE(3189)] = 144933, - [SMALL_STATE(3190)] = 144950, - [SMALL_STATE(3191)] = 144967, - [SMALL_STATE(3192)] = 144984, - [SMALL_STATE(3193)] = 145001, - [SMALL_STATE(3194)] = 145018, - [SMALL_STATE(3195)] = 145035, - [SMALL_STATE(3196)] = 145052, - [SMALL_STATE(3197)] = 145071, - [SMALL_STATE(3198)] = 145088, - [SMALL_STATE(3199)] = 145105, - [SMALL_STATE(3200)] = 145122, - [SMALL_STATE(3201)] = 145139, - [SMALL_STATE(3202)] = 145158, - [SMALL_STATE(3203)] = 145177, - [SMALL_STATE(3204)] = 145194, - [SMALL_STATE(3205)] = 145213, - [SMALL_STATE(3206)] = 145228, - [SMALL_STATE(3207)] = 145245, - [SMALL_STATE(3208)] = 145262, - [SMALL_STATE(3209)] = 145281, - [SMALL_STATE(3210)] = 145298, - [SMALL_STATE(3211)] = 145315, - [SMALL_STATE(3212)] = 145332, - [SMALL_STATE(3213)] = 145349, - [SMALL_STATE(3214)] = 145368, - [SMALL_STATE(3215)] = 145387, - [SMALL_STATE(3216)] = 145406, - [SMALL_STATE(3217)] = 145423, - [SMALL_STATE(3218)] = 145440, - [SMALL_STATE(3219)] = 145457, - [SMALL_STATE(3220)] = 145476, - [SMALL_STATE(3221)] = 145495, - [SMALL_STATE(3222)] = 145510, - [SMALL_STATE(3223)] = 145525, - [SMALL_STATE(3224)] = 145542, - [SMALL_STATE(3225)] = 145559, - [SMALL_STATE(3226)] = 145574, - [SMALL_STATE(3227)] = 145591, - [SMALL_STATE(3228)] = 145608, - [SMALL_STATE(3229)] = 145623, - [SMALL_STATE(3230)] = 145642, - [SMALL_STATE(3231)] = 145661, - [SMALL_STATE(3232)] = 145680, - [SMALL_STATE(3233)] = 145695, - [SMALL_STATE(3234)] = 145710, - [SMALL_STATE(3235)] = 145727, - [SMALL_STATE(3236)] = 145742, - [SMALL_STATE(3237)] = 145759, - [SMALL_STATE(3238)] = 145776, - [SMALL_STATE(3239)] = 145795, - [SMALL_STATE(3240)] = 145810, - [SMALL_STATE(3241)] = 145825, - [SMALL_STATE(3242)] = 145840, - [SMALL_STATE(3243)] = 145859, - [SMALL_STATE(3244)] = 145878, - [SMALL_STATE(3245)] = 145897, - [SMALL_STATE(3246)] = 145914, - [SMALL_STATE(3247)] = 145929, - [SMALL_STATE(3248)] = 145944, - [SMALL_STATE(3249)] = 145959, - [SMALL_STATE(3250)] = 145978, - [SMALL_STATE(3251)] = 145997, - [SMALL_STATE(3252)] = 146012, - [SMALL_STATE(3253)] = 146027, - [SMALL_STATE(3254)] = 146042, - [SMALL_STATE(3255)] = 146061, - [SMALL_STATE(3256)] = 146076, - [SMALL_STATE(3257)] = 146091, - [SMALL_STATE(3258)] = 146106, - [SMALL_STATE(3259)] = 146123, - [SMALL_STATE(3260)] = 146138, - [SMALL_STATE(3261)] = 146153, - [SMALL_STATE(3262)] = 146170, - [SMALL_STATE(3263)] = 146185, - [SMALL_STATE(3264)] = 146200, - [SMALL_STATE(3265)] = 146217, - [SMALL_STATE(3266)] = 146232, - [SMALL_STATE(3267)] = 146247, - [SMALL_STATE(3268)] = 146262, - [SMALL_STATE(3269)] = 146279, - [SMALL_STATE(3270)] = 146294, - [SMALL_STATE(3271)] = 146309, - [SMALL_STATE(3272)] = 146324, - [SMALL_STATE(3273)] = 146343, - [SMALL_STATE(3274)] = 146362, - [SMALL_STATE(3275)] = 146381, - [SMALL_STATE(3276)] = 146396, - [SMALL_STATE(3277)] = 146415, - [SMALL_STATE(3278)] = 146432, - [SMALL_STATE(3279)] = 146447, - [SMALL_STATE(3280)] = 146462, - [SMALL_STATE(3281)] = 146477, - [SMALL_STATE(3282)] = 146492, - [SMALL_STATE(3283)] = 146507, - [SMALL_STATE(3284)] = 146522, - [SMALL_STATE(3285)] = 146537, - [SMALL_STATE(3286)] = 146552, - [SMALL_STATE(3287)] = 146567, - [SMALL_STATE(3288)] = 146582, - [SMALL_STATE(3289)] = 146597, - [SMALL_STATE(3290)] = 146612, - [SMALL_STATE(3291)] = 146627, - [SMALL_STATE(3292)] = 146642, - [SMALL_STATE(3293)] = 146657, - [SMALL_STATE(3294)] = 146672, - [SMALL_STATE(3295)] = 146687, - [SMALL_STATE(3296)] = 146704, - [SMALL_STATE(3297)] = 146719, - [SMALL_STATE(3298)] = 146734, - [SMALL_STATE(3299)] = 146749, - [SMALL_STATE(3300)] = 146766, - [SMALL_STATE(3301)] = 146781, - [SMALL_STATE(3302)] = 146798, - [SMALL_STATE(3303)] = 146815, - [SMALL_STATE(3304)] = 146830, - [SMALL_STATE(3305)] = 146845, - [SMALL_STATE(3306)] = 146860, - [SMALL_STATE(3307)] = 146879, - [SMALL_STATE(3308)] = 146894, - [SMALL_STATE(3309)] = 146909, - [SMALL_STATE(3310)] = 146928, - [SMALL_STATE(3311)] = 146947, - [SMALL_STATE(3312)] = 146962, - [SMALL_STATE(3313)] = 146977, - [SMALL_STATE(3314)] = 146992, - [SMALL_STATE(3315)] = 147011, - [SMALL_STATE(3316)] = 147026, - [SMALL_STATE(3317)] = 147043, - [SMALL_STATE(3318)] = 147060, - [SMALL_STATE(3319)] = 147076, - [SMALL_STATE(3320)] = 147090, - [SMALL_STATE(3321)] = 147104, - [SMALL_STATE(3322)] = 147120, - [SMALL_STATE(3323)] = 147136, - [SMALL_STATE(3324)] = 147152, - [SMALL_STATE(3325)] = 147166, - [SMALL_STATE(3326)] = 147182, - [SMALL_STATE(3327)] = 147198, - [SMALL_STATE(3328)] = 147212, - [SMALL_STATE(3329)] = 147226, - [SMALL_STATE(3330)] = 147242, - [SMALL_STATE(3331)] = 147258, - [SMALL_STATE(3332)] = 147274, - [SMALL_STATE(3333)] = 147290, - [SMALL_STATE(3334)] = 147306, - [SMALL_STATE(3335)] = 147320, - [SMALL_STATE(3336)] = 147336, - [SMALL_STATE(3337)] = 147352, - [SMALL_STATE(3338)] = 147366, - [SMALL_STATE(3339)] = 147380, - [SMALL_STATE(3340)] = 147396, - [SMALL_STATE(3341)] = 147412, - [SMALL_STATE(3342)] = 147424, - [SMALL_STATE(3343)] = 147440, - [SMALL_STATE(3344)] = 147456, - [SMALL_STATE(3345)] = 147470, - [SMALL_STATE(3346)] = 147486, - [SMALL_STATE(3347)] = 147500, - [SMALL_STATE(3348)] = 147514, - [SMALL_STATE(3349)] = 147530, - [SMALL_STATE(3350)] = 147546, - [SMALL_STATE(3351)] = 147560, - [SMALL_STATE(3352)] = 147576, - [SMALL_STATE(3353)] = 147590, - [SMALL_STATE(3354)] = 147606, - [SMALL_STATE(3355)] = 147622, - [SMALL_STATE(3356)] = 147638, - [SMALL_STATE(3357)] = 147654, - [SMALL_STATE(3358)] = 147670, - [SMALL_STATE(3359)] = 147684, - [SMALL_STATE(3360)] = 147700, - [SMALL_STATE(3361)] = 147714, - [SMALL_STATE(3362)] = 147730, - [SMALL_STATE(3363)] = 147746, - [SMALL_STATE(3364)] = 147760, - [SMALL_STATE(3365)] = 147776, - [SMALL_STATE(3366)] = 147790, - [SMALL_STATE(3367)] = 147806, - [SMALL_STATE(3368)] = 147822, - [SMALL_STATE(3369)] = 147838, - [SMALL_STATE(3370)] = 147854, - [SMALL_STATE(3371)] = 147870, - [SMALL_STATE(3372)] = 147884, - [SMALL_STATE(3373)] = 147898, - [SMALL_STATE(3374)] = 147914, - [SMALL_STATE(3375)] = 147928, - [SMALL_STATE(3376)] = 147942, - [SMALL_STATE(3377)] = 147958, - [SMALL_STATE(3378)] = 147974, - [SMALL_STATE(3379)] = 147988, - [SMALL_STATE(3380)] = 148002, - [SMALL_STATE(3381)] = 148016, - [SMALL_STATE(3382)] = 148032, - [SMALL_STATE(3383)] = 148048, - [SMALL_STATE(3384)] = 148064, - [SMALL_STATE(3385)] = 148080, - [SMALL_STATE(3386)] = 148094, - [SMALL_STATE(3387)] = 148110, - [SMALL_STATE(3388)] = 148126, - [SMALL_STATE(3389)] = 148140, - [SMALL_STATE(3390)] = 148154, - [SMALL_STATE(3391)] = 148168, - [SMALL_STATE(3392)] = 148184, - [SMALL_STATE(3393)] = 148198, - [SMALL_STATE(3394)] = 148214, - [SMALL_STATE(3395)] = 148228, - [SMALL_STATE(3396)] = 148244, - [SMALL_STATE(3397)] = 148260, - [SMALL_STATE(3398)] = 148276, - [SMALL_STATE(3399)] = 148292, - [SMALL_STATE(3400)] = 148305, - [SMALL_STATE(3401)] = 148318, - [SMALL_STATE(3402)] = 148331, - [SMALL_STATE(3403)] = 148342, - [SMALL_STATE(3404)] = 148353, - [SMALL_STATE(3405)] = 148366, - [SMALL_STATE(3406)] = 148379, - [SMALL_STATE(3407)] = 148392, - [SMALL_STATE(3408)] = 148403, - [SMALL_STATE(3409)] = 148416, - [SMALL_STATE(3410)] = 148429, - [SMALL_STATE(3411)] = 148442, - [SMALL_STATE(3412)] = 148455, - [SMALL_STATE(3413)] = 148468, - [SMALL_STATE(3414)] = 148481, - [SMALL_STATE(3415)] = 148494, - [SMALL_STATE(3416)] = 148507, - [SMALL_STATE(3417)] = 148520, - [SMALL_STATE(3418)] = 148533, - [SMALL_STATE(3419)] = 148546, - [SMALL_STATE(3420)] = 148559, - [SMALL_STATE(3421)] = 148570, - [SMALL_STATE(3422)] = 148581, - [SMALL_STATE(3423)] = 148594, - [SMALL_STATE(3424)] = 148607, - [SMALL_STATE(3425)] = 148620, - [SMALL_STATE(3426)] = 148633, - [SMALL_STATE(3427)] = 148646, - [SMALL_STATE(3428)] = 148659, - [SMALL_STATE(3429)] = 148672, - [SMALL_STATE(3430)] = 148685, - [SMALL_STATE(3431)] = 148698, - [SMALL_STATE(3432)] = 148711, - [SMALL_STATE(3433)] = 148724, - [SMALL_STATE(3434)] = 148737, - [SMALL_STATE(3435)] = 148748, - [SMALL_STATE(3436)] = 148761, - [SMALL_STATE(3437)] = 148774, - [SMALL_STATE(3438)] = 148787, - [SMALL_STATE(3439)] = 148800, - [SMALL_STATE(3440)] = 148813, - [SMALL_STATE(3441)] = 148826, - [SMALL_STATE(3442)] = 148839, - [SMALL_STATE(3443)] = 148852, - [SMALL_STATE(3444)] = 148865, - [SMALL_STATE(3445)] = 148878, - [SMALL_STATE(3446)] = 148891, - [SMALL_STATE(3447)] = 148901, - [SMALL_STATE(3448)] = 148911, - [SMALL_STATE(3449)] = 148921, - [SMALL_STATE(3450)] = 148931, - [SMALL_STATE(3451)] = 148941, - [SMALL_STATE(3452)] = 148951, - [SMALL_STATE(3453)] = 148961, - [SMALL_STATE(3454)] = 148971, - [SMALL_STATE(3455)] = 148981, - [SMALL_STATE(3456)] = 148991, - [SMALL_STATE(3457)] = 149001, - [SMALL_STATE(3458)] = 149011, - [SMALL_STATE(3459)] = 149021, - [SMALL_STATE(3460)] = 149031, - [SMALL_STATE(3461)] = 149041, - [SMALL_STATE(3462)] = 149051, - [SMALL_STATE(3463)] = 149061, - [SMALL_STATE(3464)] = 149071, - [SMALL_STATE(3465)] = 149081, - [SMALL_STATE(3466)] = 149091, - [SMALL_STATE(3467)] = 149101, - [SMALL_STATE(3468)] = 149111, - [SMALL_STATE(3469)] = 149121, - [SMALL_STATE(3470)] = 149131, - [SMALL_STATE(3471)] = 149141, - [SMALL_STATE(3472)] = 149151, - [SMALL_STATE(3473)] = 149161, - [SMALL_STATE(3474)] = 149171, - [SMALL_STATE(3475)] = 149181, - [SMALL_STATE(3476)] = 149191, - [SMALL_STATE(3477)] = 149201, - [SMALL_STATE(3478)] = 149211, - [SMALL_STATE(3479)] = 149221, - [SMALL_STATE(3480)] = 149231, - [SMALL_STATE(3481)] = 149241, - [SMALL_STATE(3482)] = 149251, - [SMALL_STATE(3483)] = 149261, - [SMALL_STATE(3484)] = 149271, - [SMALL_STATE(3485)] = 149281, - [SMALL_STATE(3486)] = 149291, - [SMALL_STATE(3487)] = 149301, - [SMALL_STATE(3488)] = 149311, - [SMALL_STATE(3489)] = 149321, - [SMALL_STATE(3490)] = 149331, - [SMALL_STATE(3491)] = 149341, - [SMALL_STATE(3492)] = 149351, - [SMALL_STATE(3493)] = 149361, - [SMALL_STATE(3494)] = 149371, - [SMALL_STATE(3495)] = 149381, - [SMALL_STATE(3496)] = 149391, - [SMALL_STATE(3497)] = 149401, - [SMALL_STATE(3498)] = 149411, - [SMALL_STATE(3499)] = 149421, - [SMALL_STATE(3500)] = 149431, - [SMALL_STATE(3501)] = 149441, - [SMALL_STATE(3502)] = 149451, - [SMALL_STATE(3503)] = 149461, - [SMALL_STATE(3504)] = 149471, - [SMALL_STATE(3505)] = 149481, - [SMALL_STATE(3506)] = 149491, - [SMALL_STATE(3507)] = 149501, - [SMALL_STATE(3508)] = 149511, - [SMALL_STATE(3509)] = 149521, - [SMALL_STATE(3510)] = 149531, - [SMALL_STATE(3511)] = 149541, - [SMALL_STATE(3512)] = 149551, - [SMALL_STATE(3513)] = 149561, - [SMALL_STATE(3514)] = 149571, - [SMALL_STATE(3515)] = 149581, - [SMALL_STATE(3516)] = 149591, - [SMALL_STATE(3517)] = 149601, - [SMALL_STATE(3518)] = 149611, - [SMALL_STATE(3519)] = 149621, - [SMALL_STATE(3520)] = 149631, - [SMALL_STATE(3521)] = 149641, - [SMALL_STATE(3522)] = 149651, - [SMALL_STATE(3523)] = 149661, - [SMALL_STATE(3524)] = 149671, - [SMALL_STATE(3525)] = 149681, - [SMALL_STATE(3526)] = 149691, - [SMALL_STATE(3527)] = 149701, - [SMALL_STATE(3528)] = 149711, - [SMALL_STATE(3529)] = 149721, - [SMALL_STATE(3530)] = 149731, - [SMALL_STATE(3531)] = 149741, - [SMALL_STATE(3532)] = 149751, - [SMALL_STATE(3533)] = 149761, - [SMALL_STATE(3534)] = 149771, - [SMALL_STATE(3535)] = 149781, - [SMALL_STATE(3536)] = 149791, - [SMALL_STATE(3537)] = 149801, - [SMALL_STATE(3538)] = 149811, - [SMALL_STATE(3539)] = 149821, - [SMALL_STATE(3540)] = 149831, - [SMALL_STATE(3541)] = 149841, - [SMALL_STATE(3542)] = 149851, - [SMALL_STATE(3543)] = 149861, - [SMALL_STATE(3544)] = 149871, - [SMALL_STATE(3545)] = 149881, - [SMALL_STATE(3546)] = 149891, - [SMALL_STATE(3547)] = 149901, - [SMALL_STATE(3548)] = 149911, - [SMALL_STATE(3549)] = 149921, - [SMALL_STATE(3550)] = 149931, - [SMALL_STATE(3551)] = 149941, - [SMALL_STATE(3552)] = 149951, - [SMALL_STATE(3553)] = 149961, - [SMALL_STATE(3554)] = 149971, - [SMALL_STATE(3555)] = 149981, - [SMALL_STATE(3556)] = 149991, - [SMALL_STATE(3557)] = 150001, - [SMALL_STATE(3558)] = 150011, - [SMALL_STATE(3559)] = 150021, - [SMALL_STATE(3560)] = 150031, - [SMALL_STATE(3561)] = 150041, - [SMALL_STATE(3562)] = 150051, - [SMALL_STATE(3563)] = 150061, - [SMALL_STATE(3564)] = 150071, - [SMALL_STATE(3565)] = 150081, - [SMALL_STATE(3566)] = 150091, - [SMALL_STATE(3567)] = 150101, - [SMALL_STATE(3568)] = 150111, - [SMALL_STATE(3569)] = 150121, - [SMALL_STATE(3570)] = 150131, - [SMALL_STATE(3571)] = 150141, - [SMALL_STATE(3572)] = 150151, - [SMALL_STATE(3573)] = 150161, - [SMALL_STATE(3574)] = 150171, - [SMALL_STATE(3575)] = 150181, - [SMALL_STATE(3576)] = 150191, - [SMALL_STATE(3577)] = 150201, - [SMALL_STATE(3578)] = 150211, - [SMALL_STATE(3579)] = 150221, - [SMALL_STATE(3580)] = 150231, - [SMALL_STATE(3581)] = 150241, - [SMALL_STATE(3582)] = 150251, - [SMALL_STATE(3583)] = 150261, - [SMALL_STATE(3584)] = 150271, - [SMALL_STATE(3585)] = 150281, - [SMALL_STATE(3586)] = 150291, - [SMALL_STATE(3587)] = 150301, - [SMALL_STATE(3588)] = 150311, - [SMALL_STATE(3589)] = 150321, - [SMALL_STATE(3590)] = 150331, - [SMALL_STATE(3591)] = 150341, - [SMALL_STATE(3592)] = 150351, - [SMALL_STATE(3593)] = 150361, - [SMALL_STATE(3594)] = 150371, - [SMALL_STATE(3595)] = 150381, - [SMALL_STATE(3596)] = 150391, - [SMALL_STATE(3597)] = 150401, - [SMALL_STATE(3598)] = 150411, - [SMALL_STATE(3599)] = 150421, - [SMALL_STATE(3600)] = 150431, - [SMALL_STATE(3601)] = 150441, - [SMALL_STATE(3602)] = 150451, - [SMALL_STATE(3603)] = 150461, - [SMALL_STATE(3604)] = 150471, - [SMALL_STATE(3605)] = 150481, - [SMALL_STATE(3606)] = 150491, - [SMALL_STATE(3607)] = 150501, + [SMALL_STATE(1340)] = 65009, + [SMALL_STATE(1341)] = 65119, + [SMALL_STATE(1342)] = 65229, + [SMALL_STATE(1343)] = 65339, + [SMALL_STATE(1344)] = 65449, + [SMALL_STATE(1345)] = 65559, + [SMALL_STATE(1346)] = 65669, + [SMALL_STATE(1347)] = 65779, + [SMALL_STATE(1348)] = 65889, + [SMALL_STATE(1349)] = 65999, + [SMALL_STATE(1350)] = 66109, + [SMALL_STATE(1351)] = 66219, + [SMALL_STATE(1352)] = 66329, + [SMALL_STATE(1353)] = 66439, + [SMALL_STATE(1354)] = 66549, + [SMALL_STATE(1355)] = 66659, + [SMALL_STATE(1356)] = 66769, + [SMALL_STATE(1357)] = 66879, + [SMALL_STATE(1358)] = 66946, + [SMALL_STATE(1359)] = 67009, + [SMALL_STATE(1360)] = 67072, + [SMALL_STATE(1361)] = 67135, + [SMALL_STATE(1362)] = 67198, + [SMALL_STATE(1363)] = 67259, + [SMALL_STATE(1364)] = 67322, + [SMALL_STATE(1365)] = 67385, + [SMALL_STATE(1366)] = 67448, + [SMALL_STATE(1367)] = 67511, + [SMALL_STATE(1368)] = 67574, + [SMALL_STATE(1369)] = 67637, + [SMALL_STATE(1370)] = 67700, + [SMALL_STATE(1371)] = 67756, + [SMALL_STATE(1372)] = 67814, + [SMALL_STATE(1373)] = 67878, + [SMALL_STATE(1374)] = 67940, + [SMALL_STATE(1375)] = 68002, + [SMALL_STATE(1376)] = 68064, + [SMALL_STATE(1377)] = 68126, + [SMALL_STATE(1378)] = 68188, + [SMALL_STATE(1379)] = 68250, + [SMALL_STATE(1380)] = 68312, + [SMALL_STATE(1381)] = 68374, + [SMALL_STATE(1382)] = 68434, + [SMALL_STATE(1383)] = 68498, + [SMALL_STATE(1384)] = 68560, + [SMALL_STATE(1385)] = 68618, + [SMALL_STATE(1386)] = 68680, + [SMALL_STATE(1387)] = 68736, + [SMALL_STATE(1388)] = 68798, + [SMALL_STATE(1389)] = 68860, + [SMALL_STATE(1390)] = 68917, + [SMALL_STATE(1391)] = 68978, + [SMALL_STATE(1392)] = 69033, + [SMALL_STATE(1393)] = 69088, + [SMALL_STATE(1394)] = 69145, + [SMALL_STATE(1395)] = 69200, + [SMALL_STATE(1396)] = 69255, + [SMALL_STATE(1397)] = 69310, + [SMALL_STATE(1398)] = 69371, + [SMALL_STATE(1399)] = 69428, + [SMALL_STATE(1400)] = 69482, + [SMALL_STATE(1401)] = 69542, + [SMALL_STATE(1402)] = 69596, + [SMALL_STATE(1403)] = 69650, + [SMALL_STATE(1404)] = 69704, + [SMALL_STATE(1405)] = 69758, + [SMALL_STATE(1406)] = 69812, + [SMALL_STATE(1407)] = 69866, + [SMALL_STATE(1408)] = 69920, + [SMALL_STATE(1409)] = 69974, + [SMALL_STATE(1410)] = 70034, + [SMALL_STATE(1411)] = 70088, + [SMALL_STATE(1412)] = 70142, + [SMALL_STATE(1413)] = 70196, + [SMALL_STATE(1414)] = 70250, + [SMALL_STATE(1415)] = 70310, + [SMALL_STATE(1416)] = 70364, + [SMALL_STATE(1417)] = 70418, + [SMALL_STATE(1418)] = 70472, + [SMALL_STATE(1419)] = 70526, + [SMALL_STATE(1420)] = 70580, + [SMALL_STATE(1421)] = 70640, + [SMALL_STATE(1422)] = 70694, + [SMALL_STATE(1423)] = 70748, + [SMALL_STATE(1424)] = 70802, + [SMALL_STATE(1425)] = 70856, + [SMALL_STATE(1426)] = 70910, + [SMALL_STATE(1427)] = 70968, + [SMALL_STATE(1428)] = 71024, + [SMALL_STATE(1429)] = 71078, + [SMALL_STATE(1430)] = 71132, + [SMALL_STATE(1431)] = 71186, + [SMALL_STATE(1432)] = 71240, + [SMALL_STATE(1433)] = 71294, + [SMALL_STATE(1434)] = 71348, + [SMALL_STATE(1435)] = 71402, + [SMALL_STATE(1436)] = 71456, + [SMALL_STATE(1437)] = 71510, + [SMALL_STATE(1438)] = 71564, + [SMALL_STATE(1439)] = 71618, + [SMALL_STATE(1440)] = 71672, + [SMALL_STATE(1441)] = 71728, + [SMALL_STATE(1442)] = 71782, + [SMALL_STATE(1443)] = 71836, + [SMALL_STATE(1444)] = 71890, + [SMALL_STATE(1445)] = 71944, + [SMALL_STATE(1446)] = 71997, + [SMALL_STATE(1447)] = 72050, + [SMALL_STATE(1448)] = 72103, + [SMALL_STATE(1449)] = 72156, + [SMALL_STATE(1450)] = 72209, + [SMALL_STATE(1451)] = 72268, + [SMALL_STATE(1452)] = 72321, + [SMALL_STATE(1453)] = 72374, + [SMALL_STATE(1454)] = 72427, + [SMALL_STATE(1455)] = 72480, + [SMALL_STATE(1456)] = 72533, + [SMALL_STATE(1457)] = 72586, + [SMALL_STATE(1458)] = 72639, + [SMALL_STATE(1459)] = 72692, + [SMALL_STATE(1460)] = 72745, + [SMALL_STATE(1461)] = 72798, + [SMALL_STATE(1462)] = 72851, + [SMALL_STATE(1463)] = 72904, + [SMALL_STATE(1464)] = 72957, + [SMALL_STATE(1465)] = 73010, + [SMALL_STATE(1466)] = 73063, + [SMALL_STATE(1467)] = 73124, + [SMALL_STATE(1468)] = 73179, + [SMALL_STATE(1469)] = 73232, + [SMALL_STATE(1470)] = 73285, + [SMALL_STATE(1471)] = 73340, + [SMALL_STATE(1472)] = 73399, + [SMALL_STATE(1473)] = 73452, + [SMALL_STATE(1474)] = 73505, + [SMALL_STATE(1475)] = 73560, + [SMALL_STATE(1476)] = 73615, + [SMALL_STATE(1477)] = 73668, + [SMALL_STATE(1478)] = 73721, + [SMALL_STATE(1479)] = 73774, + [SMALL_STATE(1480)] = 73827, + [SMALL_STATE(1481)] = 73880, + [SMALL_STATE(1482)] = 73933, + [SMALL_STATE(1483)] = 73990, + [SMALL_STATE(1484)] = 74043, + [SMALL_STATE(1485)] = 74100, + [SMALL_STATE(1486)] = 74157, + [SMALL_STATE(1487)] = 74216, + [SMALL_STATE(1488)] = 74269, + [SMALL_STATE(1489)] = 74326, + [SMALL_STATE(1490)] = 74379, + [SMALL_STATE(1491)] = 74436, + [SMALL_STATE(1492)] = 74493, + [SMALL_STATE(1493)] = 74546, + [SMALL_STATE(1494)] = 74599, + [SMALL_STATE(1495)] = 74652, + [SMALL_STATE(1496)] = 74705, + [SMALL_STATE(1497)] = 74758, + [SMALL_STATE(1498)] = 74811, + [SMALL_STATE(1499)] = 74864, + [SMALL_STATE(1500)] = 74922, + [SMALL_STATE(1501)] = 74984, + [SMALL_STATE(1502)] = 75042, + [SMALL_STATE(1503)] = 75106, + [SMALL_STATE(1504)] = 75160, + [SMALL_STATE(1505)] = 75218, + [SMALL_STATE(1506)] = 75272, + [SMALL_STATE(1507)] = 75330, + [SMALL_STATE(1508)] = 75382, + [SMALL_STATE(1509)] = 75434, + [SMALL_STATE(1510)] = 75498, + [SMALL_STATE(1511)] = 75556, + [SMALL_STATE(1512)] = 75608, + [SMALL_STATE(1513)] = 75660, + [SMALL_STATE(1514)] = 75712, + [SMALL_STATE(1515)] = 75776, + [SMALL_STATE(1516)] = 75828, + [SMALL_STATE(1517)] = 75880, + [SMALL_STATE(1518)] = 75936, + [SMALL_STATE(1519)] = 75988, + [SMALL_STATE(1520)] = 76046, + [SMALL_STATE(1521)] = 76102, + [SMALL_STATE(1522)] = 76159, + [SMALL_STATE(1523)] = 76210, + [SMALL_STATE(1524)] = 76259, + [SMALL_STATE(1525)] = 76308, + [SMALL_STATE(1526)] = 76359, + [SMALL_STATE(1527)] = 76416, + [SMALL_STATE(1528)] = 76467, + [SMALL_STATE(1529)] = 76520, + [SMALL_STATE(1530)] = 76575, + [SMALL_STATE(1531)] = 76632, + [SMALL_STATE(1532)] = 76683, + [SMALL_STATE(1533)] = 76740, + [SMALL_STATE(1534)] = 76797, + [SMALL_STATE(1535)] = 76852, + [SMALL_STATE(1536)] = 76903, + [SMALL_STATE(1537)] = 76956, + [SMALL_STATE(1538)] = 77009, + [SMALL_STATE(1539)] = 77062, + [SMALL_STATE(1540)] = 77119, + [SMALL_STATE(1541)] = 77176, + [SMALL_STATE(1542)] = 77225, + [SMALL_STATE(1543)] = 77276, + [SMALL_STATE(1544)] = 77331, + [SMALL_STATE(1545)] = 77384, + [SMALL_STATE(1546)] = 77437, + [SMALL_STATE(1547)] = 77494, + [SMALL_STATE(1548)] = 77551, + [SMALL_STATE(1549)] = 77600, + [SMALL_STATE(1550)] = 77649, + [SMALL_STATE(1551)] = 77706, + [SMALL_STATE(1552)] = 77757, + [SMALL_STATE(1553)] = 77810, + [SMALL_STATE(1554)] = 77867, + [SMALL_STATE(1555)] = 77924, + [SMALL_STATE(1556)] = 77981, + [SMALL_STATE(1557)] = 78038, + [SMALL_STATE(1558)] = 78089, + [SMALL_STATE(1559)] = 78146, + [SMALL_STATE(1560)] = 78199, + [SMALL_STATE(1561)] = 78250, + [SMALL_STATE(1562)] = 78307, + [SMALL_STATE(1563)] = 78360, + [SMALL_STATE(1564)] = 78411, + [SMALL_STATE(1565)] = 78468, + [SMALL_STATE(1566)] = 78523, + [SMALL_STATE(1567)] = 78580, + [SMALL_STATE(1568)] = 78637, + [SMALL_STATE(1569)] = 78692, + [SMALL_STATE(1570)] = 78744, + [SMALL_STATE(1571)] = 78796, + [SMALL_STATE(1572)] = 78852, + [SMALL_STATE(1573)] = 78904, + [SMALL_STATE(1574)] = 78954, + [SMALL_STATE(1575)] = 79010, + [SMALL_STATE(1576)] = 79060, + [SMALL_STATE(1577)] = 79116, + [SMALL_STATE(1578)] = 79172, + [SMALL_STATE(1579)] = 79222, + [SMALL_STATE(1580)] = 79276, + [SMALL_STATE(1581)] = 79328, + [SMALL_STATE(1582)] = 79378, + [SMALL_STATE(1583)] = 79428, + [SMALL_STATE(1584)] = 79478, + [SMALL_STATE(1585)] = 79528, + [SMALL_STATE(1586)] = 79578, + [SMALL_STATE(1587)] = 79634, + [SMALL_STATE(1588)] = 79688, + [SMALL_STATE(1589)] = 79740, + [SMALL_STATE(1590)] = 79796, + [SMALL_STATE(1591)] = 79846, + [SMALL_STATE(1592)] = 79898, + [SMALL_STATE(1593)] = 79950, + [SMALL_STATE(1594)] = 80000, + [SMALL_STATE(1595)] = 80050, + [SMALL_STATE(1596)] = 80102, + [SMALL_STATE(1597)] = 80152, + [SMALL_STATE(1598)] = 80202, + [SMALL_STATE(1599)] = 80252, + [SMALL_STATE(1600)] = 80304, + [SMALL_STATE(1601)] = 80354, + [SMALL_STATE(1602)] = 80404, + [SMALL_STATE(1603)] = 80459, + [SMALL_STATE(1604)] = 80508, + [SMALL_STATE(1605)] = 80563, + [SMALL_STATE(1606)] = 80618, + [SMALL_STATE(1607)] = 80671, + [SMALL_STATE(1608)] = 80720, + [SMALL_STATE(1609)] = 80769, + [SMALL_STATE(1610)] = 80820, + [SMALL_STATE(1611)] = 80869, + [SMALL_STATE(1612)] = 80918, + [SMALL_STATE(1613)] = 80973, + [SMALL_STATE(1614)] = 81026, + [SMALL_STATE(1615)] = 81075, + [SMALL_STATE(1616)] = 81124, + [SMALL_STATE(1617)] = 81173, + [SMALL_STATE(1618)] = 81228, + [SMALL_STATE(1619)] = 81281, + [SMALL_STATE(1620)] = 81330, + [SMALL_STATE(1621)] = 81385, + [SMALL_STATE(1622)] = 81440, + [SMALL_STATE(1623)] = 81495, + [SMALL_STATE(1624)] = 81544, + [SMALL_STATE(1625)] = 81599, + [SMALL_STATE(1626)] = 81654, + [SMALL_STATE(1627)] = 81703, + [SMALL_STATE(1628)] = 81752, + [SMALL_STATE(1629)] = 81807, + [SMALL_STATE(1630)] = 81858, + [SMALL_STATE(1631)] = 81907, + [SMALL_STATE(1632)] = 81956, + [SMALL_STATE(1633)] = 82007, + [SMALL_STATE(1634)] = 82062, + [SMALL_STATE(1635)] = 82117, + [SMALL_STATE(1636)] = 82168, + [SMALL_STATE(1637)] = 82219, + [SMALL_STATE(1638)] = 82268, + [SMALL_STATE(1639)] = 82323, + [SMALL_STATE(1640)] = 82378, + [SMALL_STATE(1641)] = 82427, + [SMALL_STATE(1642)] = 82478, + [SMALL_STATE(1643)] = 82533, + [SMALL_STATE(1644)] = 82588, + [SMALL_STATE(1645)] = 82643, + [SMALL_STATE(1646)] = 82698, + [SMALL_STATE(1647)] = 82753, + [SMALL_STATE(1648)] = 82802, + [SMALL_STATE(1649)] = 82856, + [SMALL_STATE(1650)] = 82910, + [SMALL_STATE(1651)] = 82958, + [SMALL_STATE(1652)] = 83040, + [SMALL_STATE(1653)] = 83094, + [SMALL_STATE(1654)] = 83148, + [SMALL_STATE(1655)] = 83196, + [SMALL_STATE(1656)] = 83244, + [SMALL_STATE(1657)] = 83324, + [SMALL_STATE(1658)] = 83372, + [SMALL_STATE(1659)] = 83450, + [SMALL_STATE(1660)] = 83498, + [SMALL_STATE(1661)] = 83574, + [SMALL_STATE(1662)] = 83622, + [SMALL_STATE(1663)] = 83696, + [SMALL_STATE(1664)] = 83744, + [SMALL_STATE(1665)] = 83816, + [SMALL_STATE(1666)] = 83864, + [SMALL_STATE(1667)] = 83934, + [SMALL_STATE(1668)] = 83982, + [SMALL_STATE(1669)] = 84050, + [SMALL_STATE(1670)] = 84098, + [SMALL_STATE(1671)] = 84156, + [SMALL_STATE(1672)] = 84204, + [SMALL_STATE(1673)] = 84254, + [SMALL_STATE(1674)] = 84302, + [SMALL_STATE(1675)] = 84356, + [SMALL_STATE(1676)] = 84404, + [SMALL_STATE(1677)] = 84470, + [SMALL_STATE(1678)] = 84518, + [SMALL_STATE(1679)] = 84574, + [SMALL_STATE(1680)] = 84622, + [SMALL_STATE(1681)] = 84684, + [SMALL_STATE(1682)] = 84732, + [SMALL_STATE(1683)] = 84780, + [SMALL_STATE(1684)] = 84828, + [SMALL_STATE(1685)] = 84876, + [SMALL_STATE(1686)] = 84926, + [SMALL_STATE(1687)] = 84974, + [SMALL_STATE(1688)] = 85024, + [SMALL_STATE(1689)] = 85078, + [SMALL_STATE(1690)] = 85126, + [SMALL_STATE(1691)] = 85180, + [SMALL_STATE(1692)] = 85228, + [SMALL_STATE(1693)] = 85276, + [SMALL_STATE(1694)] = 85324, + [SMALL_STATE(1695)] = 85406, + [SMALL_STATE(1696)] = 85454, + [SMALL_STATE(1697)] = 85506, + [SMALL_STATE(1698)] = 85554, + [SMALL_STATE(1699)] = 85602, + [SMALL_STATE(1700)] = 85650, + [SMALL_STATE(1701)] = 85732, + [SMALL_STATE(1702)] = 85786, + [SMALL_STATE(1703)] = 85834, + [SMALL_STATE(1704)] = 85882, + [SMALL_STATE(1705)] = 85930, + [SMALL_STATE(1706)] = 85978, + [SMALL_STATE(1707)] = 86060, + [SMALL_STATE(1708)] = 86108, + [SMALL_STATE(1709)] = 86156, + [SMALL_STATE(1710)] = 86204, + [SMALL_STATE(1711)] = 86252, + [SMALL_STATE(1712)] = 86334, + [SMALL_STATE(1713)] = 86388, + [SMALL_STATE(1714)] = 86436, + [SMALL_STATE(1715)] = 86484, + [SMALL_STATE(1716)] = 86536, + [SMALL_STATE(1717)] = 86584, + [SMALL_STATE(1718)] = 86632, + [SMALL_STATE(1719)] = 86678, + [SMALL_STATE(1720)] = 86758, + [SMALL_STATE(1721)] = 86810, + [SMALL_STATE(1722)] = 86864, + [SMALL_STATE(1723)] = 86918, + [SMALL_STATE(1724)] = 86972, + [SMALL_STATE(1725)] = 87026, + [SMALL_STATE(1726)] = 87074, + [SMALL_STATE(1727)] = 87122, + [SMALL_STATE(1728)] = 87176, + [SMALL_STATE(1729)] = 87224, + [SMALL_STATE(1730)] = 87272, + [SMALL_STATE(1731)] = 87320, + [SMALL_STATE(1732)] = 87368, + [SMALL_STATE(1733)] = 87416, + [SMALL_STATE(1734)] = 87464, + [SMALL_STATE(1735)] = 87512, + [SMALL_STATE(1736)] = 87562, + [SMALL_STATE(1737)] = 87612, + [SMALL_STATE(1738)] = 87666, + [SMALL_STATE(1739)] = 87720, + [SMALL_STATE(1740)] = 87768, + [SMALL_STATE(1741)] = 87822, + [SMALL_STATE(1742)] = 87876, + [SMALL_STATE(1743)] = 87930, + [SMALL_STATE(1744)] = 87978, + [SMALL_STATE(1745)] = 88026, + [SMALL_STATE(1746)] = 88080, + [SMALL_STATE(1747)] = 88162, + [SMALL_STATE(1748)] = 88210, + [SMALL_STATE(1749)] = 88264, + [SMALL_STATE(1750)] = 88346, + [SMALL_STATE(1751)] = 88400, + [SMALL_STATE(1752)] = 88448, + [SMALL_STATE(1753)] = 88502, + [SMALL_STATE(1754)] = 88552, + [SMALL_STATE(1755)] = 88602, + [SMALL_STATE(1756)] = 88656, + [SMALL_STATE(1757)] = 88708, + [SMALL_STATE(1758)] = 88756, + [SMALL_STATE(1759)] = 88838, + [SMALL_STATE(1760)] = 88920, + [SMALL_STATE(1761)] = 88968, + [SMALL_STATE(1762)] = 89022, + [SMALL_STATE(1763)] = 89076, + [SMALL_STATE(1764)] = 89130, + [SMALL_STATE(1765)] = 89184, + [SMALL_STATE(1766)] = 89236, + [SMALL_STATE(1767)] = 89286, + [SMALL_STATE(1768)] = 89336, + [SMALL_STATE(1769)] = 89390, + [SMALL_STATE(1770)] = 89444, + [SMALL_STATE(1771)] = 89496, + [SMALL_STATE(1772)] = 89578, + [SMALL_STATE(1773)] = 89628, + [SMALL_STATE(1774)] = 89678, + [SMALL_STATE(1775)] = 89732, + [SMALL_STATE(1776)] = 89814, + [SMALL_STATE(1777)] = 89862, + [SMALL_STATE(1778)] = 89916, + [SMALL_STATE(1779)] = 89970, + [SMALL_STATE(1780)] = 90024, + [SMALL_STATE(1781)] = 90073, + [SMALL_STATE(1782)] = 90120, + [SMALL_STATE(1783)] = 90169, + [SMALL_STATE(1784)] = 90216, + [SMALL_STATE(1785)] = 90263, + [SMALL_STATE(1786)] = 90344, + [SMALL_STATE(1787)] = 90397, + [SMALL_STATE(1788)] = 90444, + [SMALL_STATE(1789)] = 90491, + [SMALL_STATE(1790)] = 90536, + [SMALL_STATE(1791)] = 90589, + [SMALL_STATE(1792)] = 90640, + [SMALL_STATE(1793)] = 90693, + [SMALL_STATE(1794)] = 90746, + [SMALL_STATE(1795)] = 90827, + [SMALL_STATE(1796)] = 90908, + [SMALL_STATE(1797)] = 90961, + [SMALL_STATE(1798)] = 91010, + [SMALL_STATE(1799)] = 91059, + [SMALL_STATE(1800)] = 91140, + [SMALL_STATE(1801)] = 91221, + [SMALL_STATE(1802)] = 91268, + [SMALL_STATE(1803)] = 91315, + [SMALL_STATE(1804)] = 91396, + [SMALL_STATE(1805)] = 91449, + [SMALL_STATE(1806)] = 91498, + [SMALL_STATE(1807)] = 91551, + [SMALL_STATE(1808)] = 91632, + [SMALL_STATE(1809)] = 91681, + [SMALL_STATE(1810)] = 91762, + [SMALL_STATE(1811)] = 91843, + [SMALL_STATE(1812)] = 91890, + [SMALL_STATE(1813)] = 91937, + [SMALL_STATE(1814)] = 91984, + [SMALL_STATE(1815)] = 92031, + [SMALL_STATE(1816)] = 92084, + [SMALL_STATE(1817)] = 92131, + [SMALL_STATE(1818)] = 92178, + [SMALL_STATE(1819)] = 92225, + [SMALL_STATE(1820)] = 92278, + [SMALL_STATE(1821)] = 92359, + [SMALL_STATE(1822)] = 92412, + [SMALL_STATE(1823)] = 92461, + [SMALL_STATE(1824)] = 92540, + [SMALL_STATE(1825)] = 92619, + [SMALL_STATE(1826)] = 92666, + [SMALL_STATE(1827)] = 92713, + [SMALL_STATE(1828)] = 92760, + [SMALL_STATE(1829)] = 92841, + [SMALL_STATE(1830)] = 92890, + [SMALL_STATE(1831)] = 92939, + [SMALL_STATE(1832)] = 92986, + [SMALL_STATE(1833)] = 93033, + [SMALL_STATE(1834)] = 93080, + [SMALL_STATE(1835)] = 93129, + [SMALL_STATE(1836)] = 93178, + [SMALL_STATE(1837)] = 93225, + [SMALL_STATE(1838)] = 93272, + [SMALL_STATE(1839)] = 93319, + [SMALL_STATE(1840)] = 93368, + [SMALL_STATE(1841)] = 93415, + [SMALL_STATE(1842)] = 93462, + [SMALL_STATE(1843)] = 93510, + [SMALL_STATE(1844)] = 93556, + [SMALL_STATE(1845)] = 93608, + [SMALL_STATE(1846)] = 93654, + [SMALL_STATE(1847)] = 93700, + [SMALL_STATE(1848)] = 93752, + [SMALL_STATE(1849)] = 93798, + [SMALL_STATE(1850)] = 93854, + [SMALL_STATE(1851)] = 93900, + [SMALL_STATE(1852)] = 93952, + [SMALL_STATE(1853)] = 93998, + [SMALL_STATE(1854)] = 94044, + [SMALL_STATE(1855)] = 94090, + [SMALL_STATE(1856)] = 94148, + [SMALL_STATE(1857)] = 94194, + [SMALL_STATE(1858)] = 94240, + [SMALL_STATE(1859)] = 94290, + [SMALL_STATE(1860)] = 94336, + [SMALL_STATE(1861)] = 94382, + [SMALL_STATE(1862)] = 94428, + [SMALL_STATE(1863)] = 94476, + [SMALL_STATE(1864)] = 94522, + [SMALL_STATE(1865)] = 94576, + [SMALL_STATE(1866)] = 94624, + [SMALL_STATE(1867)] = 94670, + [SMALL_STATE(1868)] = 94716, + [SMALL_STATE(1869)] = 94776, + [SMALL_STATE(1870)] = 94822, + [SMALL_STATE(1871)] = 94884, + [SMALL_STATE(1872)] = 94930, + [SMALL_STATE(1873)] = 94994, + [SMALL_STATE(1874)] = 95040, + [SMALL_STATE(1875)] = 95106, + [SMALL_STATE(1876)] = 95152, + [SMALL_STATE(1877)] = 95220, + [SMALL_STATE(1878)] = 95266, + [SMALL_STATE(1879)] = 95312, + [SMALL_STATE(1880)] = 95382, + [SMALL_STATE(1881)] = 95428, + [SMALL_STATE(1882)] = 95474, + [SMALL_STATE(1883)] = 95526, + [SMALL_STATE(1884)] = 95572, + [SMALL_STATE(1885)] = 95644, + [SMALL_STATE(1886)] = 95690, + [SMALL_STATE(1887)] = 95768, + [SMALL_STATE(1888)] = 95814, + [SMALL_STATE(1889)] = 95860, + [SMALL_STATE(1890)] = 95906, + [SMALL_STATE(1891)] = 95958, + [SMALL_STATE(1892)] = 96004, + [SMALL_STATE(1893)] = 96050, + [SMALL_STATE(1894)] = 96096, + [SMALL_STATE(1895)] = 96148, + [SMALL_STATE(1896)] = 96192, + [SMALL_STATE(1897)] = 96238, + [SMALL_STATE(1898)] = 96316, + [SMALL_STATE(1899)] = 96362, + [SMALL_STATE(1900)] = 96408, + [SMALL_STATE(1901)] = 96454, + [SMALL_STATE(1902)] = 96500, + [SMALL_STATE(1903)] = 96546, + [SMALL_STATE(1904)] = 96592, + [SMALL_STATE(1905)] = 96638, + [SMALL_STATE(1906)] = 96684, + [SMALL_STATE(1907)] = 96730, + [SMALL_STATE(1908)] = 96782, + [SMALL_STATE(1909)] = 96828, + [SMALL_STATE(1910)] = 96874, + [SMALL_STATE(1911)] = 96920, + [SMALL_STATE(1912)] = 96966, + [SMALL_STATE(1913)] = 97012, + [SMALL_STATE(1914)] = 97064, + [SMALL_STATE(1915)] = 97114, + [SMALL_STATE(1916)] = 97160, + [SMALL_STATE(1917)] = 97212, + [SMALL_STATE(1918)] = 97258, + [SMALL_STATE(1919)] = 97304, + [SMALL_STATE(1920)] = 97350, + [SMALL_STATE(1921)] = 97396, + [SMALL_STATE(1922)] = 97442, + [SMALL_STATE(1923)] = 97488, + [SMALL_STATE(1924)] = 97536, + [SMALL_STATE(1925)] = 97582, + [SMALL_STATE(1926)] = 97628, + [SMALL_STATE(1927)] = 97674, + [SMALL_STATE(1928)] = 97720, + [SMALL_STATE(1929)] = 97766, + [SMALL_STATE(1930)] = 97812, + [SMALL_STATE(1931)] = 97864, + [SMALL_STATE(1932)] = 97916, + [SMALL_STATE(1933)] = 97961, + [SMALL_STATE(1934)] = 98044, + [SMALL_STATE(1935)] = 98089, + [SMALL_STATE(1936)] = 98150, + [SMALL_STATE(1937)] = 98195, + [SMALL_STATE(1938)] = 98258, + [SMALL_STATE(1939)] = 98303, + [SMALL_STATE(1940)] = 98368, + [SMALL_STATE(1941)] = 98413, + [SMALL_STATE(1942)] = 98480, + [SMALL_STATE(1943)] = 98525, + [SMALL_STATE(1944)] = 98594, + [SMALL_STATE(1945)] = 98639, + [SMALL_STATE(1946)] = 98710, + [SMALL_STATE(1947)] = 98755, + [SMALL_STATE(1948)] = 98802, + [SMALL_STATE(1949)] = 98847, + [SMALL_STATE(1950)] = 98898, + [SMALL_STATE(1951)] = 98943, + [SMALL_STATE(1952)] = 99008, + [SMALL_STATE(1953)] = 99053, + [SMALL_STATE(1954)] = 99108, + [SMALL_STATE(1955)] = 99153, + [SMALL_STATE(1956)] = 99198, + [SMALL_STATE(1957)] = 99259, + [SMALL_STATE(1958)] = 99304, + [SMALL_STATE(1959)] = 99349, + [SMALL_STATE(1960)] = 99394, + [SMALL_STATE(1961)] = 99439, + [SMALL_STATE(1962)] = 99484, + [SMALL_STATE(1963)] = 99529, + [SMALL_STATE(1964)] = 99574, + [SMALL_STATE(1965)] = 99625, + [SMALL_STATE(1966)] = 99708, + [SMALL_STATE(1967)] = 99755, + [SMALL_STATE(1968)] = 99800, + [SMALL_STATE(1969)] = 99883, + [SMALL_STATE(1970)] = 99934, + [SMALL_STATE(1971)] = 99979, + [SMALL_STATE(1972)] = 100062, + [SMALL_STATE(1973)] = 100135, + [SMALL_STATE(1974)] = 100218, + [SMALL_STATE(1975)] = 100263, + [SMALL_STATE(1976)] = 100346, + [SMALL_STATE(1977)] = 100391, + [SMALL_STATE(1978)] = 100474, + [SMALL_STATE(1979)] = 100557, + [SMALL_STATE(1980)] = 100602, + [SMALL_STATE(1981)] = 100685, + [SMALL_STATE(1982)] = 100754, + [SMALL_STATE(1983)] = 100807, + [SMALL_STATE(1984)] = 100854, + [SMALL_STATE(1985)] = 100899, + [SMALL_STATE(1986)] = 100946, + [SMALL_STATE(1987)] = 100991, + [SMALL_STATE(1988)] = 101040, + [SMALL_STATE(1989)] = 101085, + [SMALL_STATE(1990)] = 101142, + [SMALL_STATE(1991)] = 101187, + [SMALL_STATE(1992)] = 101238, + [SMALL_STATE(1993)] = 101283, + [SMALL_STATE(1994)] = 101338, + [SMALL_STATE(1995)] = 101383, + [SMALL_STATE(1996)] = 101440, + [SMALL_STATE(1997)] = 101485, + [SMALL_STATE(1998)] = 101536, + [SMALL_STATE(1999)] = 101603, + [SMALL_STATE(2000)] = 101648, + [SMALL_STATE(2001)] = 101697, + [SMALL_STATE(2002)] = 101766, + [SMALL_STATE(2003)] = 101811, + [SMALL_STATE(2004)] = 101882, + [SMALL_STATE(2005)] = 101927, + [SMALL_STATE(2006)] = 101972, + [SMALL_STATE(2007)] = 102017, + [SMALL_STATE(2008)] = 102062, + [SMALL_STATE(2009)] = 102107, + [SMALL_STATE(2010)] = 102152, + [SMALL_STATE(2011)] = 102197, + [SMALL_STATE(2012)] = 102264, + [SMALL_STATE(2013)] = 102339, + [SMALL_STATE(2014)] = 102384, + [SMALL_STATE(2015)] = 102461, + [SMALL_STATE(2016)] = 102506, + [SMALL_STATE(2017)] = 102585, + [SMALL_STATE(2018)] = 102630, + [SMALL_STATE(2019)] = 102675, + [SMALL_STATE(2020)] = 102720, + [SMALL_STATE(2021)] = 102785, + [SMALL_STATE(2022)] = 102830, + [SMALL_STATE(2023)] = 102875, + [SMALL_STATE(2024)] = 102920, + [SMALL_STATE(2025)] = 103003, + [SMALL_STATE(2026)] = 103052, + [SMALL_STATE(2027)] = 103115, + [SMALL_STATE(2028)] = 103198, + [SMALL_STATE(2029)] = 103281, + [SMALL_STATE(2030)] = 103364, + [SMALL_STATE(2031)] = 103409, + [SMALL_STATE(2032)] = 103492, + [SMALL_STATE(2033)] = 103537, + [SMALL_STATE(2034)] = 103596, + [SMALL_STATE(2035)] = 103641, + [SMALL_STATE(2036)] = 103686, + [SMALL_STATE(2037)] = 103731, + [SMALL_STATE(2038)] = 103776, + [SMALL_STATE(2039)] = 103821, + [SMALL_STATE(2040)] = 103866, + [SMALL_STATE(2041)] = 103911, + [SMALL_STATE(2042)] = 103968, + [SMALL_STATE(2043)] = 104013, + [SMALL_STATE(2044)] = 104058, + [SMALL_STATE(2045)] = 104103, + [SMALL_STATE(2046)] = 104148, + [SMALL_STATE(2047)] = 104193, + [SMALL_STATE(2048)] = 104276, + [SMALL_STATE(2049)] = 104321, + [SMALL_STATE(2050)] = 104366, + [SMALL_STATE(2051)] = 104411, + [SMALL_STATE(2052)] = 104456, + [SMALL_STATE(2053)] = 104501, + [SMALL_STATE(2054)] = 104546, + [SMALL_STATE(2055)] = 104591, + [SMALL_STATE(2056)] = 104636, + [SMALL_STATE(2057)] = 104681, + [SMALL_STATE(2058)] = 104756, + [SMALL_STATE(2059)] = 104801, + [SMALL_STATE(2060)] = 104846, + [SMALL_STATE(2061)] = 104891, + [SMALL_STATE(2062)] = 104936, + [SMALL_STATE(2063)] = 104981, + [SMALL_STATE(2064)] = 105026, + [SMALL_STATE(2065)] = 105073, + [SMALL_STATE(2066)] = 105118, + [SMALL_STATE(2067)] = 105201, + [SMALL_STATE(2068)] = 105282, + [SMALL_STATE(2069)] = 105327, + [SMALL_STATE(2070)] = 105378, + [SMALL_STATE(2071)] = 105423, + [SMALL_STATE(2072)] = 105468, + [SMALL_STATE(2073)] = 105513, + [SMALL_STATE(2074)] = 105574, + [SMALL_STATE(2075)] = 105619, + [SMALL_STATE(2076)] = 105664, + [SMALL_STATE(2077)] = 105735, + [SMALL_STATE(2078)] = 105780, + [SMALL_STATE(2079)] = 105825, + [SMALL_STATE(2080)] = 105876, + [SMALL_STATE(2081)] = 105931, + [SMALL_STATE(2082)] = 105976, + [SMALL_STATE(2083)] = 106021, + [SMALL_STATE(2084)] = 106066, + [SMALL_STATE(2085)] = 106125, + [SMALL_STATE(2086)] = 106170, + [SMALL_STATE(2087)] = 106215, + [SMALL_STATE(2088)] = 106260, + [SMALL_STATE(2089)] = 106305, + [SMALL_STATE(2090)] = 106350, + [SMALL_STATE(2091)] = 106395, + [SMALL_STATE(2092)] = 106468, + [SMALL_STATE(2093)] = 106513, + [SMALL_STATE(2094)] = 106558, + [SMALL_STATE(2095)] = 106603, + [SMALL_STATE(2096)] = 106648, + [SMALL_STATE(2097)] = 106693, + [SMALL_STATE(2098)] = 106738, + [SMALL_STATE(2099)] = 106783, + [SMALL_STATE(2100)] = 106828, + [SMALL_STATE(2101)] = 106873, + [SMALL_STATE(2102)] = 106918, + [SMALL_STATE(2103)] = 106969, + [SMALL_STATE(2104)] = 107014, + [SMALL_STATE(2105)] = 107059, + [SMALL_STATE(2106)] = 107104, + [SMALL_STATE(2107)] = 107155, + [SMALL_STATE(2108)] = 107200, + [SMALL_STATE(2109)] = 107245, + [SMALL_STATE(2110)] = 107290, + [SMALL_STATE(2111)] = 107341, + [SMALL_STATE(2112)] = 107386, + [SMALL_STATE(2113)] = 107431, + [SMALL_STATE(2114)] = 107476, + [SMALL_STATE(2115)] = 107521, + [SMALL_STATE(2116)] = 107566, + [SMALL_STATE(2117)] = 107611, + [SMALL_STATE(2118)] = 107656, + [SMALL_STATE(2119)] = 107701, + [SMALL_STATE(2120)] = 107746, + [SMALL_STATE(2121)] = 107797, + [SMALL_STATE(2122)] = 107842, + [SMALL_STATE(2123)] = 107893, + [SMALL_STATE(2124)] = 107944, + [SMALL_STATE(2125)] = 107989, + [SMALL_STATE(2126)] = 108034, + [SMALL_STATE(2127)] = 108079, + [SMALL_STATE(2128)] = 108124, + [SMALL_STATE(2129)] = 108169, + [SMALL_STATE(2130)] = 108244, + [SMALL_STATE(2131)] = 108289, + [SMALL_STATE(2132)] = 108334, + [SMALL_STATE(2133)] = 108379, + [SMALL_STATE(2134)] = 108449, + [SMALL_STATE(2135)] = 108519, + [SMALL_STATE(2136)] = 108589, + [SMALL_STATE(2137)] = 108659, + [SMALL_STATE(2138)] = 108729, + [SMALL_STATE(2139)] = 108799, + [SMALL_STATE(2140)] = 108869, + [SMALL_STATE(2141)] = 108939, + [SMALL_STATE(2142)] = 108983, + [SMALL_STATE(2143)] = 109053, + [SMALL_STATE(2144)] = 109123, + [SMALL_STATE(2145)] = 109167, + [SMALL_STATE(2146)] = 109237, + [SMALL_STATE(2147)] = 109307, + [SMALL_STATE(2148)] = 109377, + [SMALL_STATE(2149)] = 109447, + [SMALL_STATE(2150)] = 109523, + [SMALL_STATE(2151)] = 109567, + [SMALL_STATE(2152)] = 109611, + [SMALL_STATE(2153)] = 109655, + [SMALL_STATE(2154)] = 109699, + [SMALL_STATE(2155)] = 109753, + [SMALL_STATE(2156)] = 109797, + [SMALL_STATE(2157)] = 109867, + [SMALL_STATE(2158)] = 109917, + [SMALL_STATE(2159)] = 109961, + [SMALL_STATE(2160)] = 110031, + [SMALL_STATE(2161)] = 110087, + [SMALL_STATE(2162)] = 110131, + [SMALL_STATE(2163)] = 110175, + [SMALL_STATE(2164)] = 110245, + [SMALL_STATE(2165)] = 110289, + [SMALL_STATE(2166)] = 110359, + [SMALL_STATE(2167)] = 110407, + [SMALL_STATE(2168)] = 110451, + [SMALL_STATE(2169)] = 110497, + [SMALL_STATE(2170)] = 110541, + [SMALL_STATE(2171)] = 110611, + [SMALL_STATE(2172)] = 110655, + [SMALL_STATE(2173)] = 110699, + [SMALL_STATE(2174)] = 110769, + [SMALL_STATE(2175)] = 110839, + [SMALL_STATE(2176)] = 110883, + [SMALL_STATE(2177)] = 110953, + [SMALL_STATE(2178)] = 110997, + [SMALL_STATE(2179)] = 111049, + [SMALL_STATE(2180)] = 111093, + [SMALL_STATE(2181)] = 111151, + [SMALL_STATE(2182)] = 111195, + [SMALL_STATE(2183)] = 111255, + [SMALL_STATE(2184)] = 111337, + [SMALL_STATE(2185)] = 111381, + [SMALL_STATE(2186)] = 111443, + [SMALL_STATE(2187)] = 111513, + [SMALL_STATE(2188)] = 111583, + [SMALL_STATE(2189)] = 111627, + [SMALL_STATE(2190)] = 111697, + [SMALL_STATE(2191)] = 111741, + [SMALL_STATE(2192)] = 111805, + [SMALL_STATE(2193)] = 111849, + [SMALL_STATE(2194)] = 111893, + [SMALL_STATE(2195)] = 111959, + [SMALL_STATE(2196)] = 112029, + [SMALL_STATE(2197)] = 112099, + [SMALL_STATE(2198)] = 112169, + [SMALL_STATE(2199)] = 112213, + [SMALL_STATE(2200)] = 112281, + [SMALL_STATE(2201)] = 112325, + [SMALL_STATE(2202)] = 112369, + [SMALL_STATE(2203)] = 112439, + [SMALL_STATE(2204)] = 112509, + [SMALL_STATE(2205)] = 112579, + [SMALL_STATE(2206)] = 112649, + [SMALL_STATE(2207)] = 112719, + [SMALL_STATE(2208)] = 112789, + [SMALL_STATE(2209)] = 112859, + [SMALL_STATE(2210)] = 112929, + [SMALL_STATE(2211)] = 112999, + [SMALL_STATE(2212)] = 113069, + [SMALL_STATE(2213)] = 113139, + [SMALL_STATE(2214)] = 113209, + [SMALL_STATE(2215)] = 113279, + [SMALL_STATE(2216)] = 113349, + [SMALL_STATE(2217)] = 113419, + [SMALL_STATE(2218)] = 113489, + [SMALL_STATE(2219)] = 113559, + [SMALL_STATE(2220)] = 113629, + [SMALL_STATE(2221)] = 113699, + [SMALL_STATE(2222)] = 113769, + [SMALL_STATE(2223)] = 113839, + [SMALL_STATE(2224)] = 113909, + [SMALL_STATE(2225)] = 113979, + [SMALL_STATE(2226)] = 114049, + [SMALL_STATE(2227)] = 114119, + [SMALL_STATE(2228)] = 114163, + [SMALL_STATE(2229)] = 114207, + [SMALL_STATE(2230)] = 114253, + [SMALL_STATE(2231)] = 114305, + [SMALL_STATE(2232)] = 114375, + [SMALL_STATE(2233)] = 114419, + [SMALL_STATE(2234)] = 114463, + [SMALL_STATE(2235)] = 114533, + [SMALL_STATE(2236)] = 114603, + [SMALL_STATE(2237)] = 114673, + [SMALL_STATE(2238)] = 114743, + [SMALL_STATE(2239)] = 114813, + [SMALL_STATE(2240)] = 114883, + [SMALL_STATE(2241)] = 114953, + [SMALL_STATE(2242)] = 115023, + [SMALL_STATE(2243)] = 115093, + [SMALL_STATE(2244)] = 115163, + [SMALL_STATE(2245)] = 115233, + [SMALL_STATE(2246)] = 115303, + [SMALL_STATE(2247)] = 115373, + [SMALL_STATE(2248)] = 115417, + [SMALL_STATE(2249)] = 115461, + [SMALL_STATE(2250)] = 115531, + [SMALL_STATE(2251)] = 115605, + [SMALL_STATE(2252)] = 115675, + [SMALL_STATE(2253)] = 115745, + [SMALL_STATE(2254)] = 115789, + [SMALL_STATE(2255)] = 115859, + [SMALL_STATE(2256)] = 115903, + [SMALL_STATE(2257)] = 115947, + [SMALL_STATE(2258)] = 115991, + [SMALL_STATE(2259)] = 116061, + [SMALL_STATE(2260)] = 116131, + [SMALL_STATE(2261)] = 116201, + [SMALL_STATE(2262)] = 116245, + [SMALL_STATE(2263)] = 116289, + [SMALL_STATE(2264)] = 116359, + [SMALL_STATE(2265)] = 116403, + [SMALL_STATE(2266)] = 116473, + [SMALL_STATE(2267)] = 116517, + [SMALL_STATE(2268)] = 116587, + [SMALL_STATE(2269)] = 116631, + [SMALL_STATE(2270)] = 116701, + [SMALL_STATE(2271)] = 116771, + [SMALL_STATE(2272)] = 116841, + [SMALL_STATE(2273)] = 116911, + [SMALL_STATE(2274)] = 116955, + [SMALL_STATE(2275)] = 117025, + [SMALL_STATE(2276)] = 117095, + [SMALL_STATE(2277)] = 117165, + [SMALL_STATE(2278)] = 117209, + [SMALL_STATE(2279)] = 117279, + [SMALL_STATE(2280)] = 117349, + [SMALL_STATE(2281)] = 117418, + [SMALL_STATE(2282)] = 117487, + [SMALL_STATE(2283)] = 117556, + [SMALL_STATE(2284)] = 117625, + [SMALL_STATE(2285)] = 117694, + [SMALL_STATE(2286)] = 117763, + [SMALL_STATE(2287)] = 117832, + [SMALL_STATE(2288)] = 117901, + [SMALL_STATE(2289)] = 117970, + [SMALL_STATE(2290)] = 118013, + [SMALL_STATE(2291)] = 118056, + [SMALL_STATE(2292)] = 118125, + [SMALL_STATE(2293)] = 118168, + [SMALL_STATE(2294)] = 118237, + [SMALL_STATE(2295)] = 118306, + [SMALL_STATE(2296)] = 118375, + [SMALL_STATE(2297)] = 118418, + [SMALL_STATE(2298)] = 118487, + [SMALL_STATE(2299)] = 118556, + [SMALL_STATE(2300)] = 118625, + [SMALL_STATE(2301)] = 118694, + [SMALL_STATE(2302)] = 118763, + [SMALL_STATE(2303)] = 118832, + [SMALL_STATE(2304)] = 118901, + [SMALL_STATE(2305)] = 118970, + [SMALL_STATE(2306)] = 119013, + [SMALL_STATE(2307)] = 119056, + [SMALL_STATE(2308)] = 119125, + [SMALL_STATE(2309)] = 119168, + [SMALL_STATE(2310)] = 119237, + [SMALL_STATE(2311)] = 119280, + [SMALL_STATE(2312)] = 119349, + [SMALL_STATE(2313)] = 119418, + [SMALL_STATE(2314)] = 119487, + [SMALL_STATE(2315)] = 119536, + [SMALL_STATE(2316)] = 119605, + [SMALL_STATE(2317)] = 119648, + [SMALL_STATE(2318)] = 119717, + [SMALL_STATE(2319)] = 119786, + [SMALL_STATE(2320)] = 119841, + [SMALL_STATE(2321)] = 119910, + [SMALL_STATE(2322)] = 119953, + [SMALL_STATE(2323)] = 119996, + [SMALL_STATE(2324)] = 120065, + [SMALL_STATE(2325)] = 120134, + [SMALL_STATE(2326)] = 120203, + [SMALL_STATE(2327)] = 120246, + [SMALL_STATE(2328)] = 120289, + [SMALL_STATE(2329)] = 120358, + [SMALL_STATE(2330)] = 120401, + [SMALL_STATE(2331)] = 120448, + [SMALL_STATE(2332)] = 120491, + [SMALL_STATE(2333)] = 120560, + [SMALL_STATE(2334)] = 120629, + [SMALL_STATE(2335)] = 120702, + [SMALL_STATE(2336)] = 120771, + [SMALL_STATE(2337)] = 120840, + [SMALL_STATE(2338)] = 120909, + [SMALL_STATE(2339)] = 120952, + [SMALL_STATE(2340)] = 120995, + [SMALL_STATE(2341)] = 121064, + [SMALL_STATE(2342)] = 121133, + [SMALL_STATE(2343)] = 121202, + [SMALL_STATE(2344)] = 121271, + [SMALL_STATE(2345)] = 121340, + [SMALL_STATE(2346)] = 121409, + [SMALL_STATE(2347)] = 121478, + [SMALL_STATE(2348)] = 121547, + [SMALL_STATE(2349)] = 121616, + [SMALL_STATE(2350)] = 121685, + [SMALL_STATE(2351)] = 121754, + [SMALL_STATE(2352)] = 121823, + [SMALL_STATE(2353)] = 121892, + [SMALL_STATE(2354)] = 121961, + [SMALL_STATE(2355)] = 122004, + [SMALL_STATE(2356)] = 122073, + [SMALL_STATE(2357)] = 122142, + [SMALL_STATE(2358)] = 122211, + [SMALL_STATE(2359)] = 122264, + [SMALL_STATE(2360)] = 122333, + [SMALL_STATE(2361)] = 122376, + [SMALL_STATE(2362)] = 122445, + [SMALL_STATE(2363)] = 122490, + [SMALL_STATE(2364)] = 122559, + [SMALL_STATE(2365)] = 122628, + [SMALL_STATE(2366)] = 122671, + [SMALL_STATE(2367)] = 122714, + [SMALL_STATE(2368)] = 122757, + [SMALL_STATE(2369)] = 122826, + [SMALL_STATE(2370)] = 122871, + [SMALL_STATE(2371)] = 122922, + [SMALL_STATE(2372)] = 122965, + [SMALL_STATE(2373)] = 123008, + [SMALL_STATE(2374)] = 123077, + [SMALL_STATE(2375)] = 123146, + [SMALL_STATE(2376)] = 123215, + [SMALL_STATE(2377)] = 123284, + [SMALL_STATE(2378)] = 123353, + [SMALL_STATE(2379)] = 123396, + [SMALL_STATE(2380)] = 123453, + [SMALL_STATE(2381)] = 123496, + [SMALL_STATE(2382)] = 123565, + [SMALL_STATE(2383)] = 123610, + [SMALL_STATE(2384)] = 123653, + [SMALL_STATE(2385)] = 123696, + [SMALL_STATE(2386)] = 123765, + [SMALL_STATE(2387)] = 123808, + [SMALL_STATE(2388)] = 123877, + [SMALL_STATE(2389)] = 123920, + [SMALL_STATE(2390)] = 123989, + [SMALL_STATE(2391)] = 124058, + [SMALL_STATE(2392)] = 124101, + [SMALL_STATE(2393)] = 124170, + [SMALL_STATE(2394)] = 124213, + [SMALL_STATE(2395)] = 124282, + [SMALL_STATE(2396)] = 124351, + [SMALL_STATE(2397)] = 124394, + [SMALL_STATE(2398)] = 124437, + [SMALL_STATE(2399)] = 124480, + [SMALL_STATE(2400)] = 124547, + [SMALL_STATE(2401)] = 124616, + [SMALL_STATE(2402)] = 124659, + [SMALL_STATE(2403)] = 124728, + [SMALL_STATE(2404)] = 124793, + [SMALL_STATE(2405)] = 124862, + [SMALL_STATE(2406)] = 124905, + [SMALL_STATE(2407)] = 124974, + [SMALL_STATE(2408)] = 125017, + [SMALL_STATE(2409)] = 125080, + [SMALL_STATE(2410)] = 125123, + [SMALL_STATE(2411)] = 125166, + [SMALL_STATE(2412)] = 125235, + [SMALL_STATE(2413)] = 125304, + [SMALL_STATE(2414)] = 125373, + [SMALL_STATE(2415)] = 125434, + [SMALL_STATE(2416)] = 125503, + [SMALL_STATE(2417)] = 125572, + [SMALL_STATE(2418)] = 125641, + [SMALL_STATE(2419)] = 125684, + [SMALL_STATE(2420)] = 125753, + [SMALL_STATE(2421)] = 125812, + [SMALL_STATE(2422)] = 125855, + [SMALL_STATE(2423)] = 125924, + [SMALL_STATE(2424)] = 125966, + [SMALL_STATE(2425)] = 126008, + [SMALL_STATE(2426)] = 126078, + [SMALL_STATE(2427)] = 126120, + [SMALL_STATE(2428)] = 126162, + [SMALL_STATE(2429)] = 126204, + [SMALL_STATE(2430)] = 126246, + [SMALL_STATE(2431)] = 126288, + [SMALL_STATE(2432)] = 126330, + [SMALL_STATE(2433)] = 126384, + [SMALL_STATE(2434)] = 126426, + [SMALL_STATE(2435)] = 126476, + [SMALL_STATE(2436)] = 126518, + [SMALL_STATE(2437)] = 126574, + [SMALL_STATE(2438)] = 126616, + [SMALL_STATE(2439)] = 126658, + [SMALL_STATE(2440)] = 126700, + [SMALL_STATE(2441)] = 126748, + [SMALL_STATE(2442)] = 126790, + [SMALL_STATE(2443)] = 126832, + [SMALL_STATE(2444)] = 126874, + [SMALL_STATE(2445)] = 126916, + [SMALL_STATE(2446)] = 126958, + [SMALL_STATE(2447)] = 127002, + [SMALL_STATE(2448)] = 127044, + [SMALL_STATE(2449)] = 127086, + [SMALL_STATE(2450)] = 127156, + [SMALL_STATE(2451)] = 127198, + [SMALL_STATE(2452)] = 127240, + [SMALL_STATE(2453)] = 127282, + [SMALL_STATE(2454)] = 127324, + [SMALL_STATE(2455)] = 127366, + [SMALL_STATE(2456)] = 127408, + [SMALL_STATE(2457)] = 127450, + [SMALL_STATE(2458)] = 127492, + [SMALL_STATE(2459)] = 127544, + [SMALL_STATE(2460)] = 127602, + [SMALL_STATE(2461)] = 127644, + [SMALL_STATE(2462)] = 127686, + [SMALL_STATE(2463)] = 127728, + [SMALL_STATE(2464)] = 127770, + [SMALL_STATE(2465)] = 127812, + [SMALL_STATE(2466)] = 127872, + [SMALL_STATE(2467)] = 127914, + [SMALL_STATE(2468)] = 127956, + [SMALL_STATE(2469)] = 128018, + [SMALL_STATE(2470)] = 128060, + [SMALL_STATE(2471)] = 128102, + [SMALL_STATE(2472)] = 128144, + [SMALL_STATE(2473)] = 128186, + [SMALL_STATE(2474)] = 128250, + [SMALL_STATE(2475)] = 128292, + [SMALL_STATE(2476)] = 128334, + [SMALL_STATE(2477)] = 128400, + [SMALL_STATE(2478)] = 128442, + [SMALL_STATE(2479)] = 128510, + [SMALL_STATE(2480)] = 128552, + [SMALL_STATE(2481)] = 128594, + [SMALL_STATE(2482)] = 128664, + [SMALL_STATE(2483)] = 128735, + [SMALL_STATE(2484)] = 128808, + [SMALL_STATE(2485)] = 128881, + [SMALL_STATE(2486)] = 128954, + [SMALL_STATE(2487)] = 129027, + [SMALL_STATE(2488)] = 129100, + [SMALL_STATE(2489)] = 129143, + [SMALL_STATE(2490)] = 129214, + [SMALL_STATE(2491)] = 129285, + [SMALL_STATE(2492)] = 129325, + [SMALL_STATE(2493)] = 129395, + [SMALL_STATE(2494)] = 129435, + [SMALL_STATE(2495)] = 129505, + [SMALL_STATE(2496)] = 129531, + [SMALL_STATE(2497)] = 129557, + [SMALL_STATE(2498)] = 129603, + [SMALL_STATE(2499)] = 129643, + [SMALL_STATE(2500)] = 129669, + [SMALL_STATE(2501)] = 129706, + [SMALL_STATE(2502)] = 129743, + [SMALL_STATE(2503)] = 129789, + [SMALL_STATE(2504)] = 129835, + [SMALL_STATE(2505)] = 129881, + [SMALL_STATE(2506)] = 129927, + [SMALL_STATE(2507)] = 129973, + [SMALL_STATE(2508)] = 130019, + [SMALL_STATE(2509)] = 130065, + [SMALL_STATE(2510)] = 130111, + [SMALL_STATE(2511)] = 130157, + [SMALL_STATE(2512)] = 130203, + [SMALL_STATE(2513)] = 130237, + [SMALL_STATE(2514)] = 130283, + [SMALL_STATE(2515)] = 130329, + [SMALL_STATE(2516)] = 130363, + [SMALL_STATE(2517)] = 130409, + [SMALL_STATE(2518)] = 130455, + [SMALL_STATE(2519)] = 130478, + [SMALL_STATE(2520)] = 130505, + [SMALL_STATE(2521)] = 130530, + [SMALL_STATE(2522)] = 130555, + [SMALL_STATE(2523)] = 130580, + [SMALL_STATE(2524)] = 130602, + [SMALL_STATE(2525)] = 130628, + [SMALL_STATE(2526)] = 130650, + [SMALL_STATE(2527)] = 130672, + [SMALL_STATE(2528)] = 130710, + [SMALL_STATE(2529)] = 130746, + [SMALL_STATE(2530)] = 130784, + [SMALL_STATE(2531)] = 130816, + [SMALL_STATE(2532)] = 130842, + [SMALL_STATE(2533)] = 130878, + [SMALL_STATE(2534)] = 130910, + [SMALL_STATE(2535)] = 130936, + [SMALL_STATE(2536)] = 130968, + [SMALL_STATE(2537)] = 130990, + [SMALL_STATE(2538)] = 131012, + [SMALL_STATE(2539)] = 131034, + [SMALL_STATE(2540)] = 131056, + [SMALL_STATE(2541)] = 131094, + [SMALL_STATE(2542)] = 131120, + [SMALL_STATE(2543)] = 131152, + [SMALL_STATE(2544)] = 131188, + [SMALL_STATE(2545)] = 131226, + [SMALL_STATE(2546)] = 131248, + [SMALL_STATE(2547)] = 131286, + [SMALL_STATE(2548)] = 131324, + [SMALL_STATE(2549)] = 131356, + [SMALL_STATE(2550)] = 131382, + [SMALL_STATE(2551)] = 131414, + [SMALL_STATE(2552)] = 131440, + [SMALL_STATE(2553)] = 131476, + [SMALL_STATE(2554)] = 131502, + [SMALL_STATE(2555)] = 131534, + [SMALL_STATE(2556)] = 131572, + [SMALL_STATE(2557)] = 131608, + [SMALL_STATE(2558)] = 131630, + [SMALL_STATE(2559)] = 131658, + [SMALL_STATE(2560)] = 131686, + [SMALL_STATE(2561)] = 131724, + [SMALL_STATE(2562)] = 131756, + [SMALL_STATE(2563)] = 131792, + [SMALL_STATE(2564)] = 131818, + [SMALL_STATE(2565)] = 131846, + [SMALL_STATE(2566)] = 131874, + [SMALL_STATE(2567)] = 131910, + [SMALL_STATE(2568)] = 131946, + [SMALL_STATE(2569)] = 131984, + [SMALL_STATE(2570)] = 132022, + [SMALL_STATE(2571)] = 132054, + [SMALL_STATE(2572)] = 132080, + [SMALL_STATE(2573)] = 132112, + [SMALL_STATE(2574)] = 132150, + [SMALL_STATE(2575)] = 132182, + [SMALL_STATE(2576)] = 132208, + [SMALL_STATE(2577)] = 132230, + [SMALL_STATE(2578)] = 132256, + [SMALL_STATE(2579)] = 132278, + [SMALL_STATE(2580)] = 132300, + [SMALL_STATE(2581)] = 132326, + [SMALL_STATE(2582)] = 132358, + [SMALL_STATE(2583)] = 132396, + [SMALL_STATE(2584)] = 132422, + [SMALL_STATE(2585)] = 132460, + [SMALL_STATE(2586)] = 132492, + [SMALL_STATE(2587)] = 132518, + [SMALL_STATE(2588)] = 132556, + [SMALL_STATE(2589)] = 132578, + [SMALL_STATE(2590)] = 132616, + [SMALL_STATE(2591)] = 132654, + [SMALL_STATE(2592)] = 132686, + [SMALL_STATE(2593)] = 132712, + [SMALL_STATE(2594)] = 132734, + [SMALL_STATE(2595)] = 132762, + [SMALL_STATE(2596)] = 132790, + [SMALL_STATE(2597)] = 132816, + [SMALL_STATE(2598)] = 132835, + [SMALL_STATE(2599)] = 132856, + [SMALL_STATE(2600)] = 132877, + [SMALL_STATE(2601)] = 132898, + [SMALL_STATE(2602)] = 132919, + [SMALL_STATE(2603)] = 132938, + [SMALL_STATE(2604)] = 132957, + [SMALL_STATE(2605)] = 132985, + [SMALL_STATE(2606)] = 133013, + [SMALL_STATE(2607)] = 133045, + [SMALL_STATE(2608)] = 133067, + [SMALL_STATE(2609)] = 133099, + [SMALL_STATE(2610)] = 133127, + [SMALL_STATE(2611)] = 133155, + [SMALL_STATE(2612)] = 133177, + [SMALL_STATE(2613)] = 133209, + [SMALL_STATE(2614)] = 133237, + [SMALL_STATE(2615)] = 133269, + [SMALL_STATE(2616)] = 133301, + [SMALL_STATE(2617)] = 133329, + [SMALL_STATE(2618)] = 133361, + [SMALL_STATE(2619)] = 133393, + [SMALL_STATE(2620)] = 133415, + [SMALL_STATE(2621)] = 133443, + [SMALL_STATE(2622)] = 133471, + [SMALL_STATE(2623)] = 133499, + [SMALL_STATE(2624)] = 133531, + [SMALL_STATE(2625)] = 133559, + [SMALL_STATE(2626)] = 133591, + [SMALL_STATE(2627)] = 133613, + [SMALL_STATE(2628)] = 133641, + [SMALL_STATE(2629)] = 133669, + [SMALL_STATE(2630)] = 133701, + [SMALL_STATE(2631)] = 133729, + [SMALL_STATE(2632)] = 133757, + [SMALL_STATE(2633)] = 133789, + [SMALL_STATE(2634)] = 133821, + [SMALL_STATE(2635)] = 133849, + [SMALL_STATE(2636)] = 133877, + [SMALL_STATE(2637)] = 133905, + [SMALL_STATE(2638)] = 133933, + [SMALL_STATE(2639)] = 133965, + [SMALL_STATE(2640)] = 133993, + [SMALL_STATE(2641)] = 134025, + [SMALL_STATE(2642)] = 134057, + [SMALL_STATE(2643)] = 134091, + [SMALL_STATE(2644)] = 134121, + [SMALL_STATE(2645)] = 134153, + [SMALL_STATE(2646)] = 134181, + [SMALL_STATE(2647)] = 134213, + [SMALL_STATE(2648)] = 134241, + [SMALL_STATE(2649)] = 134269, + [SMALL_STATE(2650)] = 134301, + [SMALL_STATE(2651)] = 134333, + [SMALL_STATE(2652)] = 134365, + [SMALL_STATE(2653)] = 134397, + [SMALL_STATE(2654)] = 134425, + [SMALL_STATE(2655)] = 134457, + [SMALL_STATE(2656)] = 134485, + [SMALL_STATE(2657)] = 134517, + [SMALL_STATE(2658)] = 134545, + [SMALL_STATE(2659)] = 134573, + [SMALL_STATE(2660)] = 134601, + [SMALL_STATE(2661)] = 134635, + [SMALL_STATE(2662)] = 134667, + [SMALL_STATE(2663)] = 134697, + [SMALL_STATE(2664)] = 134716, + [SMALL_STATE(2665)] = 134743, + [SMALL_STATE(2666)] = 134770, + [SMALL_STATE(2667)] = 134799, + [SMALL_STATE(2668)] = 134818, + [SMALL_STATE(2669)] = 134837, + [SMALL_STATE(2670)] = 134856, + [SMALL_STATE(2671)] = 134883, + [SMALL_STATE(2672)] = 134910, + [SMALL_STATE(2673)] = 134939, + [SMALL_STATE(2674)] = 134968, + [SMALL_STATE(2675)] = 134995, + [SMALL_STATE(2676)] = 135022, + [SMALL_STATE(2677)] = 135049, + [SMALL_STATE(2678)] = 135068, + [SMALL_STATE(2679)] = 135087, + [SMALL_STATE(2680)] = 135114, + [SMALL_STATE(2681)] = 135141, + [SMALL_STATE(2682)] = 135160, + [SMALL_STATE(2683)] = 135187, + [SMALL_STATE(2684)] = 135214, + [SMALL_STATE(2685)] = 135241, + [SMALL_STATE(2686)] = 135260, + [SMALL_STATE(2687)] = 135287, + [SMALL_STATE(2688)] = 135306, + [SMALL_STATE(2689)] = 135335, + [SMALL_STATE(2690)] = 135362, + [SMALL_STATE(2691)] = 135389, + [SMALL_STATE(2692)] = 135408, + [SMALL_STATE(2693)] = 135435, + [SMALL_STATE(2694)] = 135462, + [SMALL_STATE(2695)] = 135489, + [SMALL_STATE(2696)] = 135516, + [SMALL_STATE(2697)] = 135543, + [SMALL_STATE(2698)] = 135562, + [SMALL_STATE(2699)] = 135589, + [SMALL_STATE(2700)] = 135616, + [SMALL_STATE(2701)] = 135643, + [SMALL_STATE(2702)] = 135662, + [SMALL_STATE(2703)] = 135689, + [SMALL_STATE(2704)] = 135716, + [SMALL_STATE(2705)] = 135743, + [SMALL_STATE(2706)] = 135770, + [SMALL_STATE(2707)] = 135791, + [SMALL_STATE(2708)] = 135818, + [SMALL_STATE(2709)] = 135844, + [SMALL_STATE(2710)] = 135870, + [SMALL_STATE(2711)] = 135894, + [SMALL_STATE(2712)] = 135920, + [SMALL_STATE(2713)] = 135946, + [SMALL_STATE(2714)] = 135974, + [SMALL_STATE(2715)] = 136002, + [SMALL_STATE(2716)] = 136030, + [SMALL_STATE(2717)] = 136054, + [SMALL_STATE(2718)] = 136080, + [SMALL_STATE(2719)] = 136108, + [SMALL_STATE(2720)] = 136134, + [SMALL_STATE(2721)] = 136160, + [SMALL_STATE(2722)] = 136178, + [SMALL_STATE(2723)] = 136206, + [SMALL_STATE(2724)] = 136226, + [SMALL_STATE(2725)] = 136252, + [SMALL_STATE(2726)] = 136278, + [SMALL_STATE(2727)] = 136306, + [SMALL_STATE(2728)] = 136332, + [SMALL_STATE(2729)] = 136360, + [SMALL_STATE(2730)] = 136388, + [SMALL_STATE(2731)] = 136412, + [SMALL_STATE(2732)] = 136440, + [SMALL_STATE(2733)] = 136468, + [SMALL_STATE(2734)] = 136488, + [SMALL_STATE(2735)] = 136514, + [SMALL_STATE(2736)] = 136540, + [SMALL_STATE(2737)] = 136566, + [SMALL_STATE(2738)] = 136592, + [SMALL_STATE(2739)] = 136618, + [SMALL_STATE(2740)] = 136638, + [SMALL_STATE(2741)] = 136658, + [SMALL_STATE(2742)] = 136684, + [SMALL_STATE(2743)] = 136712, + [SMALL_STATE(2744)] = 136738, + [SMALL_STATE(2745)] = 136764, + [SMALL_STATE(2746)] = 136788, + [SMALL_STATE(2747)] = 136814, + [SMALL_STATE(2748)] = 136840, + [SMALL_STATE(2749)] = 136866, + [SMALL_STATE(2750)] = 136892, + [SMALL_STATE(2751)] = 136914, + [SMALL_STATE(2752)] = 136940, + [SMALL_STATE(2753)] = 136966, + [SMALL_STATE(2754)] = 136994, + [SMALL_STATE(2755)] = 137020, + [SMALL_STATE(2756)] = 137038, + [SMALL_STATE(2757)] = 137064, + [SMALL_STATE(2758)] = 137092, + [SMALL_STATE(2759)] = 137118, + [SMALL_STATE(2760)] = 137144, + [SMALL_STATE(2761)] = 137170, + [SMALL_STATE(2762)] = 137194, + [SMALL_STATE(2763)] = 137222, + [SMALL_STATE(2764)] = 137248, + [SMALL_STATE(2765)] = 137274, + [SMALL_STATE(2766)] = 137302, + [SMALL_STATE(2767)] = 137330, + [SMALL_STATE(2768)] = 137356, + [SMALL_STATE(2769)] = 137384, + [SMALL_STATE(2770)] = 137410, + [SMALL_STATE(2771)] = 137432, + [SMALL_STATE(2772)] = 137458, + [SMALL_STATE(2773)] = 137482, + [SMALL_STATE(2774)] = 137508, + [SMALL_STATE(2775)] = 137534, + [SMALL_STATE(2776)] = 137560, + [SMALL_STATE(2777)] = 137586, + [SMALL_STATE(2778)] = 137601, + [SMALL_STATE(2779)] = 137624, + [SMALL_STATE(2780)] = 137647, + [SMALL_STATE(2781)] = 137670, + [SMALL_STATE(2782)] = 137693, + [SMALL_STATE(2783)] = 137718, + [SMALL_STATE(2784)] = 137741, + [SMALL_STATE(2785)] = 137764, + [SMALL_STATE(2786)] = 137789, + [SMALL_STATE(2787)] = 137804, + [SMALL_STATE(2788)] = 137827, + [SMALL_STATE(2789)] = 137852, + [SMALL_STATE(2790)] = 137867, + [SMALL_STATE(2791)] = 137886, + [SMALL_STATE(2792)] = 137909, + [SMALL_STATE(2793)] = 137930, + [SMALL_STATE(2794)] = 137953, + [SMALL_STATE(2795)] = 137970, + [SMALL_STATE(2796)] = 137991, + [SMALL_STATE(2797)] = 138014, + [SMALL_STATE(2798)] = 138037, + [SMALL_STATE(2799)] = 138060, + [SMALL_STATE(2800)] = 138083, + [SMALL_STATE(2801)] = 138108, + [SMALL_STATE(2802)] = 138127, + [SMALL_STATE(2803)] = 138150, + [SMALL_STATE(2804)] = 138173, + [SMALL_STATE(2805)] = 138196, + [SMALL_STATE(2806)] = 138219, + [SMALL_STATE(2807)] = 138244, + [SMALL_STATE(2808)] = 138263, + [SMALL_STATE(2809)] = 138284, + [SMALL_STATE(2810)] = 138307, + [SMALL_STATE(2811)] = 138326, + [SMALL_STATE(2812)] = 138343, + [SMALL_STATE(2813)] = 138360, + [SMALL_STATE(2814)] = 138383, + [SMALL_STATE(2815)] = 138400, + [SMALL_STATE(2816)] = 138423, + [SMALL_STATE(2817)] = 138446, + [SMALL_STATE(2818)] = 138471, + [SMALL_STATE(2819)] = 138494, + [SMALL_STATE(2820)] = 138517, + [SMALL_STATE(2821)] = 138542, + [SMALL_STATE(2822)] = 138565, + [SMALL_STATE(2823)] = 138588, + [SMALL_STATE(2824)] = 138613, + [SMALL_STATE(2825)] = 138630, + [SMALL_STATE(2826)] = 138653, + [SMALL_STATE(2827)] = 138676, + [SMALL_STATE(2828)] = 138699, + [SMALL_STATE(2829)] = 138722, + [SMALL_STATE(2830)] = 138745, + [SMALL_STATE(2831)] = 138762, + [SMALL_STATE(2832)] = 138785, + [SMALL_STATE(2833)] = 138810, + [SMALL_STATE(2834)] = 138835, + [SMALL_STATE(2835)] = 138860, + [SMALL_STATE(2836)] = 138883, + [SMALL_STATE(2837)] = 138906, + [SMALL_STATE(2838)] = 138931, + [SMALL_STATE(2839)] = 138954, + [SMALL_STATE(2840)] = 138979, + [SMALL_STATE(2841)] = 139002, + [SMALL_STATE(2842)] = 139025, + [SMALL_STATE(2843)] = 139050, + [SMALL_STATE(2844)] = 139073, + [SMALL_STATE(2845)] = 139087, + [SMALL_STATE(2846)] = 139103, + [SMALL_STATE(2847)] = 139125, + [SMALL_STATE(2848)] = 139141, + [SMALL_STATE(2849)] = 139157, + [SMALL_STATE(2850)] = 139173, + [SMALL_STATE(2851)] = 139189, + [SMALL_STATE(2852)] = 139205, + [SMALL_STATE(2853)] = 139221, + [SMALL_STATE(2854)] = 139237, + [SMALL_STATE(2855)] = 139253, + [SMALL_STATE(2856)] = 139275, + [SMALL_STATE(2857)] = 139291, + [SMALL_STATE(2858)] = 139313, + [SMALL_STATE(2859)] = 139327, + [SMALL_STATE(2860)] = 139343, + [SMALL_STATE(2861)] = 139359, + [SMALL_STATE(2862)] = 139377, + [SMALL_STATE(2863)] = 139399, + [SMALL_STATE(2864)] = 139421, + [SMALL_STATE(2865)] = 139443, + [SMALL_STATE(2866)] = 139459, + [SMALL_STATE(2867)] = 139475, + [SMALL_STATE(2868)] = 139491, + [SMALL_STATE(2869)] = 139507, + [SMALL_STATE(2870)] = 139523, + [SMALL_STATE(2871)] = 139539, + [SMALL_STATE(2872)] = 139553, + [SMALL_STATE(2873)] = 139575, + [SMALL_STATE(2874)] = 139591, + [SMALL_STATE(2875)] = 139607, + [SMALL_STATE(2876)] = 139629, + [SMALL_STATE(2877)] = 139651, + [SMALL_STATE(2878)] = 139673, + [SMALL_STATE(2879)] = 139689, + [SMALL_STATE(2880)] = 139711, + [SMALL_STATE(2881)] = 139733, + [SMALL_STATE(2882)] = 139749, + [SMALL_STATE(2883)] = 139765, + [SMALL_STATE(2884)] = 139787, + [SMALL_STATE(2885)] = 139803, + [SMALL_STATE(2886)] = 139825, + [SMALL_STATE(2887)] = 139841, + [SMALL_STATE(2888)] = 139857, + [SMALL_STATE(2889)] = 139873, + [SMALL_STATE(2890)] = 139889, + [SMALL_STATE(2891)] = 139903, + [SMALL_STATE(2892)] = 139923, + [SMALL_STATE(2893)] = 139937, + [SMALL_STATE(2894)] = 139953, + [SMALL_STATE(2895)] = 139973, + [SMALL_STATE(2896)] = 139993, + [SMALL_STATE(2897)] = 140013, + [SMALL_STATE(2898)] = 140029, + [SMALL_STATE(2899)] = 140045, + [SMALL_STATE(2900)] = 140061, + [SMALL_STATE(2901)] = 140083, + [SMALL_STATE(2902)] = 140103, + [SMALL_STATE(2903)] = 140123, + [SMALL_STATE(2904)] = 140143, + [SMALL_STATE(2905)] = 140163, + [SMALL_STATE(2906)] = 140183, + [SMALL_STATE(2907)] = 140203, + [SMALL_STATE(2908)] = 140217, + [SMALL_STATE(2909)] = 140237, + [SMALL_STATE(2910)] = 140259, + [SMALL_STATE(2911)] = 140273, + [SMALL_STATE(2912)] = 140289, + [SMALL_STATE(2913)] = 140309, + [SMALL_STATE(2914)] = 140329, + [SMALL_STATE(2915)] = 140343, + [SMALL_STATE(2916)] = 140363, + [SMALL_STATE(2917)] = 140377, + [SMALL_STATE(2918)] = 140397, + [SMALL_STATE(2919)] = 140415, + [SMALL_STATE(2920)] = 140431, + [SMALL_STATE(2921)] = 140445, + [SMALL_STATE(2922)] = 140465, + [SMALL_STATE(2923)] = 140479, + [SMALL_STATE(2924)] = 140495, + [SMALL_STATE(2925)] = 140515, + [SMALL_STATE(2926)] = 140537, + [SMALL_STATE(2927)] = 140559, + [SMALL_STATE(2928)] = 140573, + [SMALL_STATE(2929)] = 140595, + [SMALL_STATE(2930)] = 140615, + [SMALL_STATE(2931)] = 140637, + [SMALL_STATE(2932)] = 140659, + [SMALL_STATE(2933)] = 140679, + [SMALL_STATE(2934)] = 140693, + [SMALL_STATE(2935)] = 140713, + [SMALL_STATE(2936)] = 140735, + [SMALL_STATE(2937)] = 140757, + [SMALL_STATE(2938)] = 140771, + [SMALL_STATE(2939)] = 140791, + [SMALL_STATE(2940)] = 140811, + [SMALL_STATE(2941)] = 140833, + [SMALL_STATE(2942)] = 140855, + [SMALL_STATE(2943)] = 140869, + [SMALL_STATE(2944)] = 140889, + [SMALL_STATE(2945)] = 140909, + [SMALL_STATE(2946)] = 140929, + [SMALL_STATE(2947)] = 140943, + [SMALL_STATE(2948)] = 140965, + [SMALL_STATE(2949)] = 140987, + [SMALL_STATE(2950)] = 141003, + [SMALL_STATE(2951)] = 141017, + [SMALL_STATE(2952)] = 141031, + [SMALL_STATE(2953)] = 141047, + [SMALL_STATE(2954)] = 141063, + [SMALL_STATE(2955)] = 141083, + [SMALL_STATE(2956)] = 141097, + [SMALL_STATE(2957)] = 141113, + [SMALL_STATE(2958)] = 141129, + [SMALL_STATE(2959)] = 141145, + [SMALL_STATE(2960)] = 141167, + [SMALL_STATE(2961)] = 141189, + [SMALL_STATE(2962)] = 141203, + [SMALL_STATE(2963)] = 141219, + [SMALL_STATE(2964)] = 141235, + [SMALL_STATE(2965)] = 141249, + [SMALL_STATE(2966)] = 141267, + [SMALL_STATE(2967)] = 141283, + [SMALL_STATE(2968)] = 141299, + [SMALL_STATE(2969)] = 141319, + [SMALL_STATE(2970)] = 141335, + [SMALL_STATE(2971)] = 141351, + [SMALL_STATE(2972)] = 141367, + [SMALL_STATE(2973)] = 141389, + [SMALL_STATE(2974)] = 141411, + [SMALL_STATE(2975)] = 141425, + [SMALL_STATE(2976)] = 141441, + [SMALL_STATE(2977)] = 141457, + [SMALL_STATE(2978)] = 141479, + [SMALL_STATE(2979)] = 141495, + [SMALL_STATE(2980)] = 141515, + [SMALL_STATE(2981)] = 141531, + [SMALL_STATE(2982)] = 141553, + [SMALL_STATE(2983)] = 141575, + [SMALL_STATE(2984)] = 141589, + [SMALL_STATE(2985)] = 141611, + [SMALL_STATE(2986)] = 141625, + [SMALL_STATE(2987)] = 141645, + [SMALL_STATE(2988)] = 141667, + [SMALL_STATE(2989)] = 141687, + [SMALL_STATE(2990)] = 141709, + [SMALL_STATE(2991)] = 141731, + [SMALL_STATE(2992)] = 141745, + [SMALL_STATE(2993)] = 141765, + [SMALL_STATE(2994)] = 141785, + [SMALL_STATE(2995)] = 141799, + [SMALL_STATE(2996)] = 141813, + [SMALL_STATE(2997)] = 141827, + [SMALL_STATE(2998)] = 141843, + [SMALL_STATE(2999)] = 141859, + [SMALL_STATE(3000)] = 141875, + [SMALL_STATE(3001)] = 141897, + [SMALL_STATE(3002)] = 141911, + [SMALL_STATE(3003)] = 141931, + [SMALL_STATE(3004)] = 141953, + [SMALL_STATE(3005)] = 141975, + [SMALL_STATE(3006)] = 141991, + [SMALL_STATE(3007)] = 142011, + [SMALL_STATE(3008)] = 142033, + [SMALL_STATE(3009)] = 142047, + [SMALL_STATE(3010)] = 142069, + [SMALL_STATE(3011)] = 142089, + [SMALL_STATE(3012)] = 142109, + [SMALL_STATE(3013)] = 142125, + [SMALL_STATE(3014)] = 142141, + [SMALL_STATE(3015)] = 142157, + [SMALL_STATE(3016)] = 142175, + [SMALL_STATE(3017)] = 142197, + [SMALL_STATE(3018)] = 142219, + [SMALL_STATE(3019)] = 142241, + [SMALL_STATE(3020)] = 142257, + [SMALL_STATE(3021)] = 142273, + [SMALL_STATE(3022)] = 142291, + [SMALL_STATE(3023)] = 142311, + [SMALL_STATE(3024)] = 142333, + [SMALL_STATE(3025)] = 142349, + [SMALL_STATE(3026)] = 142365, + [SMALL_STATE(3027)] = 142381, + [SMALL_STATE(3028)] = 142397, + [SMALL_STATE(3029)] = 142413, + [SMALL_STATE(3030)] = 142429, + [SMALL_STATE(3031)] = 142445, + [SMALL_STATE(3032)] = 142461, + [SMALL_STATE(3033)] = 142477, + [SMALL_STATE(3034)] = 142493, + [SMALL_STATE(3035)] = 142509, + [SMALL_STATE(3036)] = 142525, + [SMALL_STATE(3037)] = 142539, + [SMALL_STATE(3038)] = 142555, + [SMALL_STATE(3039)] = 142571, + [SMALL_STATE(3040)] = 142593, + [SMALL_STATE(3041)] = 142607, + [SMALL_STATE(3042)] = 142629, + [SMALL_STATE(3043)] = 142645, + [SMALL_STATE(3044)] = 142661, + [SMALL_STATE(3045)] = 142677, + [SMALL_STATE(3046)] = 142693, + [SMALL_STATE(3047)] = 142709, + [SMALL_STATE(3048)] = 142725, + [SMALL_STATE(3049)] = 142741, + [SMALL_STATE(3050)] = 142761, + [SMALL_STATE(3051)] = 142783, + [SMALL_STATE(3052)] = 142805, + [SMALL_STATE(3053)] = 142825, + [SMALL_STATE(3054)] = 142847, + [SMALL_STATE(3055)] = 142861, + [SMALL_STATE(3056)] = 142877, + [SMALL_STATE(3057)] = 142893, + [SMALL_STATE(3058)] = 142909, + [SMALL_STATE(3059)] = 142931, + [SMALL_STATE(3060)] = 142951, + [SMALL_STATE(3061)] = 142971, + [SMALL_STATE(3062)] = 142987, + [SMALL_STATE(3063)] = 143003, + [SMALL_STATE(3064)] = 143019, + [SMALL_STATE(3065)] = 143035, + [SMALL_STATE(3066)] = 143051, + [SMALL_STATE(3067)] = 143067, + [SMALL_STATE(3068)] = 143083, + [SMALL_STATE(3069)] = 143099, + [SMALL_STATE(3070)] = 143115, + [SMALL_STATE(3071)] = 143131, + [SMALL_STATE(3072)] = 143147, + [SMALL_STATE(3073)] = 143163, + [SMALL_STATE(3074)] = 143177, + [SMALL_STATE(3075)] = 143193, + [SMALL_STATE(3076)] = 143209, + [SMALL_STATE(3077)] = 143231, + [SMALL_STATE(3078)] = 143248, + [SMALL_STATE(3079)] = 143263, + [SMALL_STATE(3080)] = 143278, + [SMALL_STATE(3081)] = 143293, + [SMALL_STATE(3082)] = 143308, + [SMALL_STATE(3083)] = 143323, + [SMALL_STATE(3084)] = 143338, + [SMALL_STATE(3085)] = 143353, + [SMALL_STATE(3086)] = 143368, + [SMALL_STATE(3087)] = 143385, + [SMALL_STATE(3088)] = 143400, + [SMALL_STATE(3089)] = 143415, + [SMALL_STATE(3090)] = 143430, + [SMALL_STATE(3091)] = 143445, + [SMALL_STATE(3092)] = 143462, + [SMALL_STATE(3093)] = 143479, + [SMALL_STATE(3094)] = 143498, + [SMALL_STATE(3095)] = 143513, + [SMALL_STATE(3096)] = 143528, + [SMALL_STATE(3097)] = 143543, + [SMALL_STATE(3098)] = 143562, + [SMALL_STATE(3099)] = 143577, + [SMALL_STATE(3100)] = 143592, + [SMALL_STATE(3101)] = 143607, + [SMALL_STATE(3102)] = 143622, + [SMALL_STATE(3103)] = 143637, + [SMALL_STATE(3104)] = 143652, + [SMALL_STATE(3105)] = 143667, + [SMALL_STATE(3106)] = 143682, + [SMALL_STATE(3107)] = 143697, + [SMALL_STATE(3108)] = 143714, + [SMALL_STATE(3109)] = 143729, + [SMALL_STATE(3110)] = 143748, + [SMALL_STATE(3111)] = 143763, + [SMALL_STATE(3112)] = 143778, + [SMALL_STATE(3113)] = 143795, + [SMALL_STATE(3114)] = 143814, + [SMALL_STATE(3115)] = 143829, + [SMALL_STATE(3116)] = 143844, + [SMALL_STATE(3117)] = 143859, + [SMALL_STATE(3118)] = 143874, + [SMALL_STATE(3119)] = 143893, + [SMALL_STATE(3120)] = 143910, + [SMALL_STATE(3121)] = 143927, + [SMALL_STATE(3122)] = 143942, + [SMALL_STATE(3123)] = 143957, + [SMALL_STATE(3124)] = 143976, + [SMALL_STATE(3125)] = 143991, + [SMALL_STATE(3126)] = 144010, + [SMALL_STATE(3127)] = 144025, + [SMALL_STATE(3128)] = 144044, + [SMALL_STATE(3129)] = 144061, + [SMALL_STATE(3130)] = 144080, + [SMALL_STATE(3131)] = 144097, + [SMALL_STATE(3132)] = 144112, + [SMALL_STATE(3133)] = 144127, + [SMALL_STATE(3134)] = 144142, + [SMALL_STATE(3135)] = 144157, + [SMALL_STATE(3136)] = 144172, + [SMALL_STATE(3137)] = 144187, + [SMALL_STATE(3138)] = 144202, + [SMALL_STATE(3139)] = 144217, + [SMALL_STATE(3140)] = 144232, + [SMALL_STATE(3141)] = 144247, + [SMALL_STATE(3142)] = 144262, + [SMALL_STATE(3143)] = 144277, + [SMALL_STATE(3144)] = 144292, + [SMALL_STATE(3145)] = 144307, + [SMALL_STATE(3146)] = 144322, + [SMALL_STATE(3147)] = 144339, + [SMALL_STATE(3148)] = 144356, + [SMALL_STATE(3149)] = 144371, + [SMALL_STATE(3150)] = 144386, + [SMALL_STATE(3151)] = 144401, + [SMALL_STATE(3152)] = 144420, + [SMALL_STATE(3153)] = 144439, + [SMALL_STATE(3154)] = 144456, + [SMALL_STATE(3155)] = 144471, + [SMALL_STATE(3156)] = 144486, + [SMALL_STATE(3157)] = 144505, + [SMALL_STATE(3158)] = 144524, + [SMALL_STATE(3159)] = 144543, + [SMALL_STATE(3160)] = 144558, + [SMALL_STATE(3161)] = 144577, + [SMALL_STATE(3162)] = 144596, + [SMALL_STATE(3163)] = 144611, + [SMALL_STATE(3164)] = 144630, + [SMALL_STATE(3165)] = 144645, + [SMALL_STATE(3166)] = 144664, + [SMALL_STATE(3167)] = 144679, + [SMALL_STATE(3168)] = 144694, + [SMALL_STATE(3169)] = 144709, + [SMALL_STATE(3170)] = 144724, + [SMALL_STATE(3171)] = 144739, + [SMALL_STATE(3172)] = 144754, + [SMALL_STATE(3173)] = 144769, + [SMALL_STATE(3174)] = 144784, + [SMALL_STATE(3175)] = 144803, + [SMALL_STATE(3176)] = 144820, + [SMALL_STATE(3177)] = 144837, + [SMALL_STATE(3178)] = 144854, + [SMALL_STATE(3179)] = 144871, + [SMALL_STATE(3180)] = 144888, + [SMALL_STATE(3181)] = 144905, + [SMALL_STATE(3182)] = 144922, + [SMALL_STATE(3183)] = 144939, + [SMALL_STATE(3184)] = 144956, + [SMALL_STATE(3185)] = 144973, + [SMALL_STATE(3186)] = 144988, + [SMALL_STATE(3187)] = 145005, + [SMALL_STATE(3188)] = 145022, + [SMALL_STATE(3189)] = 145039, + [SMALL_STATE(3190)] = 145056, + [SMALL_STATE(3191)] = 145073, + [SMALL_STATE(3192)] = 145092, + [SMALL_STATE(3193)] = 145109, + [SMALL_STATE(3194)] = 145126, + [SMALL_STATE(3195)] = 145143, + [SMALL_STATE(3196)] = 145162, + [SMALL_STATE(3197)] = 145179, + [SMALL_STATE(3198)] = 145196, + [SMALL_STATE(3199)] = 145213, + [SMALL_STATE(3200)] = 145228, + [SMALL_STATE(3201)] = 145245, + [SMALL_STATE(3202)] = 145260, + [SMALL_STATE(3203)] = 145277, + [SMALL_STATE(3204)] = 145296, + [SMALL_STATE(3205)] = 145311, + [SMALL_STATE(3206)] = 145328, + [SMALL_STATE(3207)] = 145343, + [SMALL_STATE(3208)] = 145358, + [SMALL_STATE(3209)] = 145377, + [SMALL_STATE(3210)] = 145396, + [SMALL_STATE(3211)] = 145411, + [SMALL_STATE(3212)] = 145428, + [SMALL_STATE(3213)] = 145445, + [SMALL_STATE(3214)] = 145460, + [SMALL_STATE(3215)] = 145477, + [SMALL_STATE(3216)] = 145492, + [SMALL_STATE(3217)] = 145509, + [SMALL_STATE(3218)] = 145528, + [SMALL_STATE(3219)] = 145545, + [SMALL_STATE(3220)] = 145562, + [SMALL_STATE(3221)] = 145579, + [SMALL_STATE(3222)] = 145596, + [SMALL_STATE(3223)] = 145615, + [SMALL_STATE(3224)] = 145632, + [SMALL_STATE(3225)] = 145649, + [SMALL_STATE(3226)] = 145668, + [SMALL_STATE(3227)] = 145685, + [SMALL_STATE(3228)] = 145702, + [SMALL_STATE(3229)] = 145719, + [SMALL_STATE(3230)] = 145738, + [SMALL_STATE(3231)] = 145753, + [SMALL_STATE(3232)] = 145768, + [SMALL_STATE(3233)] = 145785, + [SMALL_STATE(3234)] = 145802, + [SMALL_STATE(3235)] = 145821, + [SMALL_STATE(3236)] = 145840, + [SMALL_STATE(3237)] = 145859, + [SMALL_STATE(3238)] = 145876, + [SMALL_STATE(3239)] = 145893, + [SMALL_STATE(3240)] = 145912, + [SMALL_STATE(3241)] = 145929, + [SMALL_STATE(3242)] = 145946, + [SMALL_STATE(3243)] = 145965, + [SMALL_STATE(3244)] = 145982, + [SMALL_STATE(3245)] = 146001, + [SMALL_STATE(3246)] = 146016, + [SMALL_STATE(3247)] = 146035, + [SMALL_STATE(3248)] = 146054, + [SMALL_STATE(3249)] = 146071, + [SMALL_STATE(3250)] = 146088, + [SMALL_STATE(3251)] = 146103, + [SMALL_STATE(3252)] = 146122, + [SMALL_STATE(3253)] = 146137, + [SMALL_STATE(3254)] = 146154, + [SMALL_STATE(3255)] = 146173, + [SMALL_STATE(3256)] = 146190, + [SMALL_STATE(3257)] = 146209, + [SMALL_STATE(3258)] = 146226, + [SMALL_STATE(3259)] = 146245, + [SMALL_STATE(3260)] = 146264, + [SMALL_STATE(3261)] = 146279, + [SMALL_STATE(3262)] = 146294, + [SMALL_STATE(3263)] = 146311, + [SMALL_STATE(3264)] = 146330, + [SMALL_STATE(3265)] = 146345, + [SMALL_STATE(3266)] = 146360, + [SMALL_STATE(3267)] = 146375, + [SMALL_STATE(3268)] = 146392, + [SMALL_STATE(3269)] = 146407, + [SMALL_STATE(3270)] = 146422, + [SMALL_STATE(3271)] = 146437, + [SMALL_STATE(3272)] = 146452, + [SMALL_STATE(3273)] = 146471, + [SMALL_STATE(3274)] = 146488, + [SMALL_STATE(3275)] = 146507, + [SMALL_STATE(3276)] = 146522, + [SMALL_STATE(3277)] = 146539, + [SMALL_STATE(3278)] = 146558, + [SMALL_STATE(3279)] = 146575, + [SMALL_STATE(3280)] = 146592, + [SMALL_STATE(3281)] = 146607, + [SMALL_STATE(3282)] = 146622, + [SMALL_STATE(3283)] = 146639, + [SMALL_STATE(3284)] = 146658, + [SMALL_STATE(3285)] = 146675, + [SMALL_STATE(3286)] = 146690, + [SMALL_STATE(3287)] = 146705, + [SMALL_STATE(3288)] = 146720, + [SMALL_STATE(3289)] = 146739, + [SMALL_STATE(3290)] = 146756, + [SMALL_STATE(3291)] = 146775, + [SMALL_STATE(3292)] = 146794, + [SMALL_STATE(3293)] = 146809, + [SMALL_STATE(3294)] = 146828, + [SMALL_STATE(3295)] = 146845, + [SMALL_STATE(3296)] = 146860, + [SMALL_STATE(3297)] = 146875, + [SMALL_STATE(3298)] = 146894, + [SMALL_STATE(3299)] = 146909, + [SMALL_STATE(3300)] = 146926, + [SMALL_STATE(3301)] = 146941, + [SMALL_STATE(3302)] = 146956, + [SMALL_STATE(3303)] = 146971, + [SMALL_STATE(3304)] = 146986, + [SMALL_STATE(3305)] = 147001, + [SMALL_STATE(3306)] = 147016, + [SMALL_STATE(3307)] = 147031, + [SMALL_STATE(3308)] = 147046, + [SMALL_STATE(3309)] = 147061, + [SMALL_STATE(3310)] = 147076, + [SMALL_STATE(3311)] = 147095, + [SMALL_STATE(3312)] = 147114, + [SMALL_STATE(3313)] = 147129, + [SMALL_STATE(3314)] = 147144, + [SMALL_STATE(3315)] = 147159, + [SMALL_STATE(3316)] = 147178, + [SMALL_STATE(3317)] = 147195, + [SMALL_STATE(3318)] = 147210, + [SMALL_STATE(3319)] = 147225, + [SMALL_STATE(3320)] = 147242, + [SMALL_STATE(3321)] = 147257, + [SMALL_STATE(3322)] = 147276, + [SMALL_STATE(3323)] = 147291, + [SMALL_STATE(3324)] = 147308, + [SMALL_STATE(3325)] = 147325, + [SMALL_STATE(3326)] = 147340, + [SMALL_STATE(3327)] = 147355, + [SMALL_STATE(3328)] = 147374, + [SMALL_STATE(3329)] = 147389, + [SMALL_STATE(3330)] = 147404, + [SMALL_STATE(3331)] = 147423, + [SMALL_STATE(3332)] = 147442, + [SMALL_STATE(3333)] = 147457, + [SMALL_STATE(3334)] = 147472, + [SMALL_STATE(3335)] = 147491, + [SMALL_STATE(3336)] = 147507, + [SMALL_STATE(3337)] = 147523, + [SMALL_STATE(3338)] = 147539, + [SMALL_STATE(3339)] = 147553, + [SMALL_STATE(3340)] = 147569, + [SMALL_STATE(3341)] = 147585, + [SMALL_STATE(3342)] = 147601, + [SMALL_STATE(3343)] = 147615, + [SMALL_STATE(3344)] = 147631, + [SMALL_STATE(3345)] = 147643, + [SMALL_STATE(3346)] = 147659, + [SMALL_STATE(3347)] = 147675, + [SMALL_STATE(3348)] = 147689, + [SMALL_STATE(3349)] = 147703, + [SMALL_STATE(3350)] = 147717, + [SMALL_STATE(3351)] = 147733, + [SMALL_STATE(3352)] = 147749, + [SMALL_STATE(3353)] = 147763, + [SMALL_STATE(3354)] = 147777, + [SMALL_STATE(3355)] = 147791, + [SMALL_STATE(3356)] = 147805, + [SMALL_STATE(3357)] = 147821, + [SMALL_STATE(3358)] = 147837, + [SMALL_STATE(3359)] = 147853, + [SMALL_STATE(3360)] = 147869, + [SMALL_STATE(3361)] = 147885, + [SMALL_STATE(3362)] = 147901, + [SMALL_STATE(3363)] = 147915, + [SMALL_STATE(3364)] = 147931, + [SMALL_STATE(3365)] = 147947, + [SMALL_STATE(3366)] = 147963, + [SMALL_STATE(3367)] = 147977, + [SMALL_STATE(3368)] = 147991, + [SMALL_STATE(3369)] = 148007, + [SMALL_STATE(3370)] = 148023, + [SMALL_STATE(3371)] = 148039, + [SMALL_STATE(3372)] = 148055, + [SMALL_STATE(3373)] = 148071, + [SMALL_STATE(3374)] = 148087, + [SMALL_STATE(3375)] = 148101, + [SMALL_STATE(3376)] = 148115, + [SMALL_STATE(3377)] = 148131, + [SMALL_STATE(3378)] = 148147, + [SMALL_STATE(3379)] = 148163, + [SMALL_STATE(3380)] = 148179, + [SMALL_STATE(3381)] = 148193, + [SMALL_STATE(3382)] = 148207, + [SMALL_STATE(3383)] = 148221, + [SMALL_STATE(3384)] = 148237, + [SMALL_STATE(3385)] = 148253, + [SMALL_STATE(3386)] = 148269, + [SMALL_STATE(3387)] = 148285, + [SMALL_STATE(3388)] = 148299, + [SMALL_STATE(3389)] = 148315, + [SMALL_STATE(3390)] = 148331, + [SMALL_STATE(3391)] = 148345, + [SMALL_STATE(3392)] = 148361, + [SMALL_STATE(3393)] = 148377, + [SMALL_STATE(3394)] = 148393, + [SMALL_STATE(3395)] = 148407, + [SMALL_STATE(3396)] = 148421, + [SMALL_STATE(3397)] = 148435, + [SMALL_STATE(3398)] = 148451, + [SMALL_STATE(3399)] = 148465, + [SMALL_STATE(3400)] = 148481, + [SMALL_STATE(3401)] = 148497, + [SMALL_STATE(3402)] = 148513, + [SMALL_STATE(3403)] = 148527, + [SMALL_STATE(3404)] = 148543, + [SMALL_STATE(3405)] = 148559, + [SMALL_STATE(3406)] = 148573, + [SMALL_STATE(3407)] = 148589, + [SMALL_STATE(3408)] = 148603, + [SMALL_STATE(3409)] = 148617, + [SMALL_STATE(3410)] = 148631, + [SMALL_STATE(3411)] = 148645, + [SMALL_STATE(3412)] = 148661, + [SMALL_STATE(3413)] = 148675, + [SMALL_STATE(3414)] = 148691, + [SMALL_STATE(3415)] = 148707, + [SMALL_STATE(3416)] = 148723, + [SMALL_STATE(3417)] = 148734, + [SMALL_STATE(3418)] = 148745, + [SMALL_STATE(3419)] = 148758, + [SMALL_STATE(3420)] = 148771, + [SMALL_STATE(3421)] = 148784, + [SMALL_STATE(3422)] = 148797, + [SMALL_STATE(3423)] = 148810, + [SMALL_STATE(3424)] = 148823, + [SMALL_STATE(3425)] = 148836, + [SMALL_STATE(3426)] = 148849, + [SMALL_STATE(3427)] = 148862, + [SMALL_STATE(3428)] = 148875, + [SMALL_STATE(3429)] = 148888, + [SMALL_STATE(3430)] = 148899, + [SMALL_STATE(3431)] = 148912, + [SMALL_STATE(3432)] = 148925, + [SMALL_STATE(3433)] = 148938, + [SMALL_STATE(3434)] = 148951, + [SMALL_STATE(3435)] = 148964, + [SMALL_STATE(3436)] = 148977, + [SMALL_STATE(3437)] = 148990, + [SMALL_STATE(3438)] = 149003, + [SMALL_STATE(3439)] = 149016, + [SMALL_STATE(3440)] = 149029, + [SMALL_STATE(3441)] = 149042, + [SMALL_STATE(3442)] = 149055, + [SMALL_STATE(3443)] = 149068, + [SMALL_STATE(3444)] = 149081, + [SMALL_STATE(3445)] = 149094, + [SMALL_STATE(3446)] = 149107, + [SMALL_STATE(3447)] = 149120, + [SMALL_STATE(3448)] = 149131, + [SMALL_STATE(3449)] = 149144, + [SMALL_STATE(3450)] = 149157, + [SMALL_STATE(3451)] = 149170, + [SMALL_STATE(3452)] = 149183, + [SMALL_STATE(3453)] = 149196, + [SMALL_STATE(3454)] = 149209, + [SMALL_STATE(3455)] = 149222, + [SMALL_STATE(3456)] = 149235, + [SMALL_STATE(3457)] = 149248, + [SMALL_STATE(3458)] = 149261, + [SMALL_STATE(3459)] = 149272, + [SMALL_STATE(3460)] = 149285, + [SMALL_STATE(3461)] = 149298, + [SMALL_STATE(3462)] = 149311, + [SMALL_STATE(3463)] = 149322, + [SMALL_STATE(3464)] = 149335, + [SMALL_STATE(3465)] = 149348, + [SMALL_STATE(3466)] = 149358, + [SMALL_STATE(3467)] = 149368, + [SMALL_STATE(3468)] = 149378, + [SMALL_STATE(3469)] = 149388, + [SMALL_STATE(3470)] = 149398, + [SMALL_STATE(3471)] = 149408, + [SMALL_STATE(3472)] = 149418, + [SMALL_STATE(3473)] = 149428, + [SMALL_STATE(3474)] = 149438, + [SMALL_STATE(3475)] = 149448, + [SMALL_STATE(3476)] = 149458, + [SMALL_STATE(3477)] = 149468, + [SMALL_STATE(3478)] = 149478, + [SMALL_STATE(3479)] = 149488, + [SMALL_STATE(3480)] = 149498, + [SMALL_STATE(3481)] = 149508, + [SMALL_STATE(3482)] = 149518, + [SMALL_STATE(3483)] = 149528, + [SMALL_STATE(3484)] = 149538, + [SMALL_STATE(3485)] = 149548, + [SMALL_STATE(3486)] = 149558, + [SMALL_STATE(3487)] = 149568, + [SMALL_STATE(3488)] = 149578, + [SMALL_STATE(3489)] = 149588, + [SMALL_STATE(3490)] = 149598, + [SMALL_STATE(3491)] = 149608, + [SMALL_STATE(3492)] = 149618, + [SMALL_STATE(3493)] = 149628, + [SMALL_STATE(3494)] = 149638, + [SMALL_STATE(3495)] = 149648, + [SMALL_STATE(3496)] = 149658, + [SMALL_STATE(3497)] = 149668, + [SMALL_STATE(3498)] = 149678, + [SMALL_STATE(3499)] = 149688, + [SMALL_STATE(3500)] = 149698, + [SMALL_STATE(3501)] = 149708, + [SMALL_STATE(3502)] = 149718, + [SMALL_STATE(3503)] = 149728, + [SMALL_STATE(3504)] = 149738, + [SMALL_STATE(3505)] = 149748, + [SMALL_STATE(3506)] = 149758, + [SMALL_STATE(3507)] = 149768, + [SMALL_STATE(3508)] = 149778, + [SMALL_STATE(3509)] = 149788, + [SMALL_STATE(3510)] = 149798, + [SMALL_STATE(3511)] = 149808, + [SMALL_STATE(3512)] = 149818, + [SMALL_STATE(3513)] = 149828, + [SMALL_STATE(3514)] = 149838, + [SMALL_STATE(3515)] = 149848, + [SMALL_STATE(3516)] = 149858, + [SMALL_STATE(3517)] = 149868, + [SMALL_STATE(3518)] = 149878, + [SMALL_STATE(3519)] = 149888, + [SMALL_STATE(3520)] = 149898, + [SMALL_STATE(3521)] = 149908, + [SMALL_STATE(3522)] = 149918, + [SMALL_STATE(3523)] = 149928, + [SMALL_STATE(3524)] = 149938, + [SMALL_STATE(3525)] = 149948, + [SMALL_STATE(3526)] = 149958, + [SMALL_STATE(3527)] = 149968, + [SMALL_STATE(3528)] = 149978, + [SMALL_STATE(3529)] = 149988, + [SMALL_STATE(3530)] = 149998, + [SMALL_STATE(3531)] = 150008, + [SMALL_STATE(3532)] = 150018, + [SMALL_STATE(3533)] = 150028, + [SMALL_STATE(3534)] = 150038, + [SMALL_STATE(3535)] = 150048, + [SMALL_STATE(3536)] = 150058, + [SMALL_STATE(3537)] = 150068, + [SMALL_STATE(3538)] = 150078, + [SMALL_STATE(3539)] = 150088, + [SMALL_STATE(3540)] = 150098, + [SMALL_STATE(3541)] = 150108, + [SMALL_STATE(3542)] = 150118, + [SMALL_STATE(3543)] = 150128, + [SMALL_STATE(3544)] = 150138, + [SMALL_STATE(3545)] = 150148, + [SMALL_STATE(3546)] = 150158, + [SMALL_STATE(3547)] = 150168, + [SMALL_STATE(3548)] = 150178, + [SMALL_STATE(3549)] = 150188, + [SMALL_STATE(3550)] = 150198, + [SMALL_STATE(3551)] = 150208, + [SMALL_STATE(3552)] = 150218, + [SMALL_STATE(3553)] = 150228, + [SMALL_STATE(3554)] = 150238, + [SMALL_STATE(3555)] = 150248, + [SMALL_STATE(3556)] = 150258, + [SMALL_STATE(3557)] = 150268, + [SMALL_STATE(3558)] = 150278, + [SMALL_STATE(3559)] = 150288, + [SMALL_STATE(3560)] = 150298, + [SMALL_STATE(3561)] = 150308, + [SMALL_STATE(3562)] = 150318, + [SMALL_STATE(3563)] = 150328, + [SMALL_STATE(3564)] = 150338, + [SMALL_STATE(3565)] = 150348, + [SMALL_STATE(3566)] = 150358, + [SMALL_STATE(3567)] = 150368, + [SMALL_STATE(3568)] = 150378, + [SMALL_STATE(3569)] = 150388, + [SMALL_STATE(3570)] = 150398, + [SMALL_STATE(3571)] = 150408, + [SMALL_STATE(3572)] = 150418, + [SMALL_STATE(3573)] = 150428, + [SMALL_STATE(3574)] = 150438, + [SMALL_STATE(3575)] = 150448, + [SMALL_STATE(3576)] = 150458, + [SMALL_STATE(3577)] = 150468, + [SMALL_STATE(3578)] = 150478, + [SMALL_STATE(3579)] = 150488, + [SMALL_STATE(3580)] = 150498, + [SMALL_STATE(3581)] = 150508, + [SMALL_STATE(3582)] = 150518, + [SMALL_STATE(3583)] = 150528, + [SMALL_STATE(3584)] = 150538, + [SMALL_STATE(3585)] = 150548, + [SMALL_STATE(3586)] = 150558, + [SMALL_STATE(3587)] = 150568, + [SMALL_STATE(3588)] = 150578, + [SMALL_STATE(3589)] = 150588, + [SMALL_STATE(3590)] = 150598, + [SMALL_STATE(3591)] = 150608, + [SMALL_STATE(3592)] = 150618, + [SMALL_STATE(3593)] = 150628, + [SMALL_STATE(3594)] = 150638, + [SMALL_STATE(3595)] = 150648, + [SMALL_STATE(3596)] = 150658, + [SMALL_STATE(3597)] = 150668, + [SMALL_STATE(3598)] = 150678, + [SMALL_STATE(3599)] = 150688, + [SMALL_STATE(3600)] = 150698, + [SMALL_STATE(3601)] = 150708, + [SMALL_STATE(3602)] = 150718, + [SMALL_STATE(3603)] = 150728, + [SMALL_STATE(3604)] = 150738, + [SMALL_STATE(3605)] = 150748, + [SMALL_STATE(3606)] = 150758, + [SMALL_STATE(3607)] = 150768, + [SMALL_STATE(3608)] = 150778, + [SMALL_STATE(3609)] = 150788, + [SMALL_STATE(3610)] = 150798, + [SMALL_STATE(3611)] = 150808, + [SMALL_STATE(3612)] = 150818, + [SMALL_STATE(3613)] = 150828, + [SMALL_STATE(3614)] = 150838, + [SMALL_STATE(3615)] = 150848, + [SMALL_STATE(3616)] = 150858, + [SMALL_STATE(3617)] = 150868, + [SMALL_STATE(3618)] = 150878, + [SMALL_STATE(3619)] = 150888, + [SMALL_STATE(3620)] = 150898, + [SMALL_STATE(3621)] = 150908, + [SMALL_STATE(3622)] = 150918, + [SMALL_STATE(3623)] = 150928, + [SMALL_STATE(3624)] = 150938, + [SMALL_STATE(3625)] = 150948, + [SMALL_STATE(3626)] = 150958, + [SMALL_STATE(3627)] = 150968, + [SMALL_STATE(3628)] = 150978, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1), [105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), [113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1), [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2725), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2706), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2838), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2837), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2836), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(495), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2759), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3432), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2755), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2747), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2717), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(969), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(75), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3052), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3490), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3594), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3006), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3007), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2606), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3410), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1349), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2547), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1337), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1347), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2560), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3413), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(653), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2855), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2856), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2757), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2858), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3244), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2499), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2577), - [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2555), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2555), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2257), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2259), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(95), - [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(95), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3511), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2257), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3081), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2070), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3020), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2804), - [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3491), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2740), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2733), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2827), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2835), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2839), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(471), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2759), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3432), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2755), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2747), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2717), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(969), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(75), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3052), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3490), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3594), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3006), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3007), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2606), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3410), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1349), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2547), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1337), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1347), - [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2560), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3413), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(653), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2855), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2856), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2757), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2858), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3244), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2499), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2577), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2555), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2555), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2257), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2259), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(95), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(95), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3511), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2257), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3081), - [677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2070), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3020), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2804), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3503), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2924), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 124), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 124), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 92), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 92), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 34), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2762), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2767), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2788), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2785), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2782), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(474), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2717), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3430), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2746), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2747), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2716), + [448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(970), + [451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(75), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3073), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3513), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3615), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3062), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3061), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2660), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3431), + [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1349), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2528), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1338), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(1342), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2573), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3433), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(622), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2876), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2877), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2720), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2879), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3125), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2500), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2570), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2575), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2575), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2253), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2248), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(95), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(95), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3532), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2253), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3086), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2103), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3041), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(2796), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2), SHIFT_REPEAT(3548), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2722), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2724), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2834), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2833), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2832), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(501), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2717), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3430), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2746), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2747), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2716), + [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(970), + [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(75), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3073), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3513), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3615), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3170), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3252), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2660), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3431), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1349), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2528), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1337), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(1342), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2573), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3432), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(622), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2876), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2877), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2720), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2879), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3125), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2500), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2570), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2575), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2575), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2253), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2248), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(95), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(95), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3532), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2253), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3086), + [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2103), + [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3041), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(2796), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), SHIFT_REPEAT(3601), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 1, .production_id = 5), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 124), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 124), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 64), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 64), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, .production_id = 92), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, .production_id = 92), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2908), [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, .production_id = 53), [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, .production_id = 53), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, .production_id = 64), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, .production_id = 64), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 80), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 80), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 38), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 38), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2909), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 115), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 115), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 23), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 23), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 77), - [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 77), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 113), - [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 113), - [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 2), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 2), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 38), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 38), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2921), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, .production_id = 80), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, .production_id = 80), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, .production_id = 115), + [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, .production_id = 115), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__var, 2, .production_id = 23), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__var, 2, .production_id = 23), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 77), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 77), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, .production_id = 78), [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, .production_id = 78), - [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 79), - [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 79), - [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 74), - [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 74), - [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 74), - [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 74), - [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), - [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), - [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), - [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), - [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), - [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3), - [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3), - [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), - [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), - [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 92), - [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 92), - [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 53), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 53), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 39), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 39), - [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 4), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 4), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), - [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 39), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 39), - [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 124), - [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 124), - [903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), - [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), - [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 104), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 104), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 77), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 77), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 35), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 35), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 64), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 64), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2912), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2859), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 41), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 41), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 19), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 19), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, .production_id = 6), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, .production_id = 35), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, .production_id = 35), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, .production_id = 39), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, .production_id = 39), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, .production_id = 39), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, .production_id = 39), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, .production_id = 5), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 74), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, .production_id = 74), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 74), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, .production_id = 74), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, .production_id = 79), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, .production_id = 79), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, .production_id = 53), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, .production_id = 53), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, .production_id = 113), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, .production_id = 113), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, .production_id = 92), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, .production_id = 92), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, .production_id = 124), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, .production_id = 124), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 77), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 77), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, .production_id = 64), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, .production_id = 64), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, .production_id = 104), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, .production_id = 104), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 4), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 4), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2917), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2979), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 2, .production_id = 19), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, .production_id = 19), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 2, .production_id = 30), [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, .production_id = 30), - [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 68), - [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 68), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(495), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(969), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(75), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2871), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3594), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3006), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3007), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2547), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1337), - [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1347), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2560), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3413), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(653), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2499), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2577), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2555), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2555), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2257), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2259), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(95), - [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(95), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3511), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2257), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3081), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2070), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3020), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2804), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3491), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(471), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(969), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(75), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2871), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3594), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3006), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3007), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2547), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1337), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1347), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2560), - [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3413), - [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(653), - [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2499), - [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2577), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2555), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2555), - [1164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2257), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2259), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(95), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(95), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3511), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2257), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3081), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2070), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3020), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2804), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3503), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 42), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 42), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 68), - [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 68), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 106), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 106), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 106), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 106), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(461), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(474), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 41), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 41), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(474), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(970), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(75), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2942), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3615), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3062), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3061), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2528), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1338), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(1342), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2573), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3433), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(622), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2500), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2570), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2575), + [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2575), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2253), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2248), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(95), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(95), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3532), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2253), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3086), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2103), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3041), + [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(2796), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2), SHIFT_REPEAT(3548), + [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 68), + [1129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 68), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 4, .production_id = 106), + [1147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, .production_id = 106), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [1151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 3, .production_id = 68), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, .production_id = 68), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [1157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 106), + [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 106), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(501), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(970), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(75), + [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2942), + [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3615), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3170), + [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3252), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2528), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1337), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(1342), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2573), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3432), + [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(622), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2500), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2570), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2575), + [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2575), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2253), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2248), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(95), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(95), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3532), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2253), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3086), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2103), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3041), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(2796), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2), SHIFT_REPEAT(3601), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(461), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(471), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 42), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 42), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(469), - [1296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(503), - [1299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1), - [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 76), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 76), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2892), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), - [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(963), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(61), - [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2846), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1397), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2562), - [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2587), - [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1430), - [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1429), - [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(86), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3526), - [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3159), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1428), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2982), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2831), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(473), - [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1414), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1413), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), - [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(731), - [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(963), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(61), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2846), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1397), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2562), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2587), - [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1430), - [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1429), - [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(86), - [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3526), - [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3159), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1428), - [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2982), - [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2831), - [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(473), - [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1414), - [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1413), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 37), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), - [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(550), - [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(550), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(994), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(66), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2974), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1405), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2548), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2558), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1465), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1467), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(89), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3492), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3096), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1461), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2864), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2817), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(504), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1454), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1458), - [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2895), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 76), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 29), - [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 29), - [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), - [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 28), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 28), - [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 45), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 45), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 81), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 81), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 76), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 76), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 160), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 160), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 117), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 117), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 118), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 118), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 121), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 121), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 122), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 122), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 126), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 126), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 90), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 90), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(478), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(492), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 76), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .dynamic_precedence = 10, .production_id = 76), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2934), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), + [1360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(986), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(61), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2974), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1389), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2587), + [1375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2580), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1411), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1410), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(87), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3547), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3180), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1408), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3039), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2835), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(469), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1425), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1416), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 1), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 1), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 1), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 37), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .dynamic_precedence = 10, .production_id = 1), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .dynamic_precedence = 10, .production_id = 17), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(746), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(986), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(61), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2974), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1389), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2587), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2580), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1411), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1410), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(87), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3547), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3180), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1408), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3039), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2835), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(469), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1425), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1416), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), + [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(542), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(542), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 17), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 76), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(979), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(73), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2995), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1427), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2529), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2531), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1447), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1448), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(88), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3515), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(3205), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1462), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2885), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(2828), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(493), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1469), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, .production_id = 44), SHIFT_REPEAT(1468), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 37), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 1, .dynamic_precedence = 10, .production_id = 1), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2988), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 76), + [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 4, .dynamic_precedence = 10, .production_id = 76), + [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 17), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 7), + [1681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 7), + [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 3, .production_id = 45), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, .production_id = 45), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 81), + [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 81), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, .production_id = 8), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, .production_id = 8), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 29), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 29), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 2, .production_id = 28), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, .production_id = 28), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 3, .dynamic_precedence = 10, .production_id = 37), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_parenthesized_body, 2, .dynamic_precedence = 10, .production_id = 1), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), + [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration, 1), REDUCE(sym__declaration_last, 1), [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_last, 1), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 89), - [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 89), - [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_overlay, 1), - [1765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1), - [1767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 130), - [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 130), - [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 83), - [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 83), - [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 82), - [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 82), - [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), - [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), - [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stmt_hide, 1), - [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1), - [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_statement, 1), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 95), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 95), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 1), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 135), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 135), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 70), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 70), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 140), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 140), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 69), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 69), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 145), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 145), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 30), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 30), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 146), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 146), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1), REDUCE(sym__statement_last, 1), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_last, 1), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 67), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 67), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 66), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 66), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 56), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 56), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 55), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 55), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 50), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 50), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 48), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 48), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 47), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 47), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 46), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 46), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 156), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 156), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 157), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 157), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 158), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 26), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 26), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 27), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 27), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 31), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 31), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 162), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 162), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), - [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 161), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 161), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 164), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 164), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 163), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), - [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), - [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 116), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 116), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 85), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 85), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 40), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 40), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 84), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 84), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 84), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 84), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3066), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 85), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 85), - [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 120), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 120), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), - [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 116), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 116), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 120), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 120), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [2186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), - [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2942), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), - [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), - [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), - [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), - [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(961), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(82), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3069), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3595), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2546), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), - [2506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2559), - [2509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2543), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2543), - [2515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2081), - [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2074), - [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(103), - [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(103), - [2527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3516), - [2530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3093), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2111), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3057), - [2539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2802), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2298), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(966), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(68), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3015), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3584), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2576), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2554), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2538), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2538), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(947), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(948), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(11), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(11), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3506), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(947), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3237), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(758), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2979), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2829), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2849), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2990), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2948), - [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 43), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 43), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 22), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 94), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 94), - [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3012), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(3451), - [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(1518), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2847), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 154), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 154), SHIFT_REPEAT(2596), - [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 154), SHIFT_REPEAT(1504), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 154), SHIFT_REPEAT(1506), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 86), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2938), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2890), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 153), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 151), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), - [3259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2936), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2928), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 88), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2934), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2878), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2916), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2898), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2918), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2922), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 155), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2965), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2940), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2932), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 32), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 32), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2906), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 129), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 129), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2862), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 139), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 72), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 72), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 71), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 71), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 159), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 3), REDUCE(sym_pipeline_last, 3), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 3), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 4, .production_id = 82), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, .production_id = 82), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 4, .production_id = 83), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, .production_id = 83), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 160), + [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 161), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 161), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 7, .production_id = 162), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, .production_id = 162), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 4, .production_id = 89), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, .production_id = 89), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 3), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 4, .production_id = 90), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, .production_id = 90), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 3), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 7, .production_id = 163), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, .production_id = 163), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 2), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 164), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 165), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 165), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, .production_id = 18), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 6, .production_id = 135), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, .production_id = 135), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 4, .production_id = 95), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, .production_id = 95), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_new, 3, .production_id = 70), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, .production_id = 70), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_hide, 3, .production_id = 69), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, .production_id = 69), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_mod, 3, .production_id = 30), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, .production_id = 30), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 67), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 67), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_register, 3, .production_id = 66), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, .production_id = 66), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 8, .production_id = 166), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, .production_id = 166), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, .production_id = 18), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_while, 3, .production_id = 56), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, .production_id = 56), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_error, 3, .production_id = 55), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, .production_id = 55), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 9, .production_id = 167), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, .production_id = 167), + [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), + [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 141), + [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 50), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 50), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 49), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_use, 3, .production_id = 48), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, .production_id = 48), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scope_pattern, 1, .production_id = 47), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, .production_id = 47), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wild_card, 1), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_module, 3, .production_id = 46), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, .production_id = 46), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 142), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, .production_id = 143), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_parens, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_bracks, 2), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 27), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 27), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 5, .production_id = 130), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, .production_id = 130), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_source, 2, .production_id = 26), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, .production_id = 26), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_for, 5, .production_id = 126), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, .production_id = 126), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_list, 3, .production_id = 122), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, .production_id = 122), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 121), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 121), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_extern, 5, .production_id = 118), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, .production_id = 118), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_def, 5, .production_id = 117), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, .production_id = 117), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_list, 2), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hide_env, 2, .production_id = 31), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, .production_id = 31), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 146), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 146), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2), REDUCE(sym_pipeline_last, 2), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 2), + [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 9), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_overlay_use, 6, .production_id = 147), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, .production_id = 147), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, .production_id = 11), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [2008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), REDUCE(sym__declaration_parenthesized_last, 1), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_parenthesized_last, 1), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), REDUCE(sym_pipeline_parenthesized_last, 2), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_last, 1), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_last, 1), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 2), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [2052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), REDUCE(sym_pipeline_parenthesized_last, 3), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 3), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 3), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), REDUCE(sym__statement_parenthesized_last, 1), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_parenthesized_last, 1), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 4, .production_id = 84), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, .production_id = 84), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, .production_id = 40), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, .production_id = 10), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, .production_id = 10), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3059), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, .production_id = 10), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 85), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, .production_id = 85), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 84), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, .production_id = 84), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, .production_id = 10), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 4, .production_id = 120), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, .production_id = 120), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 3), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, .production_id = 10), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, .production_id = 10), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement, 1), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias, 5, .production_id = 116), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, .production_id = 116), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern, 3, .production_id = 85), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, .production_id = 85), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 120), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, .production_id = 120), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 116), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, .production_id = 116), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const, 3, .production_id = 40), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, .production_id = 40), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2896), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2), REDUCE(sym_val_record, 2), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 4), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 6), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 6), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 2), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 5), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 5), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 3), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 10), + [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 10), + [2317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 9), + [2319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 9), + [2321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 8), + [2323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 8), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 7), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 7), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 21), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(972), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(82), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3054), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3616), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2584), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), + [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2574), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2586), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2586), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2005), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2006), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(101), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(101), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3537), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3112), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2115), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(3058), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2), SHIFT_REPEAT(2778), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [2692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2369), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(991), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(26), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3036), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3605), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2569), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2530), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2571), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2571), + [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(916), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(917), + [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(12), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(12), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3527), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(916), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3130), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(759), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(3000), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 54), SHIFT_REPEAT(2791), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2968), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3011), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 2, .production_id = 43), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 2, .production_id = 43), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2894), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 16), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 15), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 14), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, .production_id = 13), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, .production_id = 12), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 94), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 2, .production_id = 94), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(3467), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2), SHIFT_REPEAT(1518), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2, .production_id = 4), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 2), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3049), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 22), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 2, .production_id = 4), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_body_repeat1, 1, .production_id = 13), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(2597), + [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(1507), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 155), SHIFT_REPEAT(1508), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, .production_id = 86), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2986), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2902), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, .production_id = 154), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, .production_id = 152), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 22), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2906), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, .production_id = 4), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element, 3), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3), + [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2903), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, .production_id = 88), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, .production_id = 4), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized, 3), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2895), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2904), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [3298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2939), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 1), + [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2915), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 1), + [3316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [3318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2913), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2929), + [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3002), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 11), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 11), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2924), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, .production_id = 156), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, .production_id = 129), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, .production_id = 129), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 1, .production_id = 32), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 1, .production_id = 32), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2901), + [3465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3022), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2905), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, .production_id = 139), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2954), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 71), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 71), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 2, .production_id = 72), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 2, .production_id = 72), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3031), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 139), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [3721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2954), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), - [3726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(3451), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 99), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 99), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 148), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 148), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 134), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 134), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 132), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 132), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 150), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 150), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 109), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 109), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(3451), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), - [3898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 111), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 111), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 77), - [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 77), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 108), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 108), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 144), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 144), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 52), - [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 52), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 51), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 51), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 144), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 144), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(2520), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3493), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3494), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3495), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3496), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 62), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 62), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 103), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 103), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 59), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 59), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 87), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 87), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 86), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, .production_id = 102), - [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, .production_id = 102), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 58), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 58), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 61), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 61), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 88), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, .production_id = 139), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(3052), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2891), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, .production_id = 99), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 99), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1), + [3792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), SHIFT(3467), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 77), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 77), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 149), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 149), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 151), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 151), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 134), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 134), + [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 2), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 1), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 108), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 108), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 132), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 132), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 109), + [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 109), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1), SHIFT(3467), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 111), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 111), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), + [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 1, .production_id = 20), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 145), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 145), + [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_expression, 1, .dynamic_precedence = 10), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [4020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 145), + [4022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 145), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 52), + [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 52), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 1), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 51), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_list_repeat1, 2, .production_id = 51), + [4036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(2520), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), + [4055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3538), + [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3539), + [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3540), + [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2), SHIFT_REPEAT(3543), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 62), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 62), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 103), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 103), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 59), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 59), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, .production_id = 102), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, .production_id = 102), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, .production_id = 87), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, .production_id = 87), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 58), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 58), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, .production_id = 86), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 61), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 61), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 152), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 154), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, .production_id = 88), [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, .production_id = 100), [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, .production_id = 100), - [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 23), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 23), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 59), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 59), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 62), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 62), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 101), - [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 101), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), - [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 103), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 103), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, .production_id = 151), - [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, .production_id = 153), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 138), - [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 138), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 119), - [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 119), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), - [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 103), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, .production_id = 101), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, .production_id = 101), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, .production_id = 23), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, .production_id = 23), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, .production_id = 23), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 59), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 59), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 62), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 62), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3), + [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 60), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 60), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, .production_id = 63), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, .production_id = 63), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 103), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 103), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, .production_id = 119), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, .production_id = 119), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, .production_id = 138), + [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, .production_id = 138), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 62), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 62), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 103), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 103), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 59), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 59), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 103), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3537), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3237), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(758), - [4442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 59), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 59), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), - [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2601), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(3301), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2813), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 62), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 62), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 59), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 59), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 14), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 14), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 13), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 13), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 12), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 12), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3555), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(3130), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 2, .production_id = 65), SHIFT_REPEAT(759), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2602), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(3299), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2777), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 103), [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 103), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 62), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 62), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 152), SHIFT_REPEAT(2765), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 152), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 152), SHIFT_REPEAT(3184), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 152), SHIFT_REPEAT(2494), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2891), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 137), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 136), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(3451), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(53), - [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(3253), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [4630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), - [4632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 137), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 57), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 57), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(2777), - [4671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(3039), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 136), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 91), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 98), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 133), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 133), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 24), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), SHIFT(3451), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 91), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 149), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 149), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 98), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 99), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(3451), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), - [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 147), - [5004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 147), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 96), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 96), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 136), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 137), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 136), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 137), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 131), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 131), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 107), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 107), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 96), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 96), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 127), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 127), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 110), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 110), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), - [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 33), - [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 33), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), - [5128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(642), - [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(642), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(59), - [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(3371), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 96), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 96), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 105), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 105), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 116), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 116), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 120), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 120), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 85), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 85), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 84), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 84), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), - [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(3360), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), - [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), - [5427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 125), SHIFT_REPEAT(982), - [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 125), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 2), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 73), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 84), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 84), - [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 85), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 85), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 114), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 114), SHIFT_REPEAT(3334), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), - [5567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), - [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), - [5579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), SHIFT_REPEAT(1339), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 3), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 120), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 120), - [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 116), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 116), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), - [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 143), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 112), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 93), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 97), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 87), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 143), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [5820] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 8, .production_id = 165), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 9, .production_id = 166), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 87), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 59), + [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 59), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 62), + [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 62), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(2739), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(3202), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 153), SHIFT_REPEAT(2499), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 137), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, .production_id = 136), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2), SHIFT_REPEAT(2912), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 2), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 136), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), SHIFT(3467), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 3, .production_id = 57), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, .production_id = 57), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 1), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body, 3), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(44), + [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(3268), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, .production_id = 75), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(2790), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_overlay_use_repeat1, 2), SHIFT_REPEAT(2994), + [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), + [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, .production_id = 25), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, .production_id = 137), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, .production_id = 98), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 1, .production_id = 91), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 107), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 107), + [4756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 131), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 131), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 3, .production_id = 110), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 3, .production_id = 110), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 57), + [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, .production_id = 57), SHIFT(3541), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_last, 1, .production_id = 4), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_do, 15), + [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 15), + [4811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 150), + [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 150), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 3), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try, 4, .production_id = 105), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, .production_id = 105), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 4, .production_id = 96), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, .production_id = 96), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 1), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), + [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(637), + [4944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2), SHIFT_REPEAT(637), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), + [4961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 4), SHIFT(3467), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), + [4978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized_last, 1, .production_id = 22), SHIFT(3467), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 136), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, .production_id = 137), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 99), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_where_command, 2, .production_id = 33), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, .production_id = 33), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 127), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 127), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, .production_id = 98), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, .production_id = 128), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 5, .production_id = 96), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, .production_id = 96), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_record_repeat1, 1, .production_id = 24), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 4, .production_id = 133), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 4, .production_id = 133), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2), + [5053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, .production_id = 91), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 136), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, .production_id = 137), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_last, 1), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 25), + [5109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, .production_id = 25), SHIFT(3608), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_body, 2), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate, 5, .production_id = 148), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate, 5, .production_id = 148), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(55), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), SHIFT_REPEAT(3405), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, .production_id = 75), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 3), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, .production_id = 2), + [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_match, 6, .production_id = 96), + [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, .production_id = 96), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_last, 1), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_last, 1), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), + [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2), SHIFT_REPEAT(3402), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 127), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 127), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_last, 1), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 128), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, .production_id = 128), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 140), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, .production_id = 140), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 2), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_last, 2, .production_id = 10), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_last, 2, .production_id = 10), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 2, .production_id = 10), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 5, .production_id = 116), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 5, .production_id = 116), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, .production_id = 3), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 125), SHIFT_REPEAT(974), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, .production_id = 125), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 85), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 3, .production_id = 85), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), + [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, .production_id = 36), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [5462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1), + [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_last, 4, .production_id = 84), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_last, 4, .production_id = 84), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 105), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, .production_id = 105), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 120), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_last, 4, .production_id = 120), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 158), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 158), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), + [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_last, 3, .production_id = 40), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 157), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, .production_id = 157), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, .production_id = 73), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline_parenthesized_last, 1), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 3, .production_id = 40), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 116), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 5, .production_id = 116), + [5568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 120), + [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 4, .production_id = 120), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 2), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_or_pattern, 3), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized_last, 1), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_or_pattern_repeat1, 2), SHIFT_REPEAT(1350), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized_last, 2), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 114), + [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 114), SHIFT_REPEAT(3342), + [5620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized_last, 2, .production_id = 10), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized_last, 1), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized_last, 2, .production_id = 10), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized_last, 1), + [5650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized_last, 2, .production_id = 10), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, .production_id = 36), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 85), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized_last, 3, .production_id = 85), + [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 84), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized_last, 4, .production_id = 84), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 1, .production_id = 93), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, .production_id = 144), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, .production_id = 112), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 97), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 8, .production_id = 168), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, .production_id = 87), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5886] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_list_destructure_pattern, 9, .production_id = 169), + [5916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 4, .production_id = 144), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, .production_id = 87), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus